@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --bg: #eef3f8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #10233f;
  --muted: #5a6c86;
  --line: rgba(16, 35, 63, 0.1);
  --accent: #1376d8;
  --accent-strong: #0b2d68;
  --accent-soft: #dceafc;
  --teal: #14b8a6;
  --purple: #7c3aed;
  --orange: #f97316;
  --rose: #ec4899;
  --navy: #0b1f3a;
  --gold: #ef9f2f;
  --dark: #0d1f39;
  --shadow: 0 24px 80px rgba(19, 41, 75, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
  --page-gutter: clamp(12px, 1.8vw, 24px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(19, 118, 216, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(11, 45, 104, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #edf2f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 35, 63, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 63, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 78%);
}

.page-shell {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
  margin: 0 auto;
  padding: 0 0 48px;
}

.site-header,
.service-card,
.timeline-item,
.feature-panel,
.content-card,
.contact-card,
.industry-pill,
.metrics-band article,
.lead-card,
.trust-marquee,
.split-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "utility utility utility"
    "brand nav toggle";
  align-items: center;
  gap: 2px 12px;
  padding: 4px 14px 5px;
  margin-bottom: 16px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.04);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
}

.brand-logo-full {
  width: 100%;
  max-width: 84px;
  height: auto;
  display: block;
  object-fit: contain;
}

.site-nav a,
.button,
.service-index,
.timeline-item span,
.eyebrow,
.metrics-band strong,
.text-link {
  font-family: "Space Grotesk", sans-serif;
}

.site-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-utility {
  grid-area: utility;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.header-utility-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-utility-divider {
  width: 1px;
  height: 16px;
  background: rgba(11, 31, 58, 0.12);
}

.header-call-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
}

.header-flag-india {
  display: inline-grid;
  width: 18px;
  height: 18px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(11, 31, 58, 0.1);
}

.header-flag-india span:nth-child(1) {
  background: #ff9933;
}

.header-flag-india span:nth-child(2) {
  background: #ffffff;
}

.header-flag-india span:nth-child(3) {
  background: #128807;
}

.header-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #23c05e, #0f9f4b);
  box-shadow: 0 10px 18px rgba(20, 122, 59, 0.16);
  font-size: 0;
}

.header-whatsapp-link::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 34%, transparent 35%),
    radial-gradient(circle at 50% 50%, transparent 0 62%, #ffffff 63% 68%, transparent 69%);
}

.header-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.header-call-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
}

.header-social-link img {
  width: 24px;
  height: 24px;
  display: block;
}

.site-nav a.header-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-left: auto;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0b2d68);
  box-shadow: 0 8px 18px rgba(19, 118, 216, 0.12);
}

.site-nav a.header-contact-button::after {
  display: none;
}

.header-extra-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-left: 0;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.12);
}

.vacancy-cta {
  background: linear-gradient(135deg, #5b52d9, #7f5bff);
}

.apply-cta {
  background: linear-gradient(135deg, #b34ed1, #e26fc9);
}

.site-nav a,
.nav-dropdown summary {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-nav a.is-active,
.nav-dropdown.is-active summary {
  color: var(--accent-strong);
}

.site-nav a.is-active::after,
.nav-dropdown.is-active summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 7px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-summary-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-nav > .ai-dropdown {
  margin-left: 10px;
}

.nav-summary-link {
  color: inherit;
  text-decoration: none;
}

.nav-dropdown:not(.ai-dropdown) summary:hover,
.nav-dropdown[open]:not(.ai-dropdown) summary {
  border-radius: 12px;
  background: rgba(11, 31, 58, 0.04);
  box-shadow: inset 0 0 0 1px rgba(11, 31, 58, 0.05);
}

.ai-dropdown summary {
  padding: 0 8px;
  min-height: 30px;
  border-radius: 10px;
  color: #1757c2;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.08));
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.nav-summary-caret {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown[open] .nav-submenu,
.nav-dropdown:hover .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  gap: 10px;
  min-width: 260px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 30;
}

.nav-submenu a {
  display: grid;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  background: transparent;
}

.nav-submenu a:hover {
  background: rgba(11, 31, 58, 0.04);
}

.services-dropdown .nav-submenu,
.industries-dropdown .nav-submenu {
  min-width: 320px;
}

.locations-dropdown .nav-submenu {
  min-width: 214px;
  gap: 4px;
  padding: 10px;
}

.locations-dropdown .nav-submenu a {
  min-height: 40px;
  padding: 7px 8px;
  font-size: 0.94rem;
}

.location-submenu-link {
  display: flex !important;
  align-items: center;
  gap: 9px;
}

.location-submenu-link img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.location-submenu-link span {
  line-height: 1.15;
  font-weight: 600;
}

.services-dropdown .nav-submenu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-dropdown .nav-submenu {
  grid-template-columns: 1fr;
  min-width: 220px;
}

.about-dropdown .nav-submenu {
  min-width: 240px;
}

.nav-toggle {
  grid-area: toggle;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

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

.bgv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.rpo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.consultancy-hero,
.ai-solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.industries-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.blog-hero,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 28px 0 18px;
}

.page-hero {
  padding: 34px 0 10px;
  max-width: none;
}

.bgv-hero-copy,
.bgv-hero-panel {
  position: relative;
}

.consultancy-hero-copy,
.consultancy-hero-panel,
.ai-hero-copy,
.ai-hero-panel {
  position: relative;
}

.industries-hero-copy,
.industries-hero-panel {
  position: relative;
}

.blog-hero-copy,
.blog-hero-panel,
.article-hero-copy,
.article-hero-visual {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.lead-card h2,
.cta-card h2,
.site-footer h2,
.split-card h2,
.content-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  letter-spacing: -0.05em;
}

.page-hero h1,
.section-heading h2,
.lead-card h2,
.cta-card h2,
.site-footer h2,
.split-card h2,
.content-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-text,
.section-heading,
.service-card p,
.timeline-item p,
.feature-panel p,
.content-card p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: var(--muted);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-highlights li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}

.consultancy-hero-panel,
.ai-hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 251, 0.95)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.05));
  box-shadow: var(--shadow);
}

.consultancy-hero-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(19, 118, 216, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 251, 0.95)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.05));
}

.consultancy-panel-mark {
  position: absolute;
  inset: auto -20px -42px auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(8rem, 16vw, 12rem);
  line-height: 0.8;
  color: rgba(11, 45, 104, 0.08);
  pointer-events: none;
}

.consultancy-panel-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 45, 104, 0.06);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
}

.consultancy-panel-topline::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.consultancy-pillar-grid,
.ai-signal-grid,
.ai-metric-grid {
  display: grid;
  gap: 16px;
}

.consultancy-pillar-grid {
  margin-top: 20px;
}

.consultancy-pillar-grid article,
.ai-signal-grid article,
.ai-metric-grid article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.consultancy-pillar-grid strong,
.ai-signal-grid strong,
.ai-metric-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-strong);
}

.consultancy-pillar-grid span,
.ai-signal-grid span,
.ai-metric-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.ai-hero-panel {
  background:
    radial-gradient(circle at 18% 16%, rgba(19, 118, 216, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 251, 0.95)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.05));
}

.ai-hero-panel h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.6rem, 2vw, 2.15rem);
}

.ai-hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.ai-metric-grid {
  margin-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ai-story-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.ai-story-card h3 {
  margin: 12px 0 10px;
  font-size: 1.36rem;
}

.ai-story-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.ai-story-index {
  display: inline-flex;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industries-hero-panel {
  overflow: hidden;
  min-height: 380px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 24% 22%, rgba(19, 118, 216, 0.22), transparent 18%),
    linear-gradient(145deg, #08113a 0%, #0b2d68 56%, #154d9e 100%);
  box-shadow: 0 26px 56px rgba(7, 7, 32, 0.22);
}

.industries-panel-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.industries-panel-orbit-one {
  inset: 52px 34px 52px 34px;
}

.industries-panel-orbit-two {
  inset: 92px 76px 92px 76px;
}

.industries-panel-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  text-align: center;
}

.industries-panel-core strong,
.industries-panel-core span,
.industries-panel-chip {
  color: #ffffff;
}

.industries-panel-core strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.industries-panel-core span {
  max-width: 11ch;
  margin-top: 6px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.industries-panel-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.industries-panel-chip-one { left: 18px; top: 42px; }
.industries-panel-chip-two { right: 20px; top: 98px; }
.industries-panel-chip-three { left: 38px; bottom: 84px; }
.industries-panel-chip-four { right: 26px; bottom: 36px; }

.industry-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.industry-sector-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 251, 0.92)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.06), rgba(11, 45, 104, 0.05));
  box-shadow: var(--shadow);
}

.industry-sector-index {
  display: inline-flex;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-sector-card h3 {
  margin: 12px 0 10px;
  font-size: 1.4rem;
}

.industry-sector-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.industry-sector-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 18px 0 0;
}

.blog-hero-panel,
.article-hero-visual {
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 251, 0.95)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.05));
  box-shadow: var(--shadow);
}

.blog-topic-list,
.blog-category-list,
.related-post-list {
  display: grid;
  gap: 12px;
}

.blog-topic-list {
  margin-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-topic-list span,
.blog-category-list a,
.related-post-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
}

.blog-topic-list span {
  background: rgba(19, 118, 216, 0.08);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}

.blog-category-list a,
.related-post-list a {
  background: rgba(11, 45, 104, 0.05);
  color: var(--accent-strong);
  font-weight: 700;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.42fr);
  gap: 22px;
}

.blog-main {
  display: grid;
  gap: 20px;
}

.blog-feature-card,
.blog-post-card,
.article-layout,
.article-sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blog-feature-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(19, 118, 216, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 251, 0.92));
}

.blog-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: stretch;
}

.blog-feature-copy {
  min-width: 0;
}

.blog-feature-visual {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.blog-feature-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 1;
}

.blog-feature-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.06;
}

.blog-feature-card h2 a,
.blog-post-card h3 a,
.related-post-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-feature-card p:last-of-type,
.blog-post-card p:last-of-type {
  margin-bottom: 0;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-meta span,
.blog-post-category,
.article-meta span,
.article-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 45, 104, 0.06);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
}

.blog-post-list {
  display: grid;
  gap: 16px;
}

.blog-list-cta {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.94));
}

.blog-post-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.blog-post-thumb {
  position: relative;
  min-height: 132px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background-color: #0b1f3a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.blog-post-thumb::before,
.blog-post-thumb::after,
.blog-feature-visual::before,
.blog-feature-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.blog-post-thumb::before,
.blog-feature-visual::before {
  width: 120px;
  height: 120px;
  top: -18px;
  right: -18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(2px);
}

.blog-post-thumb::after,
.blog-feature-visual::after {
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
}

.blog-post-card h3,
.related-post-card h3 {
  margin: 10px 0 10px;
  font-size: 1.28rem;
}

.blog-post-category {
  width: fit-content;
}

.blog-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
}

.blog-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-pagination-link,
.blog-pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.blog-pagination-link.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-color: transparent;
}

.blog-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.wordpress-ready-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 24%),
    radial-gradient(circle at left bottom, rgba(20, 184, 166, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94));
}

.wordpress-ready-card::after {
  content: "WP";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 16px 26px rgba(44, 73, 186, 0.22);
}

.wordpress-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: rgba(11, 31, 58, 0.08);
  color: var(--accent-strong);
}

.wordpress-status-badge.is-ready {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  color: #214796;
}

.wordpress-status-badge.is-live {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(37, 99, 235, 0.16));
  color: #0c6e78;
}

.wordpress-status-badge.is-fallback {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(124, 58, 237, 0.12));
  color: #9a4c12;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  padding: 22px;
}

.article-content {
  min-width: 0;
}

.article-content h2,
.article-content h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-strong);
}

.article-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.article-content h3 {
  margin: 24px 0 10px;
  font-size: 1.25rem;
}

.article-content p,
.article-content li {
  line-height: 1.82;
  color: var(--text);
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.article-meta,
.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-hero-visual {
  min-height: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #0b2d68 0%, #1376d8 58%, #5a83ff 100%);
}

.article-hero-visual::before,
.article-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.article-hero-visual::before {
  width: 180px;
  height: 180px;
  right: 24px;
  top: 24px;
}

.article-hero-visual::after {
  width: 220px;
  height: 56px;
  left: 24px;
  bottom: 28px;
}

.article-visual-mark {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.24);
}

.article-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
}

.article-sidebar-card {
  padding: 22px;
}

.article-inline-cta,
.article-chart-card {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.94));
  box-shadow: var(--shadow);
}

.article-inline-cta h3,
.article-chart-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.article-inline-cta p,
.article-chart-card p {
  margin: 0;
}

.article-inline-cta .hero-actions {
  margin-top: 18px;
}

.article-vector-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
  gap: 20px;
  align-items: center;
  margin: 28px 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(24, 79, 168, 0.95) 58%, rgba(20, 184, 166, 0.86));
  box-shadow: var(--shadow);
}

.article-vector-banner::before {
  content: "";
  position: absolute;
  inset: auto auto -34px -24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  filter: blur(10px);
}

.article-vector-copy {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
}

.article-vector-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.article-vector-copy h3 {
  margin: 6px 0 12px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.article-vector-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.article-vector-graphic {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.article-vector-graphic::before,
.article-vector-graphic::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.article-vector-graphic::before {
  width: 220px;
  height: 220px;
  right: -38px;
  top: -42px;
}

.article-vector-graphic::after {
  width: 180px;
  height: 180px;
  left: -24px;
  bottom: -46px;
}

.article-vector-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.article-vector-orbit-one {
  inset: 24px 40px 32px 40px;
}

.article-vector-orbit-two {
  inset: 48px 72px 56px 72px;
  border-color: rgba(255, 255, 255, 0.12);
}

.article-vector-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 26px rgba(5, 14, 36, 0.24);
}

.article-vector-chip::before {
  content: "";
}

.article-vector-chip-one {
  left: 28px;
  top: 26px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.96), rgba(245, 158, 11, 0.96));
}

.article-vector-chip-one::before {
  content: "Speed";
}

.article-vector-chip-two {
  right: 24px;
  top: 88px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(124, 58, 237, 0.96));
}

.article-vector-chip-two::before {
  content: "Quality";
}

.article-vector-chip-three {
  left: 84px;
  bottom: 30px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.96), rgba(37, 99, 235, 0.88));
}

.article-vector-chip-three::before {
  content: "Trust";
}

.article-chart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.article-chart-metric {
  padding: 16px;
  border-radius: 20px;
  background: rgba(11, 45, 104, 0.05);
}

.article-chart-metric strong,
.article-chart-metric span {
  display: block;
}

.article-chart-metric strong {
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-strong);
}

.article-chart-bar {
  position: relative;
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(11, 45, 104, 0.08);
  overflow: hidden;
}

.article-chart-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

.article-chart-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .blog-feature-layout,
  .article-chart-grid,
  .article-vector-banner {
    grid-template-columns: 1fr;
  }

  .blog-feature-visual {
    min-height: 180px;
  }

  .article-vector-graphic {
    min-height: 180px;
  }
}

.article-sidebar-card h2 {
  margin: 8px 0 14px;
  font-size: 1.4rem;
}

.related-post-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.related-post-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blog-thumb-recruitment { background-image: linear-gradient(180deg, rgba(8, 24, 58, 0.08), rgba(8, 24, 58, 0.46)), url("assets/template-enhance/recruitment-photo.png"); }
.blog-thumb-executive { background-image: linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)), url("assets/template-enhance/bgv-photo.png"); }
.blog-thumb-rpo { background-image: linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)), url("assets/template-enhance/testimonial-photo-2.png"); }
.blog-thumb-staffing { background-image: linear-gradient(180deg, rgba(8, 24, 58, 0.08), rgba(8, 24, 58, 0.46)), url("assets/template-enhance/staffing-photo.png"); }
.blog-thumb-it { background-image: linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)), url("assets/template-enhance/testimonial-photo-3.png"); }
.blog-thumb-bgv { background-image: linear-gradient(180deg, rgba(8, 24, 58, 0.08), rgba(8, 24, 58, 0.46)), url("assets/template-enhance/bgv-photo.png"); }
.blog-thumb-ai { background-image: linear-gradient(180deg, rgba(9, 22, 56, 0.12), rgba(9, 22, 56, 0.52)), url("assets/template-enhance/hero-texture.jpg"); }
.blog-thumb-industry { background-image: linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)), url("assets/template-enhance/testimonial-photo-1.png"); }
.blog-thumb-telecom { background-image: linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)), url("assets/template-enhance/testimonial-photo-2.png"); }
.blog-thumb-healthcare { background-image: linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)), url("assets/template-enhance/testimonial-photo-1.png"); }

.contact-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.contact-page-copy,
.contact-page-highlight {
  position: relative;
}

.contact-page-highlight {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(19, 118, 216, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 251, 0.94));
  box-shadow: var(--shadow);
}

.contact-highlight-list {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.contact-highlight-list article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.contact-highlight-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-strong);
}

.contact-highlight-list span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.contact-page-form {
  padding: 30px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 22px;
}

.contact-form-span-2 {
  grid-column: span 2;
}

.contact-page-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
}

.form-audience-group {
  display: grid;
  gap: 12px;
  margin: 20px 0 4px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
}

.form-audience-title {
  margin: 0;
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
}

.form-audience-options {
  display: grid;
  gap: 10px;
}

.form-audience-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(11, 45, 104, 0.04);
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
}

.form-audience-option input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 28px rgba(19, 118, 216, 0.24);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.button-gradient {
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6 0%, #2563eb 48%, #7c3aed 100%);
  box-shadow: 0 16px 30px rgba(61, 91, 215, 0.24);
}

.button-whatsapp,
.whatsapp-float {
  color: #ffffff;
  background: linear-gradient(135deg, #23c05e, #0f9f4b);
  box-shadow: 0 18px 30px rgba(20, 122, 59, 0.22);
}

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.button-whatsapp-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.button-light {
  color: var(--accent-strong);
  background: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.whatsapp-float-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 55;
  width: min(calc(100vw - 32px), var(--max-width));
  transform: translateX(-50%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
}

.cookie-consent-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 24%),
    radial-gradient(circle at left bottom, rgba(20, 184, 166, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  box-shadow: 0 24px 56px rgba(11, 31, 58, 0.18);
}

.cookie-consent-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
  color: #0b1f3a;
}

.cookie-consent-copy p {
  margin: 0;
}

.cookie-consent-copy p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.cookie-consent-actions .button {
  min-height: 46px;
  white-space: nowrap;
}

.cookie-settings-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #0b1f3a;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  background: rgba(11, 31, 58, 0.06);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.cookie-settings-link:hover {
  background: rgba(11, 31, 58, 0.1);
}

@media (max-width: 920px) {
  .cookie-consent-card {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .cookie-consent {
    bottom: 12px;
    width: calc(100vw - 20px);
  }

  .cookie-consent-card {
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions .button,
  .cookie-settings-link {
    width: 100%;
  }
}

.hero-side {
  display: none;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
}

.hero-lines {
  position: absolute;
  inset: 0;
}

.hero-lines span {
  position: absolute;
  display: block;
  width: 160%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: travelLine 10s linear infinite;
}

.hero-lines span:nth-child(1) {
  top: 18%;
  left: -20%;
}

.hero-lines span:nth-child(2) {
  top: 36%;
  left: -28%;
  animation-delay: 2s;
}

.hero-lines span:nth-child(3) {
  top: 58%;
  left: -18%;
  animation-delay: 4s;
}

.hero-lines span:nth-child(4) {
  top: 76%;
  left: -24%;
  animation-delay: 6s;
}

.hero-service-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding-top: 18px;
}

.hero-service-card {
  width: min(100%, 300px);
  padding: 20px;
  border-radius: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 34px rgba(9, 24, 55, 0.18);
}

.hero-service-card:nth-child(2) {
  margin-left: auto;
}

.hero-service-card:nth-child(3) {
  margin-left: 34px;
}

.hero-service-card p {
  margin: 0 0 8px;
  opacity: 0.72;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.hero-service-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.45;
}

.hero-service-recruitment {
  border-left: 4px solid #91c2ff;
}

.hero-service-staffing {
  border-left: 4px solid #ffffff;
}

.hero-service-bgv {
  border-left: 4px solid #d8a84a;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
}

.hero-glow-one {
  width: 180px;
  height: 180px;
  right: 34px;
  top: 46px;
  background: rgba(239, 159, 47, 0.18);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  left: 90px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-home {
  padding: 40px 0 18px;
}

.hero-home-shell {
  display: grid;
  gap: 22px;
}

.hero-master-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 28px;
  min-height: 680px;
  padding: 56px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 20%, rgba(31, 141, 255, 0.2), transparent 20%),
    radial-gradient(circle at 72% 28%, rgba(233, 176, 62, 0.16), transparent 18%),
    linear-gradient(145deg, #06062b 0%, #0c0d4a 52%, #10185f 100%);
  box-shadow: 0 32px 72px rgba(7, 7, 32, 0.28);
}

.hero-master-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), transparent 44%);
  pointer-events: none;
}

.hero-master-copy,
.hero-master-visual,
.service-hero-copy,
.service-hero-art {
  position: relative;
  z-index: 1;
}

.hero-master-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-master-copy .eyebrow,
.hero-master-copy h1,
.service-hero-banner h2,
.service-hero-tag {
  color: #ffffff;
}

.hero-master-copy h1 {
  margin: 10px 0 0;
  max-width: 10ch;
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 0.95;
}

.hero-master-copy .hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.16rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.84);
}

.hero-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(6, 10, 32, 0.16);
}

.hero-trust-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

.hero-master-copy .hero-highlights {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-master-visual {
  min-height: 420px;
}

.hero-master-wave {
  position: absolute;
  bottom: -22px;
  width: clamp(180px, 20vw, 240px);
  aspect-ratio: 0.84;
  border-radius: 40px 40px 0 0;
  clip-path: polygon(0 100%, 40% 0, 68% 0, 100% 100%, 74% 100%, 52% 42%, 26% 100%);
  opacity: 0.92;
  filter: drop-shadow(0 26px 48px rgba(1, 5, 34, 0.34));
}

.hero-master-wave-left {
  left: 2%;
  background: linear-gradient(180deg, rgba(151, 127, 255, 0.96), rgba(86, 82, 175, 0.48));
}

.hero-master-wave-center {
  left: 34%;
  background: linear-gradient(180deg, rgba(20, 185, 255, 0.96), rgba(17, 100, 148, 0.42));
}

.hero-master-wave-right {
  right: 2%;
  background: linear-gradient(180deg, rgba(130, 122, 255, 0.94), rgba(71, 76, 160, 0.46));
}

.hero-master-badge {
  position: absolute;
  padding: 16px 18px;
  min-width: 180px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 9, 47, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 44px rgba(5, 7, 28, 0.26);
}

.hero-master-badge strong,
.hero-master-badge span {
  display: block;
}

.hero-master-badge strong {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.hero-master-badge span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-master-badge-one {
  left: 0;
  top: 30px;
}

.hero-master-badge-two {
  right: 34px;
  top: 118px;
}

.hero-master-badge-three {
  left: 24%;
  bottom: 46px;
}

.hero-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-hero-banner {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 22px 44px rgba(7, 7, 32, 0.12);
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  max-width: 34ch;
}

.service-hero-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-hero-banner h2 {
  margin: 16px 0 0;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.service-hero-banner p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.service-hero-banner a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
}

.service-hero-banner a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-hero-art {
  min-height: 150px;
}

.recruitment-banner {
  background:
    radial-gradient(circle at 12% 14%, rgba(32, 170, 255, 0.18), transparent 26%),
    linear-gradient(165deg, #0d173f 0%, #17357d 100%);
}

.staffing-banner {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 205, 88, 0.18), transparent 24%),
    linear-gradient(165deg, #07113a 0%, #0b5f86 100%);
}

.bgv-banner {
  background:
    radial-gradient(circle at 18% 22%, rgba(65, 146, 255, 0.18), transparent 24%),
    linear-gradient(165deg, #081234 0%, #1a286d 100%);
}

.recruitment-art-card,
.recruitment-art-person,
.recruitment-art-check,
.staffing-art-track,
.staffing-art-node,
.staffing-art-bar,
.bgv-art-ring,
.bgv-art-profile,
.bgv-art-tick,
.bgv-art-lines {
  position: absolute;
  display: block;
}

.recruitment-art {
  position: relative;
}

.recruitment-art-card {
  width: 132px;
  height: 164px;
  right: 12px;
  bottom: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.recruitment-art-card-back {
  right: 78px;
  bottom: 30px;
  transform: rotate(-10deg);
}

.recruitment-art-card-front {
  background: rgba(255, 255, 255, 0.14);
}

.recruitment-art-person {
  right: 54px;
  bottom: 54px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(214, 233, 255, 0.92));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.recruitment-art-person::before,
.recruitment-art-person::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #0f2b63;
}

.recruitment-art-person::before {
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.recruitment-art-person::after {
  top: 34px;
  width: 34px;
  height: 18px;
  border-radius: 20px 20px 10px 10px;
}

.recruitment-art-check {
  right: 16px;
  top: 18px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(239, 177, 62, 0.98), rgba(202, 136, 33, 0.92));
  box-shadow: 0 18px 32px rgba(67, 45, 6, 0.28);
}

.recruitment-art-check::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 14px;
  width: 24px;
  height: 14px;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(-45deg);
}

.staffing-art {
  position: relative;
}

.staffing-art-track {
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 94px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.staffing-art-node {
  bottom: 90px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(221, 244, 255, 0.94));
}

.staffing-art-node::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #2fc8ff);
}

.staffing-art-node-one { left: 24px; }
.staffing-art-node-two { left: 50%; transform: translateX(-50%); }
.staffing-art-node-three { right: 24px; }

.staffing-art-bar {
  bottom: 42px;
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 209, 98, 0.98), rgba(197, 131, 31, 0.94));
}

.staffing-art-bar-one { left: 58px; height: 34px; }
.staffing-art-bar-two { left: calc(50% - 7px); height: 56px; }
.staffing-art-bar-three { right: 58px; height: 72px; }

.bgv-art {
  position: relative;
}

.bgv-art-ring {
  right: 34px;
  bottom: 8px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.88);
  opacity: 0.9;
}

.bgv-art-profile {
  right: 85px;
  bottom: 56px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(42, 132, 255, 0.98), rgba(29, 80, 198, 0.94));
}

.bgv-art-profile::before,
.bgv-art-profile::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
}

.bgv-art-profile::before {
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.bgv-art-profile::after {
  top: 38px;
  width: 40px;
  height: 22px;
  border-radius: 24px 24px 12px 12px;
}

.bgv-art-tick {
  right: 18px;
  bottom: 26px;
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(239, 177, 62, 0.98), rgba(201, 136, 34, 0.94));
  transform: rotate(-18deg);
}

.bgv-art-tick::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  width: 28px;
  height: 16px;
  border-left: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  transform: rotate(-45deg);
}

.bgv-art-lines {
  left: 22px;
  top: 16px;
  width: 120px;
  height: 84px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, transparent 0 18px, rgba(255, 255, 255, 0.18) 18px 26px, transparent 26px 40px, rgba(255, 255, 255, 0.18) 40px 48px, transparent 48px 62px, rgba(255, 255, 255, 0.18) 62px 70px, transparent 70px);
}

.lead-card,
.service-card,
.feature-panel,
.content-card,
.contact-card,
.industry-pill,
.metrics-band article,
.split-card,
.timeline-item,
.trust-marquee,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card,
.feature-panel,
.content-card,
.lead-card,
.contact-card,
.split-card,
.timeline-item,
.trust-marquee {
  position: relative;
}

.service-card::before,
.feature-panel::before,
.content-card::before,
.lead-card::before,
.contact-card::before,
.split-card::before,
.timeline-item::before,
.trust-marquee::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), transparent 68%);
  opacity: 0.7;
}

.lead-card,
.content-card {
  padding: 24px;
}

.bgv-hero-panel,
.bgv-intro-strip,
.bgv-highlight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.bgv-hero-panel {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.rpo-hero-copy {
  padding: 16px 0 10px;
}

.about-hero-copy {
  padding: 14px 0 10px;
}

.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19, 118, 216, 0.08);
  border: 1px solid rgba(19, 118, 216, 0.14);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}

.about-hero-side {
  display: grid;
}

.about-visual-card,
.about-mission-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-visual-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: #fff;
}

.about-visual-head strong,
.about-visual-metrics strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.about-visual-head span,
.about-visual-metrics span {
  color: rgba(255, 255, 255, 0.84);
}

.about-visual-head span {
  display: block;
  margin-top: 8px;
}

.about-visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.about-visual-metrics article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-visual-graph {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 150px;
  margin-top: 26px;
}

.about-visual-graph span {
  display: block;
  width: 48px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.38));
}

.about-visual-graph span:nth-child(1) { height: 54px; }
.about-visual-graph span:nth-child(2) { height: 92px; }
.about-visual-graph span:nth-child(3) { height: 122px; }
.about-visual-graph span:nth-child(4) { height: 144px; }

.about-mission-strip {
  padding-top: 12px;
}

.about-mission-card {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 251, 0.92)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.05));
}

.about-mission-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.about-mission-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.rpo-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rpo-hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19, 118, 216, 0.08);
  border: 1px solid rgba(19, 118, 216, 0.14);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}

.rpo-hero-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: #fff;
}

.rpo-hero-panel strong,
.rpo-hero-panel span,
.rpo-hero-panel p {
  color: #fff;
}

.rpo-hero-stat {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.rpo-hero-stat strong,
.rpo-signal-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.rpo-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rpo-signal-grid article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.rpo-story-grid {
  display: grid;
  gap: 18px;
}

.rpo-story-card,
.rpo-quote-card,
.rpo-proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.rpo-story-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
}

.rpo-story-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 244, 251, 0.92)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.05));
}

.rpo-story-visual {
  position: relative;
  min-height: 180px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background:
    radial-gradient(circle at top left, rgba(19, 118, 216, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(11, 45, 104, 0.96), rgba(19, 118, 216, 0.78));
}

.rpo-story-flow span,
.rpo-story-data span,
.rpo-story-tech span {
  position: absolute;
  display: block;
}

.rpo-story-flow span:nth-child(1) {
  left: 22px;
  right: 22px;
  top: 40px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.rpo-story-flow span:nth-child(2),
.rpo-story-flow span:nth-child(3),
.rpo-story-flow span:nth-child(4) {
  width: 46px;
  height: 46px;
  top: 22px;
  border-radius: 18px;
  background: #ffffff;
}

.rpo-story-flow span:nth-child(2) { left: 24px; }
.rpo-story-flow span:nth-child(3) { left: calc(50% - 23px); }
.rpo-story-flow span:nth-child(4) { right: 24px; }

.rpo-story-data span:nth-child(1),
.rpo-story-data span:nth-child(2),
.rpo-story-data span:nth-child(3) {
  bottom: 24px;
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.5));
}

.rpo-story-data span:nth-child(1) {
  left: 34px;
  height: 52px;
}

.rpo-story-data span:nth-child(2) {
  left: 78px;
  height: 88px;
}

.rpo-story-data span:nth-child(3) {
  left: 122px;
  height: 124px;
}

.rpo-story-tech span:nth-child(1) {
  inset: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rpo-story-tech span:nth-child(2) {
  left: 28px;
  right: 28px;
  top: 54px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.rpo-story-tech span:nth-child(3) {
  width: 84px;
  height: 84px;
  right: 28px;
  bottom: 26px;
  border-radius: 24px;
  background: rgba(239, 159, 47, 0.94);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.rpo-story-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.08;
}

.rpo-story-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.rpo-quote-card,
.rpo-proof-card {
  padding: 26px;
}

.rpo-quote-card p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.rpo-quote-card strong,
.rpo-proof-card strong {
  display: block;
  margin-top: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.rpo-quote-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.rpo-proof-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 16px 0 0;
}

.rpo-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rpo-advantage-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(19, 118, 216, 0.08);
  border: 1px solid rgba(19, 118, 216, 0.14);
}

.rpo-advantage-icon span {
  display: block;
}

.rpo-icon-focus span:first-child {
  width: 28px;
  height: 28px;
  border: 3px solid var(--accent-strong);
  border-radius: 50%;
}

.rpo-icon-focus span:last-child {
  width: 10px;
  height: 10px;
  margin-top: -20px;
  border-radius: 50%;
  background: var(--gold);
}

.rpo-icon-scale {
  align-items: end;
  gap: 6px;
}

.rpo-icon-scale span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.rpo-icon-scale span:nth-child(1) { height: 22px; }
.rpo-icon-scale span:nth-child(2) { height: 34px; }
.rpo-icon-scale span:nth-child(3) { height: 46px; }

.rpo-icon-custom span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 3px solid var(--accent-strong);
  position: relative;
}

.rpo-icon-custom span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: -8px;
  bottom: -8px;
  border-radius: 6px;
  background: var(--gold);
}

.rpo-icon-market span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid var(--accent-strong);
}

.rpo-icon-market span:last-child {
  width: 20px;
  height: 4px;
  margin-top: -4px;
  transform: rotate(45deg) translate(10px, 7px);
  border-radius: 999px;
  background: var(--accent-strong);
}

.rpo-icon-agile {
  gap: 4px;
}

.rpo-icon-agile span {
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.rpo-icon-agile span:nth-child(2) {
  width: 32px;
}

.rpo-icon-agile span:nth-child(3) {
  width: 18px;
}

.rpo-icon-trust span {
  width: 26px;
  height: 34px;
  border-radius: 14px 14px 18px 18px;
  border: 3px solid var(--accent-strong);
  border-bottom-width: 5px;
}

.bgv-proof-card {
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bgv-proof-card .eyebrow {
  color: #fff;
  opacity: 0.86;
}

.bgv-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bgv-proof-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bgv-proof-grid strong {
  display: inline-flex;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}

.bgv-proof-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.bgv-intro-strip {
  padding: 20px 24px;
  margin: 18px 0 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 251, 0.9));
}

.bgv-intro-strip p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.bgv-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bgv-icon-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 251, 0.9));
  box-shadow: var(--shadow);
}

.bgv-icon-card h3 {
  margin: 14px 0 10px;
  font-size: 1.2rem;
}

.bgv-icon-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.bgv-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(19, 118, 216, 0.08);
  border: 1px solid rgba(19, 118, 216, 0.14);
}

.bgv-icon-trust span {
  width: 28px;
  height: 34px;
  border-radius: 14px 14px 18px 18px;
  border: 3px solid var(--accent-strong);
  border-bottom-width: 5px;
}

.bgv-icon-speed span:first-child,
.bgv-icon-speed span:last-child {
  display: block;
  background: var(--accent);
}

.bgv-icon-speed span:first-child {
  width: 26px;
  height: 6px;
  border-radius: 999px;
}

.bgv-icon-speed span:last-child {
  width: 6px;
  height: 26px;
  border-radius: 999px;
  margin-top: -3px;
}

.bgv-icon-checks span {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.bgv-icon-report span:first-child,
.bgv-icon-report span:last-child {
  display: block;
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.bgv-icon-report span:first-child {
  height: 26px;
}

.bgv-icon-report span:last-child {
  height: 16px;
  margin-top: 4px;
}

.bgv-highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  color: #fff;
}

.bgv-highlight-card .eyebrow,
.bgv-highlight-card h2,
.bgv-highlight-card p {
  color: #fff;
}

.bgv-highlight-card p:last-child {
  margin: 12px 0 0;
  max-width: 64ch;
  line-height: 1.75;
  opacity: 0.86;
}

.brochure-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 251, 0.92)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.05));
  box-shadow: var(--shadow);
}

.brochure-copy p:last-of-type {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.brochure-preview {
  display: grid;
  place-items: center;
}

.brochure-sheet {
  width: 100%;
  max-width: 280px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 40px rgba(16, 35, 63, 0.12);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.brochure-sheet-top {
  width: 100%;
  height: 84px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(135deg, rgba(239, 159, 47, 0.2), rgba(255, 255, 255, 0.08));
  margin-bottom: 18px;
}

.brochure-sheet strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: var(--accent-strong);
}

.brochure-sheet span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.brochure-sheet ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.content-card-form-premium {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 251, 0.95)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.04));
}

.contact-layout-bgv {
  align-items: stretch;
}

.form-intro {
  margin: -2px 0 4px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-list h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.lead-card {
  display: grid;
  gap: 14px;
}

.lead-card label,
.content-card label {
  display: grid;
  gap: 8px;
}

.lead-card span,
.content-card span {
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.trust-marquee {
  display: grid;
  gap: 18px;
  padding: 20px 22px;
  margin: 18px 0 26px;
}

.trust-marquee p {
  margin: 0;
  font-weight: 700;
}

.trust-marquee div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-marquee span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19, 118, 216, 0.08);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 26px;
}

.metrics-band article {
  padding: 22px 24px;
}

.metrics-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.metrics-band span {
  color: var(--muted);
  line-height: 1.65;
}

.alpha-stats-grid,
.client-logo-wall,
.recognition-grid {
  display: grid;
  gap: 18px;
}

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

.alpha-stat-card,
.recognition-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.alpha-stat-card strong,
.recognition-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: var(--accent-strong);
}

.alpha-stat-card span,
.recognition-card span {
  color: var(--muted);
  line-height: 1.7;
}

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

.client-logo-wall div {
  display: grid;
  place-items: center;
  min-height: 98px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 251, 0.92)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.05), rgba(11, 45, 104, 0.04));
  box-shadow: var(--shadow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: var(--accent-strong);
}

.support-outcomes-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

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

.section {
  padding: 34px 0;
}

.section-heading {
  max-width: none;
  margin-bottom: 24px;
}

.service-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.service-card {
  padding: 24px;
}

.service-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(220, 234, 252, 0.82)),
    linear-gradient(135deg, rgba(19, 118, 216, 0.08), rgba(11, 45, 104, 0.08));
}

.service-index,
.timeline-item span {
  display: inline-flex;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.feature-panel h3,
.timeline-item h3 {
  margin: 10px 0 10px;
  font-size: 1.3rem;
}

.service-card p,
.feature-panel p,
.timeline-item p,
.content-card p,
.site-footer p {
  margin: 0;
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 20px 0 0;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
}

.feature-panel {
  padding: 24px;
}

.panel-visual {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 84px;
  margin-bottom: 16px;
}

.panel-visual span {
  display: block;
  width: 22px;
  border-radius: 999px;
}

.panel-visual-blue span:nth-child(1) {
  height: 36px;
  background: #95c6ff;
}

.panel-visual-blue span:nth-child(2) {
  height: 56px;
  background: #4fa0f4;
}

.panel-visual-blue span:nth-child(3) {
  height: 74px;
  background: var(--accent-strong);
}

.panel-visual-gold span:nth-child(1) {
  height: 30px;
  background: #f8d08e;
}

.panel-visual-gold span:nth-child(2) {
  height: 48px;
  background: var(--gold);
}

.panel-visual-gold span:nth-child(3) {
  height: 68px;
  background: #c77b12;
}

.panel-visual-dark span:nth-child(1) {
  height: 28px;
  background: #6f85a8;
}

.panel-visual-dark span:nth-child(2) {
  height: 48px;
  background: #314c77;
}

.panel-visual-dark span:nth-child(3) {
  height: 70px;
  background: var(--dark);
}

.split-band,
.two-column-section,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-card {
  padding: 30px;
}

.split-card-dark {
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  color: #fff;
}

.split-card-dark .eyebrow,
.split-card-dark h2 {
  color: #fff;
}

.split-card-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 251, 0.9));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 24px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-pill {
  display: flex;
  align-items: center;
  min-height: 122px;
  padding: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.cta-section {
  padding-top: 54px;
}

.cta-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(135deg, rgba(239, 159, 47, 0.18), rgba(255, 255, 255, 0.08));
  color: #fff;
}

.cta-card .eyebrow,
.cta-card h2 {
  color: #fff;
}

.cta-card .button-primary {
  margin-top: 24px;
  background: #fff;
  color: var(--accent-strong);
  box-shadow: none;
}

.site-footer {
  display: grid;
  gap: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 42px 18px 12px;
  background:
    linear-gradient(180deg, rgba(9, 8, 48, 0.98), rgba(12, 10, 66, 0.96)),
    linear-gradient(135deg, rgba(65, 43, 180, 0.16), rgba(14, 162, 255, 0.08));
}

.footer-mega {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(9, 8, 48, 0.98), rgba(12, 10, 66, 0.96)),
    linear-gradient(135deg, rgba(65, 43, 180, 0.18), rgba(14, 162, 255, 0.08));
  box-shadow: 0 22px 48px rgba(7, 7, 32, 0.28);
}

.footer-brand-block h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  color: #ffffff;
}

.footer-brand-block p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand-block a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-cta-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.footer-links-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
}

.footer-links-grid a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-bottom-line {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
  margin: 0 auto;
  padding: 0 6px 8px;
}

.footer-bottom-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.brochure-shell {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
  margin: 0 auto;
}

.brochure-page {
  padding: 26px 0 40px;
}

.brochure-deck {
  display: grid;
  gap: 18px;
  counter-reset: brochurepage;
}

.brochure-cover,
.brochure-contact {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brochure-cover {
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.98), rgba(19, 118, 216, 0.9)),
    linear-gradient(135deg, rgba(239, 159, 47, 0.18), rgba(255, 255, 255, 0.08));
  color: #fff;
}

.brochure-deck section {
  position: relative;
  counter-increment: brochurepage;
}

.brochure-deck section::after {
  content: "Page " counter(brochurepage);
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(16, 35, 63, 0.55);
}

.brochure-cover::after {
  color: rgba(255, 255, 255, 0.72);
}

.brochure-cover .eyebrow,
.brochure-cover h1,
.brochure-cover .hero-text {
  color: #fff;
}

.brochure-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.brochure-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}

.brochure-hero {
  max-width: 760px;
  margin-bottom: 26px;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brochure-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 3px solid rgba(19, 118, 216, 0.14);
  padding-top: 18px;
}

.brochure-section-grid-wide {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.brochure-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 3px solid rgba(19, 118, 216, 0.14);
  padding-top: 18px;
}

.brochure-metrics article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 251, 0.92));
  box-shadow: var(--shadow);
}

.brochure-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-strong);
}

.brochure-metrics span {
  color: var(--muted);
  line-height: 1.65;
}

.brochure-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 18px 0 0;
}

.brochure-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 251, 0.92));
  border-top: 3px solid rgba(19, 118, 216, 0.14);
  padding-top: 24px;
}

.brochure-contact-links {
  display: grid;
  gap: 10px;
}

.brochure-contact a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-card a,
.content-card a {
  color: var(--accent-strong);
  font-size: 1.06rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 8px;
}

.footer-links a {
  font-size: 0.95rem;
}

.policy-page {
  padding: 20px 0 40px;
}

.testimonial-media-grid,
.testimonial-thumb-wall {
  display: grid;
  gap: 18px;
}

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

.testimonial-media-card,
.testimonial-mini-card,
.testimonial-quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.testimonial-media-card,
.testimonial-mini-card {
  padding: 18px;
}

.testimonial-media-card h3,
.testimonial-mini-card strong {
  margin: 16px 0 8px;
}

.testimonial-thumbnail,
.testimonial-mini-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonial-thumbnail {
  min-height: 220px;
  padding: 18px;
}

.testimonial-mini-visual {
  min-height: 138px;
}

.testimonial-thumb-blue,
.testimonial-thumb-gold,
.testimonial-thumb-dark {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-thumb-blue { background-image: linear-gradient(180deg, rgba(10, 22, 58, 0.1), rgba(10, 22, 58, 0.54)), url("assets/template-enhance/testimonial-photo-1.png"); }

.testimonial-thumb-gold { background-image: linear-gradient(180deg, rgba(10, 22, 58, 0.1), rgba(10, 22, 58, 0.54)), url("assets/template-enhance/testimonial-photo-2.png"); }

.testimonial-thumb-dark { background-image: linear-gradient(180deg, rgba(10, 22, 58, 0.1), rgba(10, 22, 58, 0.54)), url("assets/template-enhance/testimonial-photo-3.png"); }

.testimonial-play {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.testimonial-play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
}

.testimonial-thumb-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.testimonial-thumb-lines {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.testimonial-thumb-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-thumb-lines span:nth-child(1) {
  width: 88%;
}

.testimonial-thumb-lines span:nth-child(2) {
  width: 72%;
}

.testimonial-thumb-lines span:nth-child(3) {
  width: 54%;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  margin-top: 14px;
}

.testimonial-meta strong,
.testimonial-mini-card strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-strong);
}

.testimonial-meta span,
.testimonial-mini-card span {
  color: var(--muted);
  line-height: 1.6;
}

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

.testimonial-quote-card {
  padding: 24px;
  position: relative;
}

.testimonial-quote-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(19, 118, 216, 0.14);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes travelLine {
  0% {
    transform: translateX(-8%);
    opacity: 0;
  }

  15%,
  85% {
    opacity: 1;
  }

  100% {
    transform: translateX(12%);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .bgv-hero,
  .rpo-hero,
  .about-hero,
  .consultancy-hero,
  .industries-hero,
  .blog-hero,
  .article-hero,
  .ai-solution-hero,
  .hero,
  .metrics-band,
  .alpha-stats-grid,
  .bgv-icon-grid,
  .service-grid,
  .feature-grid,
  .testimonial-media-grid,
  .split-band,
  .two-column-section,
  .contact-layout,
  .timeline,
  .site-footer,
  .industry-grid,
  .client-logo-wall,
  .recognition-grid,
  .testimonial-thumb-wall,
  .brochure-card,
  .brochure-grid,
  .brochure-section-grid,
  .brochure-section-grid-wide,
  .brochure-metrics,
  .brochure-contact,
  .blog-layout,
  .article-layout,
  .contact-page-hero,
  .contact-page-grid,
  .rpo-signal-grid,
  .ai-metric-grid,
  .industry-sector-grid,
  .about-visual-metrics,
  .rpo-story-card,
  .ai-story-grid,
  .rpo-advantage-grid,
  .footer-mega,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .service-grid-large {
    grid-template-columns: 1fr;
  }

  .bgv-highlight-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 10px);
  }

  .site-header {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "utility utility"
      "brand toggle"
      "nav nav";
    border-radius: 0;
    align-items: start;
    padding: 6px 10px 10px;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav a.header-contact-button {
    margin-left: 0;
  }

  .header-socials {
    width: auto;
    padding-top: 0;
  }

  .header-utility {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 10px;
  }

  .header-call-link {
    width: 100%;
    justify-content: flex-start;
  }

  .header-utility-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .header-utility-divider {
    display: none;
  }

  .header-whatsapp-link {
    align-self: center;
  }

  .brand {
    padding: 0;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    grid-template-columns: 1fr !important;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .brand-logo-full {
    max-width: 78px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 12px;
  }

  .hero-home {
    padding: 24px 0 12px;
  }

  .hero-home-shell {
    gap: 16px;
  }

  .blog-post-card {
    grid-template-columns: 1fr;
  }

  .industries-hero-panel {
    min-height: 300px;
  }

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

  .contact-form-span-2 {
    grid-column: auto;
  }

  .industries-panel-core {
    width: 136px;
    height: 136px;
  }

  .industries-panel-chip {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero-master-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 22px 280px;
    gap: 22px;
  }

  .hero-master-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .hero-master-copy .hero-text {
    font-size: 1rem;
  }

  .hero-master-badge {
    min-width: 144px;
    padding: 12px 14px;
  }

  .hero-master-badge-one {
    top: auto;
    left: 10px;
    bottom: 182px;
  }

  .hero-master-badge-two {
    right: 12px;
    top: auto;
    bottom: 120px;
  }

  .hero-master-badge-three {
    left: 50%;
    bottom: 44px;
    transform: translateX(-50%);
  }

  .hero-master-wave {
    width: 30%;
    min-width: 96px;
    max-width: 132px;
  }

  .hero-banner-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-banner {
    min-height: 320px;
    padding: 24px 22px;
  }

  .service-hero-banner h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .service-hero-art {
    min-height: 120px;
  }

  .bgv-art-ring {
    width: 132px;
    height: 132px;
    right: 18px;
  }

  .bgv-art-profile {
    right: 54px;
    bottom: 48px;
  }

  .bgv-art-tick {
    right: 2px;
    bottom: 16px;
    width: 74px;
    height: 74px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }

  .about-visual-card,
  .about-mission-card {
    padding: 20px;
  }

  .rpo-story-card {
    padding: 20px;
  }

  .rpo-story-visual {
    min-height: 150px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.3rem);
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-service-card,
  .hero-service-card:nth-child(2),
  .hero-service-card:nth-child(3) {
    width: 100%;
    margin-left: 0;
    padding: 14px;
  }

  .lead-card,
  .service-card,
  .feature-panel,
  .content-card,
  .contact-card,
  .metrics-band article,
  .split-card,
  .timeline-item,
  .trust-marquee,
  .cta-card,
  .industry-pill,
  .brochure-cover,
  .brochure-contact,
  .footer-mega {
    padding: 20px;
  }
}

.locations-dropdown .nav-submenu {
  width: min(720px, calc(100vw - 80px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.location-hero-panel,
.location-hero-art,
.location-overview-card,
.location-service-card,
.location-form-card,
.location-sidebar-card,
.location-process-card,
.location-faq-card,
.location-link-card,
.location-city-card {
  border: 1px solid rgba(108, 133, 187, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.92));
  box-shadow: 0 26px 60px rgba(8, 18, 48, 0.1);
}

.location-hero-panel {
  padding: 42px;
}

.location-hero-panel h1 {
  margin-bottom: 18px;
}

.location-hero-panel .hero-text {
  max-width: 62ch;
}

.location-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}

.location-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.location-hero-metrics article {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(9, 27, 63, 0.05);
}

.location-hero-metrics strong {
  display: block;
  color: var(--ink-900);
  font-size: 1.3rem;
  font-weight: 800;
}

.location-hero-metrics span {
  color: var(--ink-600);
  font-size: 0.92rem;
}

.location-hero-art {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(65, 145, 255, 0.28), transparent 38%),
    radial-gradient(circle at 82% 26%, rgba(205, 147, 43, 0.24), transparent 26%),
    linear-gradient(145deg, #091642 0%, #0c2b68 56%, #194f9d 100%);
}

.location-hero-art::before,
.location-hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  transform: rotate(-22deg);
}

.location-hero-art::before {
  inset: 12% -24% auto auto;
  width: 320px;
  height: 320px;
  border: 48px solid rgba(255, 255, 255, 0.08);
}

.location-hero-art::after {
  inset: auto auto -14% -16%;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(201, 146, 47, 0.22);
}

.location-art-badge,
.location-art-card {
  position: relative;
  z-index: 1;
}

.location-art-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-art-badge span:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.location-art-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.location-art-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.location-art-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.location-art-ribbon {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(7, 15, 41, 0.44);
}

.location-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.location-content {
  display: grid;
  gap: 24px;
}

.location-overview-card {
  padding: 34px;
}

.location-takeaways {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.location-takeaways article {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(9, 27, 63, 0.04);
}

.location-takeaways strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-900);
}

.location-section-title {
  margin-bottom: 10px;
}

.location-service-grid,
.location-faq-grid,
.location-city-grid,
.location-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-service-card,
.location-faq-card,
.location-city-card,
.location-link-card {
  padding: 26px;
}

.location-service-card ul,
.location-link-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
}

.location-service-card li,
.location-link-card li {
  margin-bottom: 8px;
}

.location-process-grid {
  display: grid;
  gap: 16px;
}

.location-process-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 26px;
}

.location-process-index {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, #2c77d2, #0b2d68);
}

.location-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.location-form-card,
.location-sidebar-card {
  padding: 28px;
}

.location-form-card form {
  display: grid;
  gap: 12px;
}

.location-form-card label {
  display: grid;
  gap: 7px;
  color: var(--ink-800);
  font-weight: 600;
  font-size: 0.94rem;
}

.location-form-card input,
.location-form-card select,
.location-form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(107, 126, 168, 0.28);
  background: #ffffff;
  font: inherit;
  color: var(--ink-900);
}

.location-form-card textarea {
  min-height: 132px;
  resize: vertical;
}

.location-form-card button {
  width: 100%;
}

.location-sidebar-card h3 {
  margin-bottom: 12px;
}

.location-sidebar-list {
  display: grid;
  gap: 10px;
}

.location-sidebar-item,
.location-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--ink-800);
  background: rgba(9, 27, 63, 0.05);
}

.location-sidebar-link {
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.location-sidebar-link:hover,
.location-sidebar-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(44, 119, 210, 0.1);
}

.location-sidebar-note {
  margin-top: 10px;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.location-sidebar-call strong {
  display: block;
  margin-bottom: 4px;
}

.support-sidebar-widget {
  display: grid;
  gap: 14px;
}

.support-inline-widget {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-sidebar-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(108, 133, 187, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.94));
  box-shadow: 0 20px 44px rgba(8, 18, 48, 0.1);
}

.support-sidebar-card h3 {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 1.16rem;
}

.support-post-card {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(124, 58, 237, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.95));
}

.support-post-visual {
  position: relative;
  width: 132px;
  height: 88px;
  margin: 0 auto 14px;
}

.support-post-screen,
.support-post-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.support-post-screen {
  top: 0;
  width: 96px;
  height: 62px;
  border-radius: 12px 12px 8px 8px;
  border: 4px solid #5a4bd5;
  background:
    linear-gradient(180deg, rgba(90, 75, 213, 0.98), rgba(21, 118, 216, 0.9));
  box-shadow: 0 12px 24px rgba(55, 40, 146, 0.22);
}

.support-post-screen::before {
  content: "";
  position: absolute;
  inset: 10px 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.support-post-base {
  bottom: 0;
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(140, 148, 171, 0.92), rgba(103, 113, 140, 0.92));
}

.support-post-label {
  margin: 0 0 8px;
  color: #4f41c8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.support-post-copy {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.support-post-button,
.support-job-button {
  width: 100%;
}

.support-post-note {
  display: inline-flex;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-employer-card {
  background:
    linear-gradient(180deg, rgba(92, 80, 205, 0.96), rgba(64, 58, 159, 0.98));
  color: #ffffff;
}

.support-employer-card h3 {
  color: #ffffff;
}

.support-choice-list {
  display: grid;
  gap: 10px;
}

.support-choice-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.55;
}

.support-choice-dot {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.support-benefits-card {
  padding-top: 12px;
}

.support-benefits-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-benefits-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 600;
}

.support-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.support-job-card {
  text-align: center;
}

.support-mini-title {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-feedback-card h3 {
  margin-bottom: 10px;
}

.support-video-link {
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.support-video-screen {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 134px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.16), rgba(11, 31, 58, 0.58)),
    url("assets/template-enhance/testimonial-photo-1.png") center / cover no-repeat;
  overflow: hidden;
}

.support-video-screen::before,
.support-video-screen::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.support-video-screen::before {
  width: 92px;
  height: 92px;
  top: -22px;
  right: -18px;
}

.support-video-screen::after {
  width: 72px;
  height: 72px;
  left: -14px;
  bottom: -16px;
}

.support-video-play {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.support-video-play::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-left: 16px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.support-video-caption {
  color: var(--accent-strong);
  font-weight: 700;
  text-align: center;
}

.support-quick-links {
  display: grid;
  gap: 10px;
}

.support-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--accent-strong);
  font-weight: 700;
  background: rgba(11, 45, 104, 0.06);
  transition: transform 180ms ease, background-color 180ms ease;
}

.support-quick-links a:hover,
.support-quick-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(37, 99, 235, 0.1);
}

.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.contact-address-card {
  padding: 28px;
}

.contact-address-card h2 {
  margin-bottom: 12px;
}

.contact-address-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-address-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11, 45, 104, 0.05);
}

.contact-address-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-strong);
}

.contact-map-embed {
  padding: 14px;
  overflow: hidden;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
}

body:not([data-page="home"]) {
  background:
    radial-gradient(circle at 8% 10%, rgba(37, 99, 235, 0.12), transparent 18%),
    radial-gradient(circle at 92% 12%, rgba(124, 58, 237, 0.12), transparent 20%),
    radial-gradient(circle at 12% 86%, rgba(20, 184, 166, 0.12), transparent 18%),
    radial-gradient(circle at 90% 78%, rgba(249, 115, 22, 0.12), transparent 18%),
    linear-gradient(180deg, #f9fbff 0%, #eef5fb 52%, #f8fbff 100%);
}

body:not([data-page="home"]) .button-primary,
body:not([data-page="home"]) .site-nav a.header-contact-button {
  background: linear-gradient(135deg, var(--accent), var(--purple) 56%, var(--orange));
  box-shadow: 0 16px 30px rgba(84, 58, 197, 0.22);
}

body:not([data-page="home"]) .button-secondary {
  color: var(--navy);
  border: 1px solid rgba(124, 58, 237, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 255, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.06), rgba(124, 58, 237, 0.06));
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.08);
}

body:not([data-page="home"]) .eyebrow {
  background: linear-gradient(90deg, var(--accent), var(--teal), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not([data-page="home"]) .page-hero h1,
body:not([data-page="home"]) .section-heading h2,
body:not([data-page="home"]) .lead-card h2,
body:not([data-page="home"]) .cta-card h2,
body:not([data-page="home"]) .split-card h2,
body:not([data-page="home"]) .content-card h2,
body:not([data-page="home"]) .hero h1,
body:not([data-page="home"]) .article-content h2,
body:not([data-page="home"]) .article-content h3 {
  background: linear-gradient(120deg, var(--navy) 0%, var(--accent-strong) 24%, var(--accent) 54%, var(--purple) 78%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not([data-page="home"]) .page-hero,
body:not([data-page="home"]) .about-hero-copy,
body:not([data-page="home"]) .bgv-hero-copy,
body:not([data-page="home"]) .consultancy-hero-copy,
body:not([data-page="home"]) .ai-hero-copy,
body:not([data-page="home"]) .rpo-hero-copy,
body:not([data-page="home"]) .industries-hero-copy,
body:not([data-page="home"]) .blog-hero-copy,
body:not([data-page="home"]) .article-hero-copy,
body:not([data-page="home"]) .contact-page-copy {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(91, 117, 181, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 255, 0.94));
  box-shadow: 0 24px 56px rgba(16, 35, 63, 0.1);
}

body:not([data-page="home"]) .page-hero::before,
body:not([data-page="home"]) .about-hero-copy::before,
body:not([data-page="home"]) .bgv-hero-copy::before,
body:not([data-page="home"]) .consultancy-hero-copy::before,
body:not([data-page="home"]) .ai-hero-copy::before,
body:not([data-page="home"]) .rpo-hero-copy::before,
body:not([data-page="home"]) .industries-hero-copy::before,
body:not([data-page="home"]) .blog-hero-copy::before,
body:not([data-page="home"]) .article-hero-copy::before,
body:not([data-page="home"]) .contact-page-copy::before,
body:not([data-page="home"]) .page-hero::after,
body:not([data-page="home"]) .about-hero-copy::after,
body:not([data-page="home"]) .bgv-hero-copy::after,
body:not([data-page="home"]) .consultancy-hero-copy::after,
body:not([data-page="home"]) .ai-hero-copy::after,
body:not([data-page="home"]) .rpo-hero-copy::after,
body:not([data-page="home"]) .industries-hero-copy::after,
body:not([data-page="home"]) .blog-hero-copy::after,
body:not([data-page="home"]) .article-hero-copy::after,
body:not([data-page="home"]) .contact-page-copy::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

body:not([data-page="home"]) .page-hero::before,
body:not([data-page="home"]) .about-hero-copy::before,
body:not([data-page="home"]) .bgv-hero-copy::before,
body:not([data-page="home"]) .consultancy-hero-copy::before,
body:not([data-page="home"]) .ai-hero-copy::before,
body:not([data-page="home"]) .rpo-hero-copy::before,
body:not([data-page="home"]) .industries-hero-copy::before,
body:not([data-page="home"]) .blog-hero-copy::before,
body:not([data-page="home"]) .article-hero-copy::before,
body:not([data-page="home"]) .contact-page-copy::before {
  width: 180px;
  height: 180px;
  right: -42px;
  top: -46px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0) 70%);
}

body:not([data-page="home"]) .page-hero::after,
body:not([data-page="home"]) .about-hero-copy::after,
body:not([data-page="home"]) .bgv-hero-copy::after,
body:not([data-page="home"]) .consultancy-hero-copy::after,
body:not([data-page="home"]) .ai-hero-copy::after,
body:not([data-page="home"]) .rpo-hero-copy::after,
body:not([data-page="home"]) .industries-hero-copy::after,
body:not([data-page="home"]) .blog-hero-copy::after,
body:not([data-page="home"]) .article-hero-copy::after,
body:not([data-page="home"]) .contact-page-copy::after {
  width: 120px;
  height: 120px;
  left: -24px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.16) 0%, rgba(20, 184, 166, 0) 72%);
}

body:not([data-page="home"]) .service-card,
body:not([data-page="home"]) .feature-panel,
body:not([data-page="home"]) .content-card,
body:not([data-page="home"]) .contact-card,
body:not([data-page="home"]) .lead-card,
body:not([data-page="home"]) .industry-pill,
body:not([data-page="home"]) .metrics-band article,
body:not([data-page="home"]) .split-card,
body:not([data-page="home"]) .timeline-item,
body:not([data-page="home"]) .trust-marquee,
body:not([data-page="home"]) .cta-card,
body:not([data-page="home"]) .ai-story-card,
body:not([data-page="home"]) .industry-sector-card,
body:not([data-page="home"]) .location-overview-card,
body:not([data-page="home"]) .location-service-card,
body:not([data-page="home"]) .location-process-card,
body:not([data-page="home"]) .location-faq-card,
body:not([data-page="home"]) .location-link-card,
body:not([data-page="home"]) .location-city-card,
body:not([data-page="home"]) .location-form-card,
body:not([data-page="home"]) .location-sidebar-card,
body:not([data-page="home"]) .article-sidebar-card,
body:not([data-page="home"]) .blog-post-card,
body:not([data-page="home"]) .blog-feature-card,
body:not([data-page="home"]) .related-post-card,
body:not([data-page="home"]) .support-sidebar-card {
  border-color: rgba(111, 132, 182, 0.18);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.94));
  box-shadow: 0 24px 54px rgba(12, 27, 58, 0.1);
}

body:not([data-page="home"]) .service-card::after,
body:not([data-page="home"]) .feature-panel::after,
body:not([data-page="home"]) .content-card::after,
body:not([data-page="home"]) .contact-card::after,
body:not([data-page="home"]) .lead-card::after,
body:not([data-page="home"]) .split-card::after,
body:not([data-page="home"]) .timeline-item::after,
body:not([data-page="home"]) .industry-sector-card::after,
body:not([data-page="home"]) .location-overview-card::after,
body:not([data-page="home"]) .location-service-card::after,
body:not([data-page="home"]) .location-process-card::after,
body:not([data-page="home"]) .location-faq-card::after,
body:not([data-page="home"]) .location-link-card::after,
body:not([data-page="home"]) .location-city-card::after,
body:not([data-page="home"]) .location-form-card::after,
body:not([data-page="home"]) .location-sidebar-card::after,
body:not([data-page="home"]) .article-sidebar-card::after,
body:not([data-page="home"]) .blog-post-card::after,
body:not([data-page="home"]) .blog-feature-card::after,
body:not([data-page="home"]) .related-post-card::after,
body:not([data-page="home"]) .support-sidebar-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.18), rgba(249, 115, 22, 0.18));
  pointer-events: none;
}

body:not([data-page="home"]) .service-grid > *:nth-child(3n+2),
body:not([data-page="home"]) .feature-grid > *:nth-child(3n+2),
body:not([data-page="home"]) .industry-sector-grid > *:nth-child(3n+2),
body:not([data-page="home"]) .location-service-grid > *:nth-child(3n+2),
body:not([data-page="home"]) .location-faq-grid > *:nth-child(3n+2),
body:not([data-page="home"]) .location-links-grid > *:nth-child(3n+2),
body:not([data-page="home"]) .related-post-grid > *:nth-child(3n+2) {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 243, 255, 0.94));
}

body:not([data-page="home"]) .service-grid > *:nth-child(3n),
body:not([data-page="home"]) .feature-grid > *:nth-child(3n),
body:not([data-page="home"]) .industry-sector-grid > *:nth-child(3n),
body:not([data-page="home"]) .location-service-grid > *:nth-child(3n),
body:not([data-page="home"]) .location-faq-grid > *:nth-child(3n),
body:not([data-page="home"]) .location-links-grid > *:nth-child(3n),
body:not([data-page="home"]) .related-post-grid > *:nth-child(3n) {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 241, 0.94));
}

body:not([data-page="home"]) .trust-marquee,
body:not([data-page="home"]) .metrics-band article,
body:not([data-page="home"]) .cta-card {
  overflow: hidden;
}

body:not([data-page="home"]) .trust-marquee {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.14), transparent 24%),
    radial-gradient(circle at left center, rgba(20, 184, 166, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
}

body:not([data-page="home"]) .trust-marquee span {
  background: rgba(11, 45, 104, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.08);
}

body:not([data-page="home"]) .metrics-band article {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.94));
}

body:not([data-page="home"]) .metrics-band article:nth-child(2n) {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 243, 255, 0.94));
}

body:not([data-page="home"]) .metrics-band article:nth-child(3n) {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 241, 0.94));
}

body:not([data-page="home"]) .cta-card {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(20, 184, 166, 0.18), transparent 22%),
    linear-gradient(135deg, #0b1f3a 0%, #1241a6 46%, #6d28d9 100%);
}

body:not([data-page="home"]) .cta-card .eyebrow,
body:not([data-page="home"]) .cta-card h2,
body:not([data-page="home"]) .cta-card p {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: initial;
}

body:not([data-page="home"]) .cta-card .button-primary {
  background: linear-gradient(135deg, #f97316, #7c3aed);
  color: #ffffff;
}

body:not([data-page="home"]) .service-card h3,
body:not([data-page="home"]) .feature-panel h3,
body:not([data-page="home"]) .timeline-item h3,
body:not([data-page="home"]) .industry-sector-card h3,
body:not([data-page="home"]) .location-service-card h3,
body:not([data-page="home"]) .location-faq-card h3,
body:not([data-page="home"]) .location-link-card h3,
body:not([data-page="home"]) .location-city-card h3,
body:not([data-page="home"]) .blog-post-card h3,
body:not([data-page="home"]) .related-post-card h3,
body:not([data-page="home"]) .ai-story-card h3 {
  color: var(--accent-strong);
}

body:not([data-page="home"]) .service-card h3::before,
body:not([data-page="home"]) .feature-panel h3::before,
body:not([data-page="home"]) .timeline-item h3::before,
body:not([data-page="home"]) .industry-sector-card h3::before,
body:not([data-page="home"]) .location-service-card h3::before,
body:not([data-page="home"]) .location-faq-card h3::before,
body:not([data-page="home"]) .location-link-card h3::before,
body:not([data-page="home"]) .location-city-card h3::before,
body:not([data-page="home"]) .blog-post-card h3::before,
body:not([data-page="home"]) .related-post-card h3::before,
body:not([data-page="home"]) .ai-story-card h3::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 5px;
  vertical-align: 1px;
  background: linear-gradient(135deg, var(--accent), var(--teal), var(--purple));
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

.locations-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-city-card {
  position: relative;
  overflow: hidden;
}

.location-city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(44, 119, 210, 0.12), transparent 34%);
  pointer-events: none;
}

.location-city-card p,
.location-link-card p {
  color: var(--ink-600);
}

.location-city-card .button,
.location-link-card .button {
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .locations-dropdown .nav-submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-hero,
  .location-shell,
  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .location-sidebar {
    position: static;
  }

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

@media (max-width: 720px) {
  .locations-dropdown .nav-submenu,
  .location-service-grid,
  .location-faq-grid,
  .location-city-grid,
  .location-links-grid,
  .locations-hub-grid,
  .location-hero-metrics,
  .location-art-grid {
    grid-template-columns: 1fr;
  }

  .location-hero-panel,
  .location-overview-card,
  .location-service-card,
  .location-form-card,
  .location-sidebar-card,
  .location-process-card,
  .location-faq-card,
  .location-link-card,
  .location-city-card {
    padding: 22px;
  }

  .location-process-card {
    grid-template-columns: 1fr;
  }

  .support-inline-widget {
    grid-template-columns: 1fr;
  }

  .support-sidebar-card,
  .form-audience-group {
    padding: 16px;
  }
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 4% 10%, rgba(37, 99, 235, 0.16), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(124, 58, 237, 0.14), transparent 20%),
    radial-gradient(circle at 10% 82%, rgba(20, 184, 166, 0.14), transparent 20%),
    radial-gradient(circle at 92% 76%, rgba(249, 115, 22, 0.14), transparent 18%),
    linear-gradient(180deg, #f9fbff 0%, #eef5fb 46%, #f8fbfe 100%);
}

body[data-page="home"] .hero-home {
  padding-top: 28px;
}

@keyframes home-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes home-glow {
  0%, 100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

body[data-page="home"] .hero-master-banner {
  border: 1px solid rgba(95, 121, 255, 0.22);
  background:
    radial-gradient(circle at 16% 20%, rgba(37, 99, 235, 0.24), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.18), transparent 18%),
    radial-gradient(circle at 50% 58%, rgba(20, 184, 166, 0.16), transparent 20%),
    linear-gradient(140deg, rgba(7, 20, 46, 0.95) 0%, rgba(11, 31, 58, 0.92) 34%, rgba(23, 53, 109, 0.88) 70%, rgba(54, 32, 120, 0.9) 100%),
    url("assets/template-enhance/hero-texture.jpg") center / cover no-repeat;
}

body[data-page="home"] .hero-master-banner::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 68%);
  opacity: 0.7;
  pointer-events: none;
}

body[data-page="home"] .hero-master-wave {
  animation: home-glow 8s ease-in-out infinite;
}

body[data-page="home"] .hero-master-wave-center {
  animation-delay: 1.2s;
}

body[data-page="home"] .hero-master-wave-right {
  animation-delay: 2.4s;
}

body[data-page="home"] .hero-master-visual::before {
  content: "";
  position: absolute;
  inset: auto -2% 0 auto;
  width: min(100%, 520px);
  height: 100%;
  background: url("assets/template-enhance/hero-team.png") right bottom / contain no-repeat;
  filter: drop-shadow(0 24px 44px rgba(5, 11, 42, 0.34));
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

body[data-page="home"] .hero-master-visual::after {
  content: "";
  position: absolute;
  inset: 8% 10% 8% 20%;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at center, rgba(20, 184, 166, 0.14), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

body[data-page="home"] .hero-master-visual > * {
  z-index: 1;
}

body[data-page="home"] .hero-master-copy .eyebrow {
  color: rgba(207, 224, 255, 0.92);
}

body[data-page="home"] .hero-master-copy h1 {
  background: linear-gradient(135deg, #ffffff 0%, #99c5ff 32%, #7be1d6 58%, #ffc47c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

body[data-page="home"] .hero-master-copy .hero-text {
  color: rgba(241, 246, 255, 0.86);
}

body[data-page="home"] .hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
}

body[data-page="home"] .hero-highlights li {
  position: relative;
  min-height: 100%;
  padding: 16px 16px 16px 52px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(4, 8, 30, 0.18);
}

body[data-page="home"] .hero-highlights li::before {
  content: "✦";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.82rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

body[data-page="home"] .hero-actions .button-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  box-shadow: 0 18px 32px rgba(76, 73, 206, 0.3);
}

/* Current openings and application flow */
[hidden] {
  display: none !important;
}

.jobs-page,
.job-detail-page,
.job-not-found,
.application-thank-you-page {
  color: var(--navy);
}

.jobs-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding: clamp(38px, 6vw, 76px) 0 clamp(26px, 4vw, 44px);
  border-bottom: 1px solid rgba(11, 45, 104, 0.12);
}

.jobs-intro > div:first-child {
  max-width: 780px;
}

.jobs-intro h1,
.job-detail-hero h1,
.job-not-found h1,
.application-thank-you-panel h1 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.jobs-intro h1 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
}

.jobs-intro p:not(.eyebrow) {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.jobs-intro-stat {
  min-width: 148px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: #f3f7fb;
}

.jobs-intro-stat strong,
.jobs-intro-stat span {
  display: block;
}

.jobs-intro-stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.jobs-intro-stat span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.jobs-workspace {
  padding: clamp(26px, 4vw, 46px) 0 8px;
}

.jobs-toolbar {
  display: grid;
  grid-template-columns: minmax(250px, 1.6fr) repeat(3, minmax(160px, 0.7fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(11, 45, 104, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.06);
}

.jobs-toolbar label,
.job-application-panel label {
  display: grid;
  gap: 7px;
}

.jobs-toolbar label > span,
.job-application-panel label > span,
.job-file-field > span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.jobs-toolbar input,
.jobs-toolbar select,
.job-application-panel input,
.job-application-panel textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 45, 104, 0.16);
  border-radius: 6px;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.jobs-toolbar input,
.jobs-toolbar select,
.job-application-panel input {
  padding: 0 13px;
}

.job-application-panel textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.jobs-toolbar input:focus,
.jobs-toolbar select:focus,
.job-application-panel input:focus,
.job-application-panel textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.jobs-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px 12px;
}

.jobs-result-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.jobs-result-bar strong {
  color: var(--navy);
}

.job-clear-button {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.jobs-list {
  display: grid;
  border-top: 1px solid rgba(11, 45, 104, 0.13);
}

.job-listing-card {
  border-bottom: 1px solid rgba(11, 45, 104, 0.13);
  background: #ffffff;
}

.job-listing-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(420px, 1fr) 40px;
  align-items: center;
  gap: 28px;
  min-height: 184px;
  padding: 26px 10px;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, padding 180ms ease;
}

.job-listing-main:hover,
.job-listing-main:focus-visible {
  padding-inline: 18px;
  background: #f5f9fc;
  outline: none;
}

.job-listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.job-listing-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 4px;
  color: #1757c2;
  background: rgba(37, 99, 235, 0.06);
  font-size: 0.7rem;
  font-weight: 800;
}

.job-listing-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.job-listing-copy p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.job-listing-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 0;
}

.job-listing-facts div {
  min-width: 0;
}

.job-listing-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.job-listing-facts dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.job-listing-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--navy);
  font-size: 1.15rem;
  transition: transform 160ms ease, background 160ms ease;
}

.job-listing-main:hover .job-listing-arrow,
.job-listing-main:focus-visible .job-listing-arrow {
  transform: translateX(3px);
  background: var(--accent-strong);
}

.jobs-empty {
  padding: 68px 24px;
  text-align: center;
  border-top: 1px solid rgba(11, 45, 104, 0.13);
  border-bottom: 1px solid rgba(11, 45, 104, 0.13);
}

.jobs-empty h2 {
  margin: 0 0 8px;
}

.jobs-empty p {
  margin: 0;
  color: var(--muted);
}

.candidate-safety-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  margin: 30px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: #fff8e8;
}

.candidate-safety-note p {
  margin: 0;
  color: #5e4a1d;
  line-height: 1.6;
}

.job-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.job-breadcrumb a {
  color: var(--accent-strong);
  font-weight: 800;
}

.job-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  padding: clamp(30px, 5vw, 62px) 0;
  border-top: 1px solid rgba(11, 45, 104, 0.12);
}

.job-detail-hero > div {
  max-width: 830px;
}

.job-detail-hero h1 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.job-detail-summary {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.job-fact-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 45, 104, 0.14);
  border-bottom: 1px solid rgba(11, 45, 104, 0.14);
}

.job-fact-strip article {
  min-height: 108px;
  padding: 20px 18px;
  border-right: 1px solid rgba(11, 45, 104, 0.12);
}

.job-fact-strip article:last-child {
  border-right: 0;
}

.job-fact-strip span,
.job-fact-strip strong {
  display: block;
}

.job-fact-strip span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.job-fact-strip strong {
  line-height: 1.4;
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(38px, 6vw, 76px) 0;
}

.job-description {
  display: grid;
  gap: 40px;
}

.job-description section {
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(11, 45, 104, 0.12);
}

.job-section-number {
  margin: 0 0 7px;
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.job-description h2 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.job-description p:not(.job-section-number),
.job-description li {
  color: var(--muted);
  line-height: 1.75;
}

.job-description ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.job-qualification-note {
  display: grid;
  gap: 6px;
  padding: 18px 20px !important;
  border: 1px solid rgba(11, 45, 104, 0.12) !important;
  border-left: 3px solid var(--accent) !important;
  background: #f5f9fc;
}

.job-qualification-note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.job-application-panel {
  position: sticky;
  top: 22px;
  scroll-margin-top: 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(11, 45, 104, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.09);
}

.job-application-panel h2 {
  margin: 6px 0 5px;
  font-size: 1.8rem;
}

.job-application-role {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.job-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}

.job-form-span-2 {
  grid-column: 1 / -1;
}

.job-file-field {
  padding: 14px;
  border: 1px dashed rgba(11, 45, 104, 0.24);
  border-radius: 6px;
  background: #f7fafc;
}

.job-file-field input {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.job-file-field small,
.job-form-note {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.job-consent-field {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  margin: 18px 0;
}

.job-consent-field input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
}

.job-consent-field span {
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.job-consent-field a {
  color: var(--accent-strong);
  font-weight: 800;
}

.job-submit-button {
  width: 100%;
}

.job-form-note {
  margin: 12px 0 0;
  text-align: center;
}

.application-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.job-not-found {
  max-width: 760px;
  padding: clamp(70px, 12vw, 150px) 0;
}

.job-not-found h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.job-not-found > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: var(--muted);
}

.application-thank-you-page {
  display: grid;
  place-items: center;
  min-height: 68vh;
  padding: 40px 0;
}

.application-thank-you-panel {
  width: min(100%, 720px);
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(11, 45, 104, 0.13);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(11, 31, 58, 0.08);
}

.application-success-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #ffffff;
  background: #188977;
  font-size: 1.8rem;
  font-weight: 800;
}

.application-thank-you-panel h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.application-thank-you-panel > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.application-reference {
  display: grid;
  gap: 6px;
  margin: 25px 0;
  padding: 18px;
  border-left: 3px solid #188977;
  background: #edf8f4;
  text-align: left;
}

.application-reference span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.application-reference strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.application-thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1050px) {
  .jobs-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-listing-main {
    grid-template-columns: minmax(0, 1fr) 38px;
  }

  .job-listing-facts {
    grid-column: 1 / -1;
  }

  .job-listing-arrow {
    grid-column: 2;
    grid-row: 1;
  }

  .job-detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 30px;
  }
}

@media (max-width: 800px) {
  .jobs-intro,
  .job-detail-hero,
  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .jobs-intro-stat {
    width: min(100%, 200px);
  }

  .job-detail-hero {
    align-items: start;
  }

  .job-detail-hero .button {
    justify-self: start;
  }

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

  .job-fact-strip article:nth-child(even) {
    border-right: 0;
  }

  .job-fact-strip article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(11, 45, 104, 0.12);
  }

  .job-application-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .jobs-toolbar,
  .job-form-grid {
    grid-template-columns: 1fr;
  }

  .job-form-span-2 {
    grid-column: auto;
  }

  .job-listing-main {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 18px 12px;
    padding-block: 22px;
  }

  .job-listing-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .job-listing-arrow {
    width: 34px;
    height: 34px;
  }

  .candidate-safety-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .application-thank-you-actions {
    display: grid;
  }
}

body[data-page="home"] .hero-actions .button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(37, 99, 235, 0.1));
}

body[data-page="home"] .hero-actions .button-whatsapp {
  background: linear-gradient(135deg, #19c37d 0%, #12a150 100%);
}

body[data-page="home"] .hero-trust-line {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(124, 58, 237, 0.08));
}

body[data-page="home"] .hero-trust-badge {
  background: linear-gradient(135deg, #14b8a6 0%, #2563eb 52%, #7c3aed 100%);
}

body[data-page="home"] .hero-master-badge {
  background: linear-gradient(180deg, rgba(5, 10, 35, 0.84), rgba(12, 25, 66, 0.7));
  animation: home-float 7s ease-in-out infinite;
}

body[data-page="home"] .hero-master-badge-one {
  box-shadow: 0 22px 44px rgba(33, 78, 196, 0.22);
}

body[data-page="home"] .hero-master-badge-two {
  box-shadow: 0 22px 44px rgba(20, 184, 166, 0.18);
  animation-delay: 1.4s;
}

body[data-page="home"] .hero-master-badge-three {
  box-shadow: 0 22px 44px rgba(249, 115, 22, 0.18);
  animation-delay: 2.6s;
}

body[data-page="home"] .service-hero-banner {
  border: 1px solid rgba(94, 127, 218, 0.2);
}

body[data-page="home"] .service-hero-banner::before {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

body[data-page="home"] .service-hero-tag {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .recruitment-art,
body[data-page="home"] .staffing-art,
body[data-page="home"] .bgv-art {
  min-height: 184px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body[data-page="home"] .recruitment-art > span,
body[data-page="home"] .staffing-art > span,
body[data-page="home"] .bgv-art > span {
  display: none;
}

body[data-page="home"] .recruitment-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.16), rgba(8, 22, 54, 0.58)),
    url("assets/template-enhance/recruitment-photo.png") center / cover no-repeat;
}

body[data-page="home"] .staffing-art {
  background:
    linear-gradient(180deg, rgba(6, 31, 56, 0.12), rgba(6, 31, 56, 0.52)),
    url("assets/template-enhance/staffing-photo.png") center / cover no-repeat;
}

body[data-page="home"] .bgv-art {
  background:
    linear-gradient(180deg, rgba(10, 22, 58, 0.14), rgba(10, 22, 58, 0.56)),
    url("assets/template-enhance/bgv-photo.png") center / cover no-repeat;
}

body[data-page="home"] .client-logo-wall div {
  align-content: end;
  justify-items: start;
  min-height: 130px;
  padding: 60px 20px 18px;
  background-repeat: no-repeat;
  background-position: 20px 24px;
  background-size: auto 24px;
}

body[data-page="home"] .client-logo-wall div:nth-child(1) {
  background-image:
    url("assets/template-enhance/client-logo-1.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(2) {
  background-image:
    url("assets/template-enhance/client-logo-2.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(3) {
  background-image:
    url("assets/template-enhance/client-logo-3.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(4) {
  background-image:
    url("assets/template-enhance/client-logo-4.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(5) {
  background-image:
    url("assets/template-enhance/client-logo-5.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(6) {
  background-image:
    url("assets/template-enhance/client-logo-6.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(7) {
  background-image:
    url("assets/template-enhance/client-logo-7.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(8) {
  background-image:
    url("assets/template-enhance/client-logo-8.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .trust-marquee {
  padding: 18px 22px;
  border-color: rgba(73, 103, 189, 0.16);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(20, 48, 103, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(20, 184, 166, 0.08));
}

body[data-page="home"] .trust-marquee p {
  color: #ffcf8d;
}

body[data-page="home"] .trust-marquee span {
  position: relative;
  padding-left: 40px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .trust-marquee span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .metrics-band article {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 26px 24px 24px 24px;
  border-color: rgba(67, 93, 164, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.05));
}

body[data-page="home"] .metrics-band article::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

body[data-page="home"] .metrics-band article:nth-child(1)::after {
  content: "RC";
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

body[data-page="home"] .metrics-band article:nth-child(2)::after {
  content: "ST";
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

body[data-page="home"] .metrics-band article:nth-child(3)::after {
  content: "BGV";
  background: linear-gradient(135deg, #f97316, #7c3aed);
}

body[data-page="home"] .alliance-proof-section,
body[data-page="home"] .client-trust-section,
body[data-page="home"] .feature-layout,
body[data-page="home"] .process-section,
body[data-page="home"] .recognition-section {
  position: relative;
  padding: 42px 24px;
  border-radius: 34px;
  overflow: hidden;
}

body[data-page="home"] .alliance-proof-section::before,
body[data-page="home"] .client-trust-section::before,
body[data-page="home"] .feature-layout::before,
body[data-page="home"] .process-section::before,
body[data-page="home"] .recognition-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-page="home"] .alliance-proof-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.82)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.05));
}

body[data-page="home"] .alliance-proof-section::before {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.14), transparent 22%),
    radial-gradient(circle at left bottom, rgba(20, 184, 166, 0.12), transparent 20%);
}

body[data-page="home"] .client-trust-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 250, 249, 0.84)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .client-trust-section::before {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.14), transparent 20%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.12), transparent 18%);
}

body[data-page="home"] .feature-layout {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 246, 255, 0.84)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(20, 184, 166, 0.03));
}

body[data-page="home"] .feature-layout::before {
  background:
    radial-gradient(circle at right top, rgba(124, 58, 237, 0.16), transparent 22%),
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.1), transparent 22%);
}

body[data-page="home"] .process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 255, 0.84)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(249, 115, 22, 0.03));
}

body[data-page="home"] .process-section::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.14), transparent 18%),
    radial-gradient(circle at 90% 82%, rgba(249, 115, 22, 0.12), transparent 16%);
}

body[data-page="home"] .recognition-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 243, 0.84)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(124, 58, 237, 0.03));
}

body[data-page="home"] .recognition-section::before {
  background:
    radial-gradient(circle at right top, rgba(249, 115, 22, 0.16), transparent 22%),
    radial-gradient(circle at left bottom, rgba(124, 58, 237, 0.1), transparent 20%);
}

body[data-page="home"] .global-presence-section,
body[data-page="home"] .services-overview-section,
body[data-page="home"] .case-study-section,
body[data-page="home"] .testimonial-proof-section,
body[data-page="home"] .industries-support-section,
body[data-page="home"] .support-band-section,
body[data-page="home"] .top-insights-section {
  position: relative;
  padding: 42px 24px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
}

body[data-page="home"] .global-presence-section::before,
body[data-page="home"] .services-overview-section::before,
body[data-page="home"] .case-study-section::before,
body[data-page="home"] .testimonial-proof-section::before,
body[data-page="home"] .industries-support-section::before,
body[data-page="home"] .support-band-section::before,
body[data-page="home"] .top-insights-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-page="home"] .global-presence-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.86)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .global-presence-section::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.16), transparent 18%),
    radial-gradient(circle at 88% 76%, rgba(20, 184, 166, 0.12), transparent 18%);
}

body[data-page="home"] .services-overview-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 255, 0.88)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .services-overview-section::before {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 22%),
    radial-gradient(circle at left center, rgba(249, 115, 22, 0.12), transparent 18%);
}

body[data-page="home"] .case-study-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 250, 0.88)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .case-study-section::before {
  background:
    radial-gradient(circle at 16% 24%, rgba(20, 184, 166, 0.18), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(124, 58, 237, 0.12), transparent 18%);
}

body[data-page="home"] .testimonial-proof-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 255, 0.88)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .testimonial-proof-section::before {
  background:
    radial-gradient(circle at 90% 20%, rgba(124, 58, 237, 0.18), transparent 20%),
    radial-gradient(circle at 12% 80%, rgba(249, 115, 22, 0.14), transparent 18%);
}

body[data-page="home"] .industries-support-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.78)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.05));
}

body[data-page="home"] .industries-support-section::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 99, 235, 0.14), transparent 18%),
    radial-gradient(circle at 82% 80%, rgba(124, 58, 237, 0.12), transparent 18%);
}

body[data-page="home"] .support-band-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 240, 0.82)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(20, 184, 166, 0.03));
}

body[data-page="home"] .support-band-section::before {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 22%),
    radial-gradient(circle at left center, rgba(20, 184, 166, 0.1), transparent 20%);
}

body[data-page="home"] .top-insights-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.86)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.05));
}

body[data-page="home"] .top-insights-section::before {
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.16), transparent 20%),
    radial-gradient(circle at 10% 74%, rgba(20, 184, 166, 0.12), transparent 18%);
}

body[data-page="home"] .section {
  position: relative;
}

body[data-page="home"] .section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.16), rgba(20, 184, 166, 0.2), transparent);
}

body[data-page="home"] .section-heading {
  position: relative;
  padding-left: 24px;
}

body[data-page="home"] .section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: calc(100% - 12px);
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb 0%, #14b8a6 48%, #f97316 100%);
}

body[data-page="home"] .section-heading h2 {
  background: linear-gradient(135deg, #0b1f3a 0%, #1d4499 36%, #0c8f9d 68%, #5124b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-page="home"] .global-presence-section .section-heading::after,
body[data-page="home"] .services-overview-section .section-heading::after,
body[data-page="home"] .case-study-section .section-heading::after,
body[data-page="home"] .testimonial-proof-section .section-heading::after,
body[data-page="home"] .top-insights-section .section-heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 72px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(243, 247, 255, 0.78)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.05));
  box-shadow: 0 18px 32px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .alpha-stat-card,
body[data-page="home"] .recognition-card,
body[data-page="home"] .service-card,
body[data-page="home"] .feature-panel,
body[data-page="home"] .content-card,
body[data-page="home"] .timeline-item {
  overflow: hidden;
  border-color: rgba(74, 104, 183, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="home"] .alpha-stat-card:hover,
body[data-page="home"] .recognition-card:hover,
body[data-page="home"] .service-card:hover,
body[data-page="home"] .feature-panel:hover,
body[data-page="home"] .content-card:hover,
body[data-page="home"] .timeline-item:hover,
body[data-page="home"] .blog-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 104, 183, 0.24);
  box-shadow: 0 28px 56px rgba(11, 31, 58, 0.12);
}

body[data-page="home"] .alpha-stat-card::after,
body[data-page="home"] .recognition-card::after,
body[data-page="home"] .service-card::after,
body[data-page="home"] .feature-panel::after,
body[data-page="home"] .content-card::after,
body[data-page="home"] .timeline-item::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

body[data-page="home"] .alpha-stat-card strong,
body[data-page="home"] .recognition-card strong {
  font-size: 1.48rem;
  background: linear-gradient(135deg, #0b1f3a 0%, #2563eb 44%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-page="home"] .alpha-stat-card {
  padding-top: 76px;
}

body[data-page="home"] .alpha-stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #14b8a6, #7c3aed);
}

body[data-page="home"] .alpha-stat-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .alpha-stat-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 252, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .alpha-stat-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.92)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .alpha-stat-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.92)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .alpha-stat-card:nth-child(1)::after,
body[data-page="home"] .alpha-stat-card:nth-child(2)::after,
body[data-page="home"] .alpha-stat-card:nth-child(3)::after,
body[data-page="home"] .alpha-stat-card:nth-child(4)::after {
  width: 58px;
  height: 58px;
  left: 24px;
  top: 18px;
  right: auto;
  bottom: auto;
  border-radius: 18px;
  background: none;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

body[data-page="home"] .alpha-stat-card:nth-child(1)::after { content: "3X"; background: linear-gradient(135deg, #2563eb, #7c3aed); }
body[data-page="home"] .alpha-stat-card:nth-child(2)::after { content: "IN"; background: linear-gradient(135deg, #14b8a6, #2563eb); }
body[data-page="home"] .alpha-stat-card:nth-child(3)::after { content: "E2E"; background: linear-gradient(135deg, #7c3aed, #2563eb); }
body[data-page="home"] .alpha-stat-card:nth-child(4)::after { content: "FX"; background: linear-gradient(135deg, #f97316, #7c3aed); }

body[data-page="home"] .client-logo-wall div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body[data-page="home"] .client-logo-wall div:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(13, 32, 68, 0.14);
}

body[data-page="home"] .client-logo-wall div::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #14b8a6, #f97316);
}

body[data-page="home"] .client-logo-wall div::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 24px rgba(11, 31, 58, 0.12);
}

body[data-page="home"] .client-logo-wall div:nth-child(1)::after { content: "IT"; background: linear-gradient(135deg, #2563eb, #7c3aed); }
body[data-page="home"] .client-logo-wall div:nth-child(2)::after { content: "TEL"; background: linear-gradient(135deg, #14b8a6, #2563eb); }
body[data-page="home"] .client-logo-wall div:nth-child(3)::after { content: "RTL"; background: linear-gradient(135deg, #f97316, #7c3aed); }
body[data-page="home"] .client-logo-wall div:nth-child(4)::after { content: "HC"; background: linear-gradient(135deg, #7c3aed, #2563eb); }
body[data-page="home"] .client-logo-wall div:nth-child(5)::after { content: "LOG"; background: linear-gradient(135deg, #2563eb, #14b8a6); }
body[data-page="home"] .client-logo-wall div:nth-child(6)::after { content: "MFG"; background: linear-gradient(135deg, #14b8a6, #0b1f3a); }
body[data-page="home"] .client-logo-wall div:nth-child(7)::after { content: "BFSI"; background: linear-gradient(135deg, #7c3aed, #0b1f3a); }
body[data-page="home"] .client-logo-wall div:nth-child(8)::after { content: "OPS"; background: linear-gradient(135deg, #f97316, #2563eb); }

body[data-page="home"] .client-logo-wall div:nth-child(odd) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(1) {
  background:
    url("assets/template-enhance/client-logo-1.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(2) {
  background:
    url("assets/template-enhance/client-logo-2.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(3) {
  background:
    url("assets/template-enhance/client-logo-3.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(4) {
  background:
    url("assets/template-enhance/client-logo-4.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(5) {
  background:
    url("assets/template-enhance/client-logo-5.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(6) {
  background:
    url("assets/template-enhance/client-logo-6.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(7) {
  background:
    url("assets/template-enhance/client-logo-7.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .client-logo-wall div:nth-child(8) {
  background:
    url("assets/template-enhance/client-logo-8.png") 20px 24px / auto 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 250, 0.92)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.03));
}

body[data-page="home"] .service-card h3 {
  position: relative;
  padding-left: 42px;
}

body[data-page="home"] .service-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 12px 20px rgba(37, 99, 235, 0.16);
}

body[data-page="home"] .service-card:nth-child(2) h3::before {
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

body[data-page="home"] .service-card:nth-child(3) h3::before {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

body[data-page="home"] .service-card:nth-child(4) h3::before {
  background: linear-gradient(135deg, #f97316, #7c3aed);
}

body[data-page="home"] .service-card h3::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

body[data-page="home"] .service-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 251, 249, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.07), rgba(37, 99, 235, 0.03));
}

body[data-page="home"] .service-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(37, 99, 235, 0.03));
}

body[data-page="home"] .service-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 240, 0.94)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .service-index {
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 14px 24px rgba(58, 91, 206, 0.22);
}

body[data-page="home"] .service-card:nth-child(2) .service-index {
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

body[data-page="home"] .service-card:nth-child(3) .service-index {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

body[data-page="home"] .service-card:nth-child(4) .service-index {
  background: linear-gradient(135deg, #f97316, #7c3aed);
}

body[data-page="home"] .service-card ul li,
body[data-page="home"] .support-outcomes-list li {
  position: relative;
  list-style: none;
}

body[data-page="home"] .service-card ul li::before,
body[data-page="home"] .support-outcomes-list li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

body[data-page="home"] .global-presence-section .service-grid,
body[data-page="home"] .services-overview-section .service-grid,
body[data-page="home"] .testimonial-proof-section .feature-grid,
body[data-page="home"] .top-insights-section .blog-post-list {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .global-presence-section .service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .global-presence-section .service-card h3::before {
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

body[data-page="home"] .global-presence-section .service-card .text-link {
  color: #0b4bb8;
}

body[data-page="home"] .section-cta-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 22px;
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(74, 104, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 255, 0.84)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.04));
  box-shadow: 0 24px 48px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .section-cta-copy {
  margin: 0;
  max-width: 700px;
  color: #355071;
  font-weight: 600;
  line-height: 1.65;
}

body[data-page="home"] .section-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body[data-page="home"] .section-cta-strip .button-secondary {
  color: #0b1f3a;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.9));
}

body[data-page="home"] .services-overview-section .section-cta-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 255, 0.86)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .process-section .section-cta-strip,
body[data-page="home"] .global-presence-section .section-cta-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.86)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .section-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

body[data-page="home"] .section-mini-stat {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(74, 104, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.05));
  box-shadow: 0 22px 44px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .section-mini-stat:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 249, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .section-mini-stat:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .section-mini-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #0b1f3a 0%, #2563eb 42%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-page="home"] .section-mini-stat span {
  color: #4f647e;
  line-height: 1.6;
}

body[data-page="home"] .proof-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body[data-page="home"] .proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(74, 104, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.04));
  color: #274568;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .proof-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

body[data-page="home"] .content-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .two-column-section .content-card {
  padding-top: 72px;
}

body[data-page="home"] .two-column-section .content-card::before {
  height: 4px;
  background: linear-gradient(90deg, #14b8a6, #2563eb, #7c3aed);
}

body[data-page="home"] .two-column-section .content-card::after {
  left: 24px;
  top: 18px;
  right: auto;
  bottom: auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(37, 99, 235, 0.2));
}

body[data-page="home"] .case-study-section .content-card {
  box-shadow: 0 26px 54px rgba(15, 36, 78, 0.1);
}

body[data-page="home"] .case-study-section .content-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .case-study-section .content-card .button-secondary {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(29, 68, 153, 0.96));
  border-color: transparent;
  color: #ffffff;
}

body[data-page="home"] .case-study-section .content-card .button-secondary:hover {
  background: linear-gradient(135deg, rgba(29, 68, 153, 0.96), rgba(81, 36, 178, 0.96));
}

body[data-page="home"] .feature-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .feature-panel:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 248, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.06), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .feature-panel:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .feature-panel h3 {
  position: relative;
  padding-left: 38px;
}

body[data-page="home"] .feature-panel h3::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.86rem;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

body[data-page="home"] .testimonial-proof-section .feature-panel {
  box-shadow: 0 26px 54px rgba(17, 34, 72, 0.08);
}

body[data-page="home"] .testimonial-proof-section .feature-panel::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.12);
}

body[data-page="home"] .testimonial-proof-section .feature-panel:nth-child(2)::before {
  color: rgba(20, 184, 166, 0.14);
}

body[data-page="home"] .testimonial-proof-section .feature-panel:nth-child(3)::before {
  color: rgba(124, 58, 237, 0.14);
}

body[data-page="home"] .two-column-section .content-card {
  min-height: 100%;
}

body[data-page="home"] .split-card {
  overflow: hidden;
}

body[data-page="home"] .split-card-dark {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.22), transparent 26%),
    linear-gradient(135deg, #091a32 0%, #0b1f3a 38%, #19418e 100%);
}

body[data-page="home"] .split-card-light {
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 252, 0.92));
}

body[data-page="home"] .industries-support-section .split-card,
body[data-page="home"] .support-band-section .split-card {
  border: 1px solid rgba(74, 104, 183, 0.12);
  box-shadow: 0 28px 56px rgba(11, 31, 58, 0.1);
}

body[data-page="home"] .industries-support-section .split-card-light,
body[data-page="home"] .support-band-section .split-card-light {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.92));
}

body[data-page="home"] .timeline {
  position: relative;
}

body[data-page="home"] .timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #14b8a6, #f97316);
  opacity: 0.28;
}

body[data-page="home"] .timeline-item {
  padding-top: 88px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .timeline-item span {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 66px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 14px 24px rgba(58, 91, 206, 0.18);
}

body[data-page="home"] .timeline-item:nth-child(2) span {
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

body[data-page="home"] .timeline-item:nth-child(3) span {
  background: linear-gradient(135deg, #f97316, #7c3aed);
}

body[data-page="home"] .support-outcomes-list {
  padding-left: 22px;
}

body[data-page="home"] .recognition-card {
  padding-top: 78px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .recognition-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 251, 249, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.07), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .recognition-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .recognition-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 240, 0.94)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .recognition-card:nth-child(1)::before,
body[data-page="home"] .recognition-card:nth-child(2)::before,
body[data-page="home"] .recognition-card:nth-child(3)::before,
body[data-page="home"] .recognition-card:nth-child(4)::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  opacity: 1;
}

body[data-page="home"] .recognition-card:nth-child(1)::before { background: linear-gradient(135deg, #2563eb, #7c3aed); }
body[data-page="home"] .recognition-card:nth-child(2)::before { background: linear-gradient(135deg, #14b8a6, #2563eb); }
body[data-page="home"] .recognition-card:nth-child(3)::before { background: linear-gradient(135deg, #7c3aed, #2563eb); }
body[data-page="home"] .recognition-card:nth-child(4)::before { background: linear-gradient(135deg, #f97316, #7c3aed); }

body[data-page="home"] .blog-post-card {
  overflow: hidden;
  border-color: rgba(74, 104, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .top-insights-section .blog-post-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 249, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.07), rgba(37, 99, 235, 0.03));
}

body[data-page="home"] .top-insights-section .blog-post-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(249, 115, 22, 0.03));
}

body[data-page="home"] .top-insights-section .brochure-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body[data-page="home"] .blog-post-category {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

body[data-page="home"] .blog-post-thumb {
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .blog-post-thumb::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

body[data-page="home"] .cta-card {
  overflow: hidden;
  border: 1px solid rgba(95, 121, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 24%),
    radial-gradient(circle at left center, rgba(20, 184, 166, 0.16), transparent 22%),
    linear-gradient(135deg, #091a32 0%, #0b1f3a 44%, #19418e 100%);
}

body[data-page="home"] .cta-card h2,
body[data-page="home"] .cta-card p,
body[data-page="home"] .cta-card .eyebrow {
  color: #ffffff;
}

body[data-page="home"] .cta-card .button-primary {
  background: linear-gradient(135deg, #f97316, #7c3aed);
}

body[data-page="home"] .brochure-actions .button-secondary {
  color: #0b1f3a;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.92));
}

body[data-page="home"] .homepage-faq-section {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .homepage-faq-section::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(124, 58, 237, 0.08) 48%, rgba(255, 255, 255, 0) 74%);
  pointer-events: none;
}

body[data-page="home"] .homepage-faq-section .section-heading {
  max-width: 76rem;
}

body[data-page="home"] .homepage-faq-section .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height: 1.08;
}

body[data-page="home"] .homepage-faq-section .proof-chip-row {
  margin-bottom: 1.4rem;
}

body[data-page="home"] .home-faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

body[data-page="home"] .home-faq-item {
  position: relative;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 253, 0.95)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(20, 184, 166, 0.03));
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.06);
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

body[data-page="home"] .home-faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #2563eb 0%, #14b8a6 52%, #7c3aed 100%);
  opacity: 0.9;
}

body[data-page="home"] .home-faq-item[open] {
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.09);
  transform: translateY(-1px);
}

body[data-page="home"] .home-faq-item:hover {
  border-color: rgba(20, 184, 166, 0.14);
}

body[data-page="home"] .home-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem 1.25rem 1.6rem;
  cursor: pointer;
  list-style: none;
  color: #11284d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

body[data-page="home"] .home-faq-item summary::-webkit-details-marker {
  display: none;
}

body[data-page="home"] .home-faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 1.2rem;
  font-weight: 700;
}

body[data-page="home"] .home-faq-item[open] summary::after {
  content: "−";
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
}

body[data-page="home"] .home-faq-answer {
  padding: 0 1.4rem 1.4rem 1.6rem;
}

body[data-page="home"] .home-faq-answer p {
  margin: 0;
  max-width: 72rem;
  color: #51637d;
  font-size: 0.99rem;
  line-height: 1.82;
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-highlights {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .timeline::before {
    display: none;
  }

  body[data-page="home"] .global-presence-section,
  body[data-page="home"] .services-overview-section,
  body[data-page="home"] .case-study-section,
  body[data-page="home"] .testimonial-proof-section,
  body[data-page="home"] .industries-support-section,
  body[data-page="home"] .support-band-section,
  body[data-page="home"] .top-insights-section {
    padding: 36px 20px;
  }

  body[data-page="home"] .section-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="home"] .section-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .section-heading {
    padding-left: 18px;
  }

  body[data-page="home"] .section-heading::before {
    width: 6px;
  }

  body[data-page="home"] .global-presence-section .section-heading::after,
  body[data-page="home"] .services-overview-section .section-heading::after,
  body[data-page="home"] .case-study-section .section-heading::after,
  body[data-page="home"] .testimonial-proof-section .section-heading::after,
  body[data-page="home"] .top-insights-section .section-heading::after {
    display: none;
  }

  .hero-trust-line {
    flex-wrap: wrap;
  }

  body[data-page="home"] .alpha-stat-card,
  body[data-page="home"] .recognition-card,
  body[data-page="home"] .timeline-item {
    padding-top: 72px;
  }

  body[data-page="home"] .timeline-item span,
  body[data-page="home"] .alpha-stat-card:nth-child(1)::after,
  body[data-page="home"] .alpha-stat-card:nth-child(2)::after,
  body[data-page="home"] .alpha-stat-card:nth-child(3)::after,
  body[data-page="home"] .alpha-stat-card:nth-child(4)::after,
  body[data-page="home"] .recognition-card:nth-child(1)::before,
  body[data-page="home"] .recognition-card:nth-child(2)::before,
  body[data-page="home"] .recognition-card:nth-child(3)::before,
  body[data-page="home"] .recognition-card:nth-child(4)::before {
    left: 20px;
  }

  body[data-page="home"] .section-cta-actions,
  body[data-page="home"] .top-insights-section .brochure-actions {
    width: 100%;
  }

  body[data-page="home"] .section-cta-actions .button,
  body[data-page="home"] .top-insights-section .brochure-actions .button {
    width: 100%;
  }

  body[data-page="home"] .proof-chip-row {
    gap: 10px;
  }

  body[data-page="home"] .home-faq-item summary {
    font-size: 0.96rem;
    padding: 1.1rem 1.1rem 1.1rem 1.3rem;
  }

  body[data-page="home"] .home-faq-answer {
    padding: 0 1.1rem 1.15rem 1.3rem;
  }
}

/* User Photo Integration */
body[data-page="home"] .hero-master-visual::before {
  inset: 4% 4% 6% 14%;
  width: auto;
  height: auto;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(7, 18, 43, 0.12), rgba(7, 18, 43, 0.42)),
    url("assets/optimized/coaching-laptop-meeting.jpg") center / cover no-repeat;
  box-shadow: 0 28px 54px rgba(5, 11, 42, 0.34);
  filter: none;
  opacity: 1;
}

body[data-page="home"] .hero-master-visual::after {
  inset: 8% 10% 8% 18%;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at center, rgba(20, 184, 166, 0.12), transparent 60%);
}

body[data-page="home"] .recruitment-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.1), rgba(8, 22, 54, 0.54)),
    url("assets/optimized/corporate-workers-brainstorming-together.jpg") center / cover no-repeat;
}

body[data-page="home"] .staffing-art {
  background:
    linear-gradient(180deg, rgba(6, 31, 56, 0.1), rgba(6, 31, 56, 0.54)),
    url("assets/optimized/meeting-table-networking-sharing-concept.jpg") center / cover no-repeat;
}

body[data-page="home"] .bgv-art {
  background:
    linear-gradient(180deg, rgba(10, 22, 58, 0.14), rgba(10, 22, 58, 0.58)),
    url("assets/optimized/employees-meeting-room-office.jpg") center / cover no-repeat;
}

.about-visual-card {
  background:
    linear-gradient(180deg, rgba(7, 20, 46, 0.42), rgba(7, 20, 46, 0.82)),
    url("assets/optimized/south-asian-tablet-team.jpg") center / cover no-repeat;
}

.consultancy-hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 247, 255, 0.94)),
    linear-gradient(0deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.08)),
    url("assets/optimized/corporate-workers-brainstorming-together.jpg") center / cover no-repeat;
}

.ai-hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 245, 255, 0.94)),
    linear-gradient(0deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.08)),
    url("assets/optimized/ai-images.jpg") center / cover no-repeat;
}

.rpo-hero-panel {
  background:
    linear-gradient(180deg, rgba(11, 45, 104, 0.84), rgba(19, 118, 216, 0.74)),
    url("assets/optimized/meeting-table-networking-sharing-concept.jpg") center / cover no-repeat;
}

.bgv-hero-panel {
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.92), rgba(19, 118, 216, 0.82)),
    url("assets/optimized/employees-meeting-room-office.jpg") center / cover no-repeat;
}

.consultancy-pillar-grid article,
.ai-signal-grid article,
.ai-metric-grid article,
.bgv-proof-grid article,
.rpo-hero-stat,
.rpo-signal-grid article {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body[data-page="staffing"] .page-hero,
body[data-page="value-staffing"] .page-hero,
body[data-page="it-staffing"] .page-hero,
body[data-page="staff-augmentation"] .page-hero {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 246, 255, 0.92)),
    linear-gradient(0deg, rgba(11, 31, 58, 0.06), rgba(11, 31, 58, 0.06)),
    url("assets/optimized/meeting-table-networking-sharing-concept.jpg") center / cover no-repeat;
}

body[data-page="industries"] .page-hero,
body[data-page="industry-it"] .page-hero,
body[data-page="industry-telecom"] .page-hero,
body[data-page="industry-logistics"] .page-hero,
body[data-page="industry-healthcare"] .page-hero,
body[data-page="industry-gcc"] .page-hero {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 246, 255, 0.92)),
    linear-gradient(0deg, rgba(11, 31, 58, 0.06), rgba(11, 31, 58, 0.06)),
    url("assets/optimized/university-students-teamwork-technology-concept.jpg") center / cover no-repeat;
}

body[data-page="job-seekers"] .page-hero {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 246, 255, 0.92)),
    linear-gradient(0deg, rgba(11, 31, 58, 0.06), rgba(11, 31, 58, 0.06)),
    url("assets/optimized/university-student-discussion.jpg") center / cover no-repeat;
}

.blog-thumb-recruitment {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 58, 0.08), rgba(8, 24, 58, 0.46)),
    url("assets/optimized/corporate-workers-brainstorming-together.jpg");
}

.blog-thumb-executive {
  background-image:
    linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)),
    url("assets/optimized/team-thank-you.jpg");
}

.blog-thumb-rpo {
  background-image:
    linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)),
    url("assets/optimized/meeting-table-networking-sharing-concept.jpg");
}

.blog-thumb-staffing {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 58, 0.08), rgba(8, 24, 58, 0.46)),
    url("assets/optimized/employees-meeting-room-office.jpg");
}

.blog-thumb-it {
  background-image:
    linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)),
    url("assets/optimized/diverse-devices-team.jpg");
}

.blog-thumb-bgv {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 58, 0.08), rgba(8, 24, 58, 0.46)),
    url("assets/optimized/coaching-laptop-meeting.jpg");
}

.blog-thumb-ai {
  background-image:
    linear-gradient(180deg, rgba(9, 22, 56, 0.12), rgba(9, 22, 56, 0.52)),
    url("assets/optimized/ai-images.jpg");
}

.blog-thumb-industry {
  background-image:
    linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)),
    url("assets/optimized/university-student-discussion.jpg");
}

.blog-thumb-telecom {
  background-image:
    linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)),
    url("assets/optimized/university-students-teamwork-technology-concept.jpg");
}

.blog-thumb-healthcare {
  background-image:
    linear-gradient(180deg, rgba(9, 22, 56, 0.08), rgba(9, 22, 56, 0.46)),
    url("assets/optimized/south-asian-tablet-team.jpg");
}

.testimonial-thumb-blue {
  background-image:
    linear-gradient(180deg, rgba(10, 22, 58, 0.12), rgba(10, 22, 58, 0.58)),
    url("assets/optimized/team-thank-you.jpg");
}

.testimonial-thumb-gold {
  background-image:
    linear-gradient(180deg, rgba(10, 22, 58, 0.12), rgba(10, 22, 58, 0.58)),
    url("assets/optimized/south-asian-tablet-team.jpg");
}

.testimonial-thumb-dark {
  background-image:
    linear-gradient(180deg, rgba(10, 22, 58, 0.12), rgba(10, 22, 58, 0.58)),
    url("assets/optimized/diverse-devices-team.jpg");
}

.support-video-screen {
  background:
    linear-gradient(180deg, rgba(10, 22, 58, 0.14), rgba(10, 22, 58, 0.54)),
    url("assets/optimized/south-asian-tablet-team.jpg") center / cover no-repeat;
}

@media print {
  body {
    background: #ffffff;
  }

  body::before,
  .site-header,
  .nav-toggle,
  .hero-lines,
  .hero-glow-one,
  .hero-glow-two {
    display: none !important;
  }

  .page-shell,
  .brochure-shell {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .brochure-page,
  .brochure-deck {
    gap: 12px;
  }

  .content-card,
  .brochure-cover,
  .brochure-contact,
  .brochure-metrics article,
  .brochure-card,
  .footer-mega {
    break-inside: avoid;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  a {
    color: #000000;
    text-decoration: none;
  }
}

/* Footer and popup refinement */
.site-footer {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 54px 0 14px;
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 184, 166, 0.18), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(124, 58, 237, 0.2), transparent 22%),
    linear-gradient(180deg, #081224 0%, #0b1730 58%, #09101f 100%);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
}

.site-footer::before {
  width: 240px;
  height: 240px;
  left: -60px;
  bottom: 92px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
}

.site-footer::after {
  width: 280px;
  height: 280px;
  right: -120px;
  top: 30px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 72%);
}

.footer-mega {
  position: relative;
  z-index: 1;
  gap: 28px;
  width: calc(100% - (var(--page-gutter) * 2));
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-top-band {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-block {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-brand-block .eyebrow,
.footer-highlight-panel .eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand-block h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 0.98;
  color: #ffffff;
}

.footer-brand-copy {
  max-width: 62ch;
  color: rgba(230, 237, 246, 0.82);
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-contact-chip-static {
  color: rgba(238, 242, 248, 0.8);
}

.footer-contact-chip:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-cta-row {
  gap: 12px;
  margin-top: 2px;
}

.footer-cta-row a {
  min-height: 46px;
  padding: 0 18px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.footer-cta-row a:first-child {
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  border-color: transparent;
}

.footer-cta-row a:hover {
  transform: translateY(-2px);
}

.footer-highlight-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.28), transparent 24%),
    radial-gradient(circle at left bottom, rgba(249, 115, 22, 0.22), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(3, 8, 21, 0.24);
}

.footer-highlight-panel h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
  color: #ffffff;
}

.footer-highlight-panel p {
  color: rgba(232, 237, 244, 0.82);
}

.footer-service-tags,
.lead-popup-signal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-service-tags span,
.lead-popup-signal-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-row a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-social-row a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.footer-social-row img {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding-top: 2px;
}

.footer-mini-actions a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-mini-actions a:hover,
.footer-links-grid a:hover,
.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-links-grid {
  grid-template-columns: repeat(6, minmax(118px, 1fr));
  gap: 22px clamp(14px, 2vw, 28px);
}

.footer-links-grid h3 {
  margin-bottom: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.footer-links-grid a {
  margin-bottom: 9px;
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(230, 237, 246, 0.7);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links-grid a:hover {
  transform: translateX(2px);
}

.footer-bottom-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 16px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-line p {
  color: rgba(230, 237, 246, 0.72);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-bottom-links a {
  color: rgba(230, 237, 246, 0.72);
  font-size: 0.92rem;
  text-decoration: none;
}

.lead-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 10, 22, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lead-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.popup-open {
  overflow: hidden;
}

.lead-popup-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  width: min(1020px, calc(100vw - 48px));
  max-height: min(86vh, 820px);
  overflow: auto;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(6, 12, 28, 0.32);
}

.lead-popup-panel {
  padding: clamp(22px, 3vw, 34px);
}

.lead-popup-story {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.24), transparent 22%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.24), transparent 24%),
    linear-gradient(180deg, #0b1f3a 0%, #101d44 52%, #172554 100%);
  color: #ffffff;
}

.lead-popup-story::before {
  content: "";
  position: absolute;
  inset: auto auto 20px 26px;
  width: 160px;
  height: 160px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.06));
  transform: rotate(-12deg);
  pointer-events: none;
}

.lead-popup-story > * {
  position: relative;
  z-index: 1;
}

.lead-popup-story .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.lead-popup-story h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  color: #ffffff;
}

.lead-popup-copy {
  max-width: 42ch;
  color: rgba(237, 241, 247, 0.82);
  line-height: 1.72;
}

.lead-popup-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lead-popup-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(241, 245, 252, 0.86);
  line-height: 1.55;
}

.lead-popup-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

.lead-popup-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.lead-popup-quick-links a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.lead-popup-form-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.lead-popup-kicker {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.lead-popup-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-popup-audience label {
  position: relative;
  cursor: pointer;
}

.lead-popup-audience input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.lead-popup-audience span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: #f4f8ff;
  color: #0b1f3a;
  font-size: 0.9rem;
  font-weight: 600;
}

.lead-popup-audience input:checked + span {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.16));
  border-color: rgba(37, 99, 235, 0.3);
  color: #123274;
}

.lead-popup-form {
  display: grid;
  gap: 18px;
}

.lead-popup-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-popup-form label {
  display: grid;
  gap: 8px;
}

.lead-popup-form label span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1f3a;
}

.lead-popup-form input,
.lead-popup-form select,
.lead-popup-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 16px;
  padding: 13px 14px;
  background: #f8fbff;
  color: #0b1f3a;
  font: inherit;
}

.lead-popup-form textarea {
  resize: vertical;
  min-height: 120px;
}

.lead-popup-form-span-2 {
  grid-column: 1 / -1;
}

.lead-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-popup-actions .button {
  min-height: 48px;
}

.lead-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(11, 31, 58, 0.08);
  color: #0b1f3a;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.lead-popup-close:hover {
  transform: scale(1.04);
  background: rgba(11, 31, 58, 0.14);
}

@media (max-width: 1180px) {
  .footer-top-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .lead-popup-shell {
    grid-template-columns: 1fr;
    max-height: min(90vh, 920px);
  }

  .lead-popup-story h2,
  .footer-brand-block h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-list,
  .footer-bottom-line,
  .footer-bottom-links {
    justify-content: flex-start;
  }

  .lead-popup-overlay {
    padding: 14px;
  }

  .lead-popup-shell {
    width: calc(100vw - 20px);
    border-radius: 24px;
  }

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

  .lead-popup-form-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-chip,
  .footer-cta-row a {
    width: 100%;
    justify-content: center;
  }

  .lead-popup-actions .button,
  .lead-popup-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Chandigarh-Mohali Tricity location page */
body[data-page="location-mohali"] main {
  gap: 0;
}

body[data-page="location-mohali"] .section {
  width: 100%;
}

.tricity-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: min(760px, calc(100vh - 110px));
  padding-top: clamp(34px, 6vw, 84px);
  padding-bottom: clamp(44px, 7vw, 92px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.tricity-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.tricity-hero h1 {
  max-width: 14ch;
  margin: 0 0 22px;
  font-size: clamp(2.65rem, 5.3vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.tricity-hero .hero-text {
  max-width: 60ch;
  color: var(--ink-700);
}

.tricity-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.tricity-hero-proof span {
  position: relative;
  padding-left: 19px;
}

.tricity-hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #12a594;
  box-shadow: 0 0 0 4px rgba(18, 165, 148, 0.12);
}

.tricity-hero-media {
  position: relative;
  min-width: 0;
  height: clamp(440px, 56vw, 680px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #10264c;
}

.tricity-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 20, 43, 0.8) 100%);
}

.tricity-hero-media img,
.tricity-intro-media img,
.tricity-benefits-media img,
.tricity-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tricity-hero-media img {
  object-position: center 38%;
}

.tricity-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 4px;
  color: #ffffff;
}

.tricity-hero-media figcaption strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.tricity-hero-media figcaption span {
  color: rgba(255, 255, 255, 0.78);
}

.tricity-signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  color: #ffffff;
  background: #0b1f3a;
}

.tricity-signal-band article {
  min-width: 0;
  padding: 30px clamp(20px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.tricity-signal-band article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.tricity-signal-band strong,
.tricity-signal-band span {
  display: block;
}

.tricity-signal-band strong {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 1.08rem;
}

.tricity-signal-band span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.tricity-intro,
.tricity-benefits,
.tricity-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.tricity-intro-media,
.tricity-benefits-media {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.tricity-intro-media img {
  object-position: center;
}

.tricity-image-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(8, 28, 55, 0.88);
  border-left: 4px solid #f6b840;
}

.tricity-image-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.tricity-intro-copy h2,
.tricity-benefits-copy h2,
.tricity-contact-copy h2,
.tricity-faq-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.tricity-challenge-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(11, 31, 58, 0.14);
}

.tricity-challenge-list > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.14);
}

.tricity-challenge-list span,
.tricity-service-grid article > span,
.tricity-process-grid article > span,
.tricity-benefit-list article > span,
.tricity-commitment-grid article > span {
  color: #197c70;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
}

.tricity-challenge-list p {
  margin: 0;
  color: var(--ink-800);
  font-weight: 600;
}

.tricity-services .section-heading,
.tricity-industries .section-heading,
.tricity-commitments .section-heading {
  max-width: 790px;
}

.tricity-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 31, 58, 0.15);
  border-left: 1px solid rgba(11, 31, 58, 0.15);
}

.tricity-service-grid article {
  position: relative;
  min-height: 285px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(11, 31, 58, 0.15);
  border-bottom: 1px solid rgba(11, 31, 58, 0.15);
  background: #ffffff;
}

.tricity-service-grid article:nth-child(2),
.tricity-service-grid article:nth-child(6) {
  background: #eff9f6;
}

.tricity-service-grid article:nth-child(4) {
  background: #fff6e6;
}

.tricity-service-grid h3 {
  margin: 44px 0 12px;
  color: #0b1f3a;
  font-size: 1.28rem;
}

.tricity-service-grid p {
  margin-bottom: 22px;
  color: var(--ink-600);
}

.tricity-service-grid a {
  color: #125c8f;
  font-weight: 800;
  text-decoration: none;
}

.tricity-service-grid a::after {
  content: " \2192";
}

.tricity-process {
  width: 100vw !important;
  margin-left: calc(50% - 50vw);
  padding-left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  padding-right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  color: #ffffff;
  background: #0b1f3a;
}

.tricity-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 44px;
}

.tricity-process-heading .eyebrow,
.tricity-contact-copy .eyebrow {
  grid-column: 1 / -1;
  color: #f6b840;
  background: none;
  -webkit-text-fill-color: initial;
}

.tricity-process-heading h2 {
  margin: 0;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.tricity-process-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.tricity-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tricity-process-grid article {
  min-height: 250px;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.tricity-process-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.tricity-process-grid article > span {
  color: #f6b840;
}

.tricity-process-grid h3 {
  margin: 66px 0 12px;
  color: #ffffff;
  font-size: 1.25rem;
}

.tricity-process-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.tricity-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tricity-industry-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  background-position: center;
  background-size: cover;
}

.tricity-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 40, 0.08) 15%, rgba(5, 20, 40, 0.9) 100%);
}

.tricity-industry-card > * {
  position: relative;
  z-index: 1;
}

.tricity-industry-card span {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #0b1f3a;
  background: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tricity-industry-card h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.3rem;
}

.tricity-industry-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.tricity-industry-tech { background-image: url("assets/optimized/diverse-devices-team.jpg"); }
.tricity-industry-health { background-image: url("assets/optimized/south-asian-tablet-team.jpg"); }
.tricity-industry-manufacturing { background-image: url("assets/optimized/corporate-workers-brainstorming-together.jpg"); }
.tricity-industry-logistics { background-image: url("assets/optimized/meeting-table-networking-sharing-concept.jpg"); }
.tricity-industry-finance { background-image: url("assets/optimized/employees-meeting-room-office.jpg"); }
.tricity-industry-growth { background-image: url("assets/optimized/coaching-laptop-meeting.jpg"); }

.tricity-benefits-media {
  min-height: 720px;
}

.tricity-benefits-media img {
  object-position: center 42%;
}

.tricity-benefits-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(8, 28, 55, 0.88);
  border-left: 4px solid #f6b840;
}

.tricity-benefit-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(11, 31, 58, 0.14);
}

.tricity-benefit-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.14);
}

.tricity-benefit-list h3 {
  margin-bottom: 5px;
  color: #0b1f3a;
  font-size: 1.08rem;
}

.tricity-benefit-list p {
  margin: 0;
  color: var(--ink-600);
}

.tricity-commitments {
  border-top: 1px solid rgba(11, 31, 58, 0.12);
}

.tricity-commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tricity-commitment-grid article {
  min-height: 235px;
  padding: 28px;
  border-radius: 8px;
  background: #f0f7ff;
}

.tricity-commitment-grid article:nth-child(2) { background: #eff9f6; }
.tricity-commitment-grid article:nth-child(3) { background: #fff6e6; }
.tricity-commitment-grid article:nth-child(4) { background: #f5f0ff; }

.tricity-commitment-grid h3 {
  margin: 50px 0 10px;
  color: #0b1f3a;
  font-size: 1.15rem;
}

.tricity-commitment-grid p {
  color: var(--ink-600);
}

.tricity-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.tricity-faq-heading {
  position: sticky;
  top: 132px;
}

.tricity-faq-list {
  border-top: 1px solid rgba(11, 31, 58, 0.16);
}

.tricity-faq-list details {
  border-bottom: 1px solid rgba(11, 31, 58, 0.16);
}

.tricity-faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  color: #0b1f3a;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: none;
}

.tricity-faq-list summary::-webkit-details-marker {
  display: none;
}

.tricity-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 31, 58, 0.22);
  border-radius: 50%;
}

.tricity-faq-list details[open] summary::after {
  content: "\2212";
  color: #ffffff;
  border-color: #197c70;
  background: #197c70;
}

.tricity-faq-list details p {
  max-width: 66ch;
  margin: -4px 50px 24px 0;
  color: var(--ink-600);
}

.tricity-contact {
  width: 100vw !important;
  margin-left: calc(50% - 50vw);
  padding-left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  padding-right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  color: #ffffff;
  background: #0b1f3a;
}

.tricity-contact-copy h2 {
  color: #ffffff;
}

.tricity-contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.tricity-contact-image {
  height: 180px;
  margin: 28px 0 20px;
  overflow: hidden;
  border-radius: 8px;
}

.tricity-contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.tricity-contact-links a {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: #ffffff;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.tricity-contact-links span {
  color: #f6b840;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tricity-contact-links strong {
  overflow-wrap: anywhere;
  font-size: 0.86rem;
}

.tricity-contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 46px);
  color: #0b1f3a;
  border-radius: 8px;
  background: #ffffff;
}

.tricity-form-kicker {
  margin: 0;
  color: #197c70;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tricity-contact-form h3 {
  margin-bottom: 4px;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.tricity-contact-form label {
  display: grid;
  gap: 6px;
}

.tricity-contact-form label > span {
  font-size: 0.84rem;
  font-weight: 700;
}

.tricity-contact-form input,
.tricity-contact-form select,
.tricity-contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(11, 31, 58, 0.22);
  border-radius: 6px;
  color: #0b1f3a;
  background: #ffffff;
  font: inherit;
}

.tricity-contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.tricity-contact-form .button {
  width: 100%;
}

.tricity-form-note {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .tricity-hero,
  .tricity-intro,
  .tricity-benefits,
  .tricity-contact {
    grid-template-columns: 1fr;
  }

  .tricity-hero-copy {
    max-width: 780px;
  }

  .tricity-hero-media {
    height: 560px;
  }

  .tricity-signal-band,
  .tricity-process-grid,
  .tricity-commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tricity-signal-band article:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .tricity-benefits-media {
    min-height: 580px;
  }
}

@media (max-width: 760px) {
  .tricity-hero {
    min-height: 0;
    padding-top: 28px;
  }

  .tricity-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .tricity-hero-media {
    height: 480px;
  }

  .tricity-signal-band,
  .tricity-service-grid,
  .tricity-process-grid,
  .tricity-industry-grid,
  .tricity-commitment-grid,
  .tricity-contact-links {
    grid-template-columns: 1fr;
  }

  .tricity-signal-band article,
  .tricity-signal-band article:first-child,
  .tricity-signal-band article:nth-child(3) {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .tricity-intro-media,
  .tricity-benefits-media {
    min-height: 480px;
  }

  .tricity-process-heading,
  .tricity-faq {
    grid-template-columns: 1fr;
  }

  .tricity-process-heading .eyebrow {
    grid-column: auto;
  }

  .tricity-process-grid article,
  .tricity-process-grid article:first-child {
    min-height: 210px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tricity-process-grid h3 {
    margin-top: 44px;
  }

  .tricity-faq-heading {
    position: static;
  }
}

@media (max-width: 480px) {
  .tricity-hero-media {
    height: 420px;
  }

  .tricity-hero-media figcaption,
  .tricity-image-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .tricity-intro-media,
  .tricity-benefits-media {
    min-height: 420px;
  }

  .tricity-service-grid article {
    min-height: 255px;
  }

  .tricity-contact-form {
    padding: 22px;
  }
}

/* Homepage hero carousel */
body[data-page="home"] .hero-carousel {
  display: grid;
  position: relative;
}

body[data-page="home"] .hero-carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 56px, 0) scale(0.985);
  filter: saturate(0.96);
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.2, 0.78, 0.2, 1),
    filter 520ms ease;
  z-index: 1;
}

body[data-page="home"] .hero-carousel-slide.is-before {
  transform: translate3d(0, -56px, 0) scale(0.985);
}

body[data-page="home"] .hero-carousel-slide.is-after {
  transform: translate3d(0, 56px, 0) scale(0.985);
}

body[data-page="home"] .hero-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
  z-index: 2;
}

body[data-page="home"] .hero-carousel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

body[data-page="home"] .hero-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(18, 50, 116, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #123274;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body[data-page="home"] .hero-carousel-button:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.12);
}

body[data-page="home"] .hero-carousel-button.is-active {
  background: linear-gradient(135deg, #123274 0%, #2563eb 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.18);
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-carousel-button {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  body[data-page="home"] .hero-carousel-slide,
  body[data-page="home"] .hero-carousel-slide.is-after {
    transform: translate3d(0, 26px, 0) scale(0.99);
  }

  body[data-page="home"] .hero-carousel-slide.is-before {
    transform: translate3d(0, -26px, 0) scale(0.99);
  }

  body[data-page="home"] .hero-carousel-slide.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Homepage open-layout refinement */
body[data-page="home"] .hero-home {
  padding: 14px 0 20px;
}

body[data-page="home"] .hero-home-shell {
  gap: 16px;
}

body[data-page="home"] .hero-carousel {
  min-height: 390px;
}

body[data-page="home"] .hero-master-banner,
body[data-page="home"] .service-hero-banner {
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
  align-items: stretch;
  min-height: 390px;
  padding: 24px 0 24px 34px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .hero-master-banner::before,
body[data-page="home"] .service-hero-banner::before {
  left: 18px;
  bottom: 18px;
  width: 60px;
  height: 38px;
}

body[data-page="home"] .hero-master-copy,
body[data-page="home"] .service-hero-copy {
  align-self: center;
  padding-right: 24px;
  max-width: 34ch;
}

body[data-page="home"] .hero-master-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

body[data-page="home"] .hero-master-visual,
body[data-page="home"] .service-hero-art {
  min-height: 100%;
  height: 100%;
  border-radius: 0 30px 30px 0;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .hero-master-visual::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 24%, rgba(8, 22, 54, 0.04) 100%),
    url("assets/optimized/corporate-workers-brainstorming-together.jpg") center center / cover no-repeat;
}

body[data-page="home"] .hero-master-visual::after,
body[data-page="home"] .service-hero-art::after {
  width: 20%;
}

body[data-page="home"] .recruitment-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.06), rgba(8, 22, 54, 0.18)),
    url("assets/optimized/coaching-laptop-meeting.jpg") center center / cover no-repeat;
}

body[data-page="home"] .staffing-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.04), rgba(8, 22, 54, 0.14)),
    url("assets/optimized/team-thank-you.jpg") center center / cover no-repeat;
}

body[data-page="home"] .contracting-art {
  background:
    linear-gradient(180deg, rgba(6, 18, 46, 0.06), rgba(6, 18, 46, 0.16)),
    url("assets/optimized/ai-images.jpg") center center / cover no-repeat;
}

body[data-page="home"] .bgv-art {
  background:
    linear-gradient(180deg, rgba(4, 48, 32, 0.05), rgba(4, 48, 32, 0.14)),
    url("assets/optimized/employees-meeting-room-office.jpg") center center / cover no-repeat;
}

body[data-page="home"] .hero-carousel-nav {
  justify-content: flex-start;
  margin-top: 4px;
  padding-left: 4px;
}

body[data-page="home"] .hero-carousel-button {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

body[data-page="home"] main > .section,
body[data-page="home"] .trust-marquee,
body[data-page="home"] .metrics-band {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

body[data-page="home"] .trust-marquee,
body[data-page="home"] .metrics-band,
body[data-page="home"] .alliance-proof-section,
body[data-page="home"] .client-trust-section,
body[data-page="home"] .global-presence-section,
body[data-page="home"] .services-overview-section,
body[data-page="home"] .case-study-section,
body[data-page="home"] .testimonial-proof-section,
body[data-page="home"] .feature-layout,
body[data-page="home"] .industries-support-section,
body[data-page="home"] .process-section,
body[data-page="home"] .alliance-support-section,
body[data-page="home"] .recognition-section,
body[data-page="home"] .top-insights-section,
body[data-page="home"] .cta-section {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

body[data-page="home"] .alliance-proof-section::before,
body[data-page="home"] .client-trust-section::before,
body[data-page="home"] .global-presence-section::before,
body[data-page="home"] .services-overview-section::before,
body[data-page="home"] .top-insights-section::before,
body[data-page="home"] .section-heading::before,
body[data-page="home"] .section-heading::after,
body[data-page="home"] .alpha-stat-card::after,
body[data-page="home"] .service-card::after,
body[data-page="home"] .feature-panel::after,
body[data-page="home"] .content-card::after {
  display: none !important;
}

body[data-page="home"] .alliance-proof-section,
body[data-page="home"] .services-overview-section,
body[data-page="home"] .testimonial-proof-section,
body[data-page="home"] .process-section,
body[data-page="home"] .top-insights-section {
  background:
    linear-gradient(180deg, rgba(246, 249, 255, 0.92), rgba(246, 249, 255, 0.36));
}

body[data-page="home"] .client-trust-section,
body[data-page="home"] .case-study-section,
body[data-page="home"] .feature-layout,
body[data-page="home"] .recognition-section {
  background: transparent;
}

body[data-page="home"] .global-presence-section,
body[data-page="home"] .industries-support-section,
body[data-page="home"] .alliance-support-section,
body[data-page="home"] .cta-section {
  background:
    linear-gradient(180deg, rgba(240, 247, 255, 0.58), rgba(255, 255, 255, 0));
}

body[data-page="home"] .section-heading {
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .section-heading h2 {
  max-width: 18ch;
}

body[data-page="home"] .trust-marquee {
  padding: 16px 0 6px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .trust-marquee div {
  gap: 10px;
}

body[data-page="home"] .trust-marquee span {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: none;
}

body[data-page="home"] .metrics-band {
  padding: 6px 0 14px;
  background: transparent;
  gap: 24px;
}

body[data-page="home"] .metrics-band article {
  padding: 0 0 0 22px;
  min-height: auto;
  background: transparent;
  border: 0;
  border-left: 3px solid rgba(37, 99, 235, 0.24);
  box-shadow: none;
}

body[data-page="home"] .metrics-band article:nth-child(2) {
  border-left-color: rgba(20, 184, 166, 0.28);
}

body[data-page="home"] .metrics-band article:nth-child(3) {
  border-left-color: rgba(15, 124, 82, 0.32);
}

body[data-page="home"] .metrics-band article::after {
  display: none;
}

body[data-page="home"] .alpha-stat-card,
body[data-page="home"] .service-card,
body[data-page="home"] .feature-panel,
body[data-page="home"] .content-card,
body[data-page="home"] .split-card,
body[data-page="home"] .recognition-card,
body[data-page="home"] .blog-post-card,
body[data-page="home"] .client-logo-wall div {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(11, 31, 58, 0.06);
  box-shadow: 0 10px 22px rgba(11, 31, 58, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body[data-page="home"] .split-card {
  box-shadow: none;
}

body[data-page="home"] .service-card:hover,
body[data-page="home"] .feature-panel:hover,
body[data-page="home"] .content-card:hover,
body[data-page="home"] .blog-post-card:hover,
body[data-page="home"] .alpha-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .service-grid,
body[data-page="home"] .feature-grid,
body[data-page="home"] .two-column-section,
body[data-page="home"] .split-band,
body[data-page="home"] .recognition-grid,
body[data-page="home"] .blog-post-list {
  gap: 26px;
}

body[data-page="home"] .section-mini-stats {
  margin-top: 28px;
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-carousel {
    min-height: 350px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }

  body[data-page="home"] .hero-master-copy,
  body[data-page="home"] .service-hero-copy {
    max-width: none;
    padding-right: 0;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-art {
    min-height: 230px;
    border-radius: 22px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-carousel {
    min-height: 320px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    padding: 18px;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-art {
    min-height: 180px;
    border-radius: 18px;
  }

  body[data-page="home"] .hero-carousel-nav {
    justify-content: center;
    padding-left: 0;
  }

  body[data-page="home"] .metrics-band {
    gap: 18px;
  }

  body[data-page="home"] .metrics-band article {
    padding-left: 18px;
  }
}

/* Homepage hero strip redesign */
body[data-page="home"] .hero-home {
  padding: 18px 0 16px;
}

body[data-page="home"] .hero-home-shell {
  gap: 8px;
}

body[data-page="home"] .hero-master-banner,
body[data-page="home"] .service-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(249, 251, 255, 0.98) 42%, rgba(240, 246, 255, 0.96) 100%);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .hero-master-banner::before,
body[data-page="home"] .service-hero-banner::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 54px;
  height: 34px;
  background-image: radial-gradient(rgba(37, 99, 235, 0.5) 1.1px, transparent 1.1px);
  background-size: 9px 9px;
  opacity: 0.9;
  pointer-events: none;
}

body[data-page="home"] .hero-master-banner {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 22px;
  min-height: 248px;
  padding: 26px 28px 26px 28px;
}

body[data-page="home"] .hero-master-wave,
body[data-page="home"] .hero-master-badge {
  display: none;
}

body[data-page="home"] .hero-master-copy {
  gap: 10px;
}

body[data-page="home"] .hero-master-copy .eyebrow {
  margin-bottom: 0;
  color: #1f4fb0;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1.05rem;
  font-weight: 800;
}

body[data-page="home"] .hero-master-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  background: none;
  color: #123274;
}

body[data-page="home"] .hero-master-copy .hero-text {
  max-width: 45ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(11, 31, 58, 0.82);
}

body[data-page="home"] .hero-actions {
  gap: 12px;
  margin-top: 2px;
}

body[data-page="home"] .hero-actions .button-primary {
  background: linear-gradient(135deg, #123274 0%, #2563eb 100%);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

body[data-page="home"] .hero-actions .button-secondary {
  color: #123274;
  border-color: rgba(18, 50, 116, 0.16);
  background: rgba(18, 50, 116, 0.06);
}

body[data-page="home"] .hero-trust-line {
  gap: 10px;
  margin-top: 2px;
  padding: 10px 14px;
  border-color: rgba(18, 50, 116, 0.12);
  background: rgba(18, 50, 116, 0.04);
  box-shadow: none;
}

body[data-page="home"] .hero-trust-badge {
  background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
}

body[data-page="home"] .hero-trust-line p {
  color: #123274;
}

body[data-page="home"] .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

body[data-page="home"] .hero-highlights li {
  min-height: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: none;
  color: #123274;
  font-weight: 600;
}

body[data-page="home"] .hero-highlights li::before {
  display: none;
}

body[data-page="home"] .hero-master-visual {
  min-height: 194px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 43, 104, 0.04), rgba(13, 43, 104, 0.08));
}

body[data-page="home"] .hero-master-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 30%, rgba(8, 22, 54, 0.06) 100%),
    url("assets/optimized/corporate-workers-brainstorming-together.jpg") center / cover no-repeat;
  box-shadow: none;
  filter: none;
  opacity: 1;
}

body[data-page="home"] .hero-master-visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 31%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.74), rgba(18, 50, 116, 0.92));
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

body[data-page="home"] .hero-banner-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}

body[data-page="home"] .service-hero-banner {
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1.28fr);
  align-items: center;
  min-height: 176px;
  padding: 20px 24px 20px 24px;
  gap: 22px;
}

body[data-page="home"] .service-hero-banner::before {
  left: 18px;
  bottom: 14px;
}

body[data-page="home"] .service-hero-copy {
  max-width: 34ch;
}

body[data-page="home"] .service-hero-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2150b4;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: none;
}

body[data-page="home"] .service-hero-banner h2 {
  margin: 10px 0 0;
  color: #123274;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.02;
}

body[data-page="home"] .service-hero-banner p {
  margin: 8px 0 0;
  color: rgba(11, 31, 58, 0.8);
  line-height: 1.45;
}

body[data-page="home"] .service-hero-banner a {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  width: fit-content;
  border-radius: 12px;
  background: linear-gradient(135deg, #123274 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
}

body[data-page="home"] .service-hero-banner a::after {
  width: 8px;
  height: 8px;
}

body[data-page="home"] .service-hero-art {
  position: relative;
  min-height: 138px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 50, 116, 0.08);
  box-shadow: none;
}

body[data-page="home"] .service-hero-art > span {
  display: none;
}

body[data-page="home"] .service-hero-art::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.76), rgba(14, 44, 101, 0.92));
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

body[data-page="home"] .recruitment-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.1), rgba(8, 22, 54, 0.34)),
    url("assets/optimized/coaching-laptop-meeting.jpg") center / cover no-repeat;
}

body[data-page="home"] .staffing-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.08), rgba(8, 22, 54, 0.26)),
    url("assets/optimized/team-thank-you.jpg") center / cover no-repeat;
}

body[data-page="home"] .contracting-banner {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(246, 250, 255, 0.98) 38%, rgba(233, 242, 255, 0.95) 100%);
}

body[data-page="home"] .contracting-art {
  background:
    linear-gradient(180deg, rgba(6, 18, 46, 0.08), rgba(6, 18, 46, 0.36)),
    url("assets/optimized/ai-images.jpg") center / cover no-repeat;
}

body[data-page="home"] .bgv-banner {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(247, 252, 249, 0.98) 40%, rgba(235, 247, 240, 0.96) 100%);
}

body[data-page="home"] .bgv-banner .service-hero-tag {
  background: rgba(22, 124, 81, 0.08);
  color: #1d7b53;
}

body[data-page="home"] .bgv-banner h2 {
  color: #145c44;
}

body[data-page="home"] .bgv-banner a {
  background: linear-gradient(135deg, #1a7c52 0%, #0f5f3b 100%);
  box-shadow: 0 10px 20px rgba(26, 124, 82, 0.18);
}

body[data-page="home"] .bgv-art {
  background:
    linear-gradient(180deg, rgba(4, 48, 32, 0.08), rgba(4, 48, 32, 0.32)),
    url("assets/optimized/employees-meeting-room-office.jpg") center / cover no-repeat;
}

body[data-page="home"] .bgv-art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  clip-path: polygon(50% 0, 92% 20%, 92% 64%, 50% 100%, 8% 64%, 8% 20%);
}

body[data-page="home"] .bgv-art::after {
  background: linear-gradient(180deg, rgba(26, 124, 82, 0.72), rgba(9, 70, 43, 0.92));
}

body[data-page="home"] .bgv-art .bgv-art-ring,
body[data-page="home"] .bgv-art .bgv-art-profile,
body[data-page="home"] .bgv-art .bgv-art-tick,
body[data-page="home"] .bgv-art .bgv-art-lines,
body[data-page="home"] .contracting-art .contracting-art-grid,
body[data-page="home"] .contracting-art .contracting-art-screen,
body[data-page="home"] .contracting-art .contracting-art-glow {
  display: none;
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-master-copy,
  body[data-page="home"] .service-hero-copy {
    max-width: none;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-art {
    min-height: 200px;
  }

  body[data-page="home"] .hero-master-copy h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-home-shell {
    gap: 10px;
  }

  body[data-page="home"] .hero-master-banner {
    padding: 20px;
    min-height: auto;
  }

  body[data-page="home"] .service-hero-banner {
    padding: 18px 18px 20px;
    min-height: auto;
  }

  body[data-page="home"] .hero-master-banner::before,
  body[data-page="home"] .service-hero-banner::before {
    left: 14px;
    bottom: 12px;
    width: 46px;
    height: 28px;
  }

  body[data-page="home"] .hero-master-copy .eyebrow {
    font-size: 0.95rem;
  }

  body[data-page="home"] .hero-master-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  body[data-page="home"] .hero-highlights {
    gap: 8px;
  }

  body[data-page="home"] .hero-highlights li {
    width: 100%;
    justify-content: flex-start;
  }

  body[data-page="home"] .service-hero-banner h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-art {
    min-height: 170px;
  }
}

/* Homepage graphic system cleanup - July 2026 */
body[data-page="home"] main {
  display: grid;
  gap: clamp(34px, 4.8vw, 62px);
}

body[data-page="home"] .hero-home {
  padding: 8px 0 6px;
}

body[data-page="home"] .hero-home-shell {
  gap: 18px;
}

body[data-page="home"] .hero-carousel {
  min-height: 470px;
}

body[data-page="home"] .hero-master-banner,
body[data-page="home"] .service-hero-banner {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  min-height: 470px;
  padding: 34px 0 34px 38px;
  border-radius: 38px;
  border: 1px solid rgba(13, 34, 74, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 34%, rgba(238, 245, 255, 0.92) 100%);
  box-shadow:
    0 30px 70px rgba(11, 31, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body[data-page="home"] .hero-master-banner::before,
body[data-page="home"] .service-hero-banner::before {
  left: 24px;
  bottom: 24px;
  width: 68px;
  height: 42px;
  opacity: 0.65;
}

body[data-page="home"] .hero-master-copy,
body[data-page="home"] .service-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 35ch;
  padding-right: 28px;
}

body[data-page="home"] .hero-master-copy h1 {
  max-width: 10.8ch;
  font-size: clamp(3rem, 5vw, 5rem);
}

body[data-page="home"] .hero-text,
body[data-page="home"] .service-hero-copy p {
  font-size: 1.03rem;
  line-height: 1.74;
}

body[data-page="home"] .hero-actions {
  gap: 14px;
}

body[data-page="home"] .hero-actions .button {
  min-height: 50px;
  padding: 0 22px;
}

body[data-page="home"] .hero-master-visual,
body[data-page="home"] .service-hero-art {
  position: relative;
  min-height: 100%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}

body[data-page="home"] .hero-master-visual::before,
body[data-page="home"] .service-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 58, 0.04) 0%, rgba(11, 31, 58, 0) 28%, rgba(17, 49, 110, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

body[data-page="home"] .hero-master-visual::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 38%, rgba(8, 22, 54, 0.08) 100%),
    url("assets/optimized/corporate-workers-brainstorming-together.jpg") center center / cover no-repeat;
}

body[data-page="home"] .hero-master-visual::after,
body[data-page="home"] .service-hero-art::after {
  width: 24%;
  background:
    linear-gradient(180deg, rgba(21, 76, 177, 0.28), rgba(15, 47, 110, 0.78)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(124, 58, 237, 0.26));
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

body[data-page="home"] .recruitment-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.08), rgba(8, 22, 54, 0.18)),
    url("assets/optimized/coaching-laptop-meeting.jpg") center center / cover no-repeat;
}

body[data-page="home"] .staffing-art {
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.04), rgba(8, 22, 54, 0.16)),
    url("assets/optimized/team-thank-you.jpg") center center / cover no-repeat;
}

body[data-page="home"] .contracting-art {
  background:
    linear-gradient(180deg, rgba(6, 18, 46, 0.08), rgba(6, 18, 46, 0.22)),
    url("assets/optimized/ai-images.jpg") center center / cover no-repeat;
}

body[data-page="home"] .bgv-art {
  background:
    linear-gradient(180deg, rgba(4, 48, 32, 0.05), rgba(4, 48, 32, 0.2)),
    url("assets/optimized/employees-meeting-room-office.jpg") center center / cover no-repeat;
}

body[data-page="home"] .hero-carousel-nav {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: 100%;
  justify-content: flex-start;
  margin: -18px 0 0 28px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 18px 34px rgba(11, 31, 58, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body[data-page="home"] .hero-carousel-button {
  min-height: 40px;
  padding: 0 15px;
}

body[data-page="home"] .trust-marquee,
body[data-page="home"] .metrics-band {
  padding: 0;
}

body[data-page="home"] .trust-marquee div {
  gap: 12px;
}

body[data-page="home"] .metrics-band {
  gap: 18px;
}

body[data-page="home"] .metrics-band article {
  min-height: 158px;
  border-radius: 26px;
}

body[data-page="home"] .alliance-proof-section,
body[data-page="home"] .client-trust-section,
body[data-page="home"] .global-presence-section,
body[data-page="home"] .services-overview-section,
body[data-page="home"] .case-study-section,
body[data-page="home"] .testimonial-proof-section,
body[data-page="home"] .feature-layout,
body[data-page="home"] .industries-support-section,
body[data-page="home"] .process-section,
body[data-page="home"] .alliance-support-section,
body[data-page="home"] .recognition-section,
body[data-page="home"] .top-insights-section,
body[data-page="home"] .cta-section {
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="home"] .alliance-proof-section::before,
body[data-page="home"] .client-trust-section::before,
body[data-page="home"] .global-presence-section::before,
body[data-page="home"] .services-overview-section::before,
body[data-page="home"] .case-study-section::before,
body[data-page="home"] .testimonial-proof-section::before,
body[data-page="home"] .feature-layout::before,
body[data-page="home"] .industries-support-section::before,
body[data-page="home"] .process-section::before,
body[data-page="home"] .alliance-support-section::before,
body[data-page="home"] .recognition-section::before,
body[data-page="home"] .top-insights-section::before,
body[data-page="home"] .cta-section::before {
  inset: -6px 0 auto 0;
  height: 170px;
  opacity: 0.92;
  filter: saturate(1.04);
}

body[data-page="home"] .alliance-proof-section::before {
  background:
    radial-gradient(circle at 86% 24%, rgba(124, 58, 237, 0.16), transparent 22%),
    radial-gradient(circle at 8% 78%, rgba(20, 184, 166, 0.12), transparent 18%);
}

body[data-page="home"] .client-trust-section::before {
  background:
    radial-gradient(circle at 9% 22%, rgba(20, 184, 166, 0.14), transparent 22%),
    radial-gradient(circle at 90% 74%, rgba(249, 115, 22, 0.11), transparent 18%);
}

body[data-page="home"] .global-presence-section::before {
  background:
    radial-gradient(circle at 10% 16%, rgba(37, 99, 235, 0.15), transparent 20%),
    radial-gradient(circle at 84% 70%, rgba(20, 184, 166, 0.12), transparent 18%);
}

body[data-page="home"] .services-overview-section::before {
  background:
    radial-gradient(circle at 88% 18%, rgba(124, 58, 237, 0.18), transparent 22%),
    radial-gradient(circle at 12% 70%, rgba(249, 115, 22, 0.1), transparent 18%);
}

body[data-page="home"] .case-study-section::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(20, 184, 166, 0.16), transparent 20%),
    radial-gradient(circle at 90% 24%, rgba(124, 58, 237, 0.1), transparent 18%);
}

body[data-page="home"] .testimonial-proof-section::before {
  background:
    radial-gradient(circle at 88% 18%, rgba(124, 58, 237, 0.16), transparent 20%),
    radial-gradient(circle at 12% 78%, rgba(249, 115, 22, 0.12), transparent 18%);
}

body[data-page="home"] .feature-layout::before {
  background:
    radial-gradient(circle at 82% 24%, rgba(124, 58, 237, 0.14), transparent 22%),
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.1), transparent 18%);
}

body[data-page="home"] .industries-support-section::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.12), transparent 18%),
    radial-gradient(circle at 84% 78%, rgba(124, 58, 237, 0.1), transparent 18%);
}

body[data-page="home"] .process-section::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.14), transparent 18%),
    radial-gradient(circle at 90% 78%, rgba(249, 115, 22, 0.12), transparent 18%);
}

body[data-page="home"] .alliance-support-section::before {
  background:
    radial-gradient(circle at 86% 22%, rgba(249, 115, 22, 0.14), transparent 20%),
    radial-gradient(circle at 12% 78%, rgba(20, 184, 166, 0.1), transparent 18%);
}

body[data-page="home"] .recognition-section::before {
  background:
    radial-gradient(circle at 90% 16%, rgba(249, 115, 22, 0.15), transparent 22%),
    radial-gradient(circle at 10% 78%, rgba(124, 58, 237, 0.1), transparent 18%);
}

body[data-page="home"] .top-insights-section::before {
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.14), transparent 22%),
    radial-gradient(circle at 10% 76%, rgba(20, 184, 166, 0.1), transparent 18%);
}

body[data-page="home"] .cta-section::before {
  background:
    radial-gradient(circle at 86% 22%, rgba(249, 115, 22, 0.16), transparent 22%),
    radial-gradient(circle at 10% 76%, rgba(20, 184, 166, 0.12), transparent 18%);
}

body[data-page="home"] .section::after {
  bottom: -18px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.16), transparent);
}

body[data-page="home"] .section-heading {
  margin-bottom: 28px;
  padding-left: 26px;
}

body[data-page="home"] .section-heading h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

body[data-page="home"] .alpha-stats-grid,
body[data-page="home"] .service-grid,
body[data-page="home"] .feature-grid,
body[data-page="home"] .two-column-section,
body[data-page="home"] .split-band,
body[data-page="home"] .recognition-grid,
body[data-page="home"] .blog-post-list,
body[data-page="home"] .timeline,
body[data-page="home"] .client-logo-wall {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .alpha-stat-card,
body[data-page="home"] .service-card,
body[data-page="home"] .feature-panel,
body[data-page="home"] .content-card,
body[data-page="home"] .split-card,
body[data-page="home"] .recognition-card,
body[data-page="home"] .blog-post-card,
body[data-page="home"] .timeline-item,
body[data-page="home"] .client-logo-wall div {
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow:
    0 18px 40px rgba(11, 31, 58, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-page="home"] .alpha-stat-card:hover,
body[data-page="home"] .service-card:hover,
body[data-page="home"] .feature-panel:hover,
body[data-page="home"] .content-card:hover,
body[data-page="home"] .blog-post-card:hover,
body[data-page="home"] .timeline-item:hover,
body[data-page="home"] .recognition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(11, 31, 58, 0.1);
}

body[data-page="home"] .client-logo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .client-logo-wall div {
  display: flex;
  align-items: flex-end;
  padding: 28px 24px 22px;
  min-height: 124px;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

body[data-page="home"] .client-logo-wall div::after {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
}

body[data-page="home"] .section-cta-strip {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .proof-chip,
body[data-page="home"] .section-mini-stat {
  box-shadow: 0 16px 30px rgba(11, 31, 58, 0.05);
}

body[data-page="home"] .section-mini-stats {
  gap: 18px;
}

body[data-page="home"] .cta-card {
  border-radius: 34px;
  box-shadow: 0 34px 72px rgba(11, 31, 58, 0.12);
}

@media (max-width: 1180px) {
  body[data-page="home"] .hero-carousel {
    min-height: 420px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  body[data-page="home"] .hero-master-copy,
  body[data-page="home"] .service-hero-copy {
    max-width: none;
    padding-right: 0;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-art {
    min-height: 260px;
    border-radius: 24px;
  }

  body[data-page="home"] .hero-carousel-nav {
    margin: -8px 0 0 0;
  }
}

@media (max-width: 920px) {
  body[data-page="home"] .client-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] main {
    gap: 28px;
  }

  body[data-page="home"] .hero-carousel {
    min-height: 360px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    padding: 20px;
    border-radius: 26px;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-art {
    min-height: 190px;
    border-radius: 18px;
  }

  body[data-page="home"] .hero-carousel-nav {
    width: 100%;
    margin-top: 2px;
    padding: 8px;
    border-radius: 22px;
  }

  body[data-page="home"] .section-heading {
    padding-left: 20px;
  }

  body[data-page="home"] .client-logo-wall {
    grid-template-columns: 1fr;
  }
}

/* Shared layout stabilization - July 2026 */
:root {
  --content-max: 1400px;
  --reading-max: 72ch;
  --section-space-y: clamp(34px, 5vw, 64px);
  --layout-gap: clamp(18px, 2.4vw, 30px);
  --card-radius-unified: clamp(20px, 2.4vw, 28px);
  --header-offset: clamp(88px, 10vw, 122px);
}

html {
  scroll-padding-top: calc(var(--header-offset) + 16px);
}

body {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

body.menu-open,
body.popup-open {
  overflow: hidden;
}

body::before {
  max-width: 100vw;
}

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

iframe {
  display: block;
}

.page-shell,
.page-shell * {
  min-width: 0;
}

.page-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  padding-bottom: clamp(42px, 6vw, 74px);
}

body:not([data-page="home"]) main {
  display: grid;
  gap: clamp(26px, 3.8vw, 42px);
}

.site-header {
  top: 0;
  width: 100vw;
  margin-top: 0;
  margin-bottom: clamp(10px, 1.6vw, 18px);
  padding-top: 6px;
  padding-bottom: 8px;
  padding-left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  padding-right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  gap: 6px clamp(16px, 2vw, 24px);
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.035);
}

.site-header .brand {
  align-self: center;
}

.site-header .brand-logo-full,
.site-header .brand-logo-icon {
  flex: 0 0 auto;
}

.site-header .brand-logo-full {
  max-width: 76px;
}

.site-header .brand-wordmark {
  gap: 2px;
}

.site-nav {
  flex-wrap: nowrap;
  gap: clamp(12px, 1.15vw, 18px);
}

.site-nav > a,
.nav-summary-link,
.nav-dropdown summary {
  font-size: clamp(0.92rem, 0.3vw + 0.88rem, 1rem);
  line-height: 1.2;
}

.nav-dropdown summary {
  min-height: 42px;
}

.site-nav a,
.nav-summary-link {
  white-space: nowrap;
}

.site-nav a.header-contact-button,
.site-nav a.header-extra-cta {
  white-space: nowrap;
}

.site-nav a.header-contact-button {
  margin-left: clamp(8px, 0.8vw, 16px);
}

.site-nav a.header-extra-cta {
  margin-left: clamp(8px, 0.9vw, 18px);
}

.nav-submenu {
  width: min(92vw, 720px);
  max-width: calc(100vw - 24px);
  gap: 8px 10px;
}

.services-dropdown .nav-submenu,
.industries-dropdown .nav-submenu,
.about-dropdown .nav-submenu,
.ai-dropdown .nav-submenu {
  width: min(540px, calc(100vw - 24px));
}

.locations-dropdown .nav-submenu {
  width: min(560px, calc(100vw - 24px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.location-submenu-link {
  gap: 10px;
  padding: 12px 14px;
}

.location-submenu-link img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.section {
  padding-block: var(--section-space-y);
}

.section-heading {
  max-width: var(--reading-max);
  margin-bottom: clamp(22px, 3vw, 34px);
}

h1,
h2,
h3,
.hero-text,
.section-heading h2 {
  text-wrap: balance;
}

p,
li,
.hero-text,
.section-heading p,
.form-intro,
.footer-brand-copy {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.section-heading h2,
.page-hero h1,
.article-hero h1,
.contact-page-hero h1,
.about-hero h1,
.blog-hero h1,
.industries-hero h1,
.location-hero h1,
.bgv-hero h1,
.rpo-hero h1,
.consultancy-hero h1,
.ai-solution-hero h1 {
  font-size: clamp(1.95rem, 3vw, 3.5rem);
  line-height: 1.06;
}

.hero-text,
.page-hero .hero-text,
.article-hero .hero-text,
.contact-page-copy .hero-text,
.about-hero-copy .hero-text,
.blog-hero-copy .hero-text,
.industries-hero-copy .hero-text,
.location-hero-panel .hero-text,
.ai-hero-copy .hero-text,
.bgv-hero-copy .hero-text,
.consultancy-hero-copy .hero-text,
.rpo-hero-copy .hero-text {
  max-width: min(100%, 66ch);
  font-size: clamp(1rem, 0.32vw + 0.98rem, 1.12rem);
  line-height: 1.72;
}

.hero-actions,
.location-hero-actions,
.footer-cta-row,
.lead-popup-actions {
  gap: 12px;
}

.hero-actions .button,
.location-hero-actions .button,
.footer-cta-row .button,
.lead-popup-actions .button {
  min-height: 50px;
}

.service-grid,
.feature-grid,
.industry-grid,
.industry-sector-grid,
.recognition-grid,
.locations-hub-grid,
.brochure-grid,
.brochure-section-grid,
.brochure-section-grid-wide,
.brochure-metrics,
.rpo-signal-grid,
.rpo-advantage-grid,
.ai-metric-grid,
.ai-story-grid,
.about-visual-metrics,
.client-logo-wall {
  gap: clamp(16px, 2vw, 24px);
}

.service-grid,
.feature-grid,
.industry-grid,
.industry-sector-grid,
.recognition-grid,
.locations-hub-grid,
.brochure-grid,
.brochure-section-grid,
.brochure-section-grid-wide,
.brochure-metrics,
.rpo-signal-grid,
.rpo-advantage-grid,
.ai-metric-grid,
.ai-story-grid,
.client-logo-wall {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.about-hero,
.contact-page-hero,
.blog-hero,
.industries-hero,
.location-hero,
.article-hero,
.ai-solution-hero,
.bgv-hero,
.rpo-hero,
.consultancy-hero,
.contact-map-grid,
.contact-page-grid,
.blog-layout,
.article-layout,
.two-column-section,
.split-band,
.contact-layout,
.contact-layout-bgv {
  gap: clamp(20px, 3vw, 30px);
}

.about-hero,
.contact-page-hero,
.blog-hero,
.industries-hero,
.location-hero,
.article-hero,
.ai-solution-hero,
.bgv-hero,
.rpo-hero,
.consultancy-hero {
  align-items: stretch;
}

.blog-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: start;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
}

.contact-map-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.location-hero,
.about-hero,
.contact-page-hero,
.blog-hero,
.industries-hero,
.article-hero,
.ai-solution-hero,
.bgv-hero,
.rpo-hero,
.consultancy-hero {
  overflow: hidden;
}

.about-hero-copy,
.contact-page-copy,
.blog-hero-copy,
.industries-hero-copy,
.article-hero-copy,
.ai-hero-copy,
.bgv-hero-copy,
.rpo-hero-copy,
.consultancy-hero-copy,
.location-hero-panel {
  max-width: min(100%, 70ch);
}

.blog-feature-layout {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: stretch;
}

.blog-post-card {
  grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.blog-post-thumb,
.blog-feature-visual,
.article-hero-visual {
  height: 100%;
}

.blog-post-thumb {
  min-height: 148px;
}

.blog-feature-visual,
.article-hero-visual {
  min-height: clamp(220px, 30vw, 320px);
}

.article-content > :is(p, ul, ol, blockquote, table) {
  max-width: min(100%, 72ch);
}

.contact-map-embed iframe {
  min-height: clamp(300px, 48vw, 420px);
}

.contact-form-grid,
.lead-popup-form-grid {
  gap: 16px 18px;
}

.contact-page-form,
.content-card-form-premium,
.lead-popup-form-panel,
.contact-address-card,
.location-form-card {
  padding: clamp(22px, 3vw, 32px);
}

label,
.lead-popup-form label,
.contact-form-grid label {
  min-width: 0;
}

input,
select,
textarea {
  max-width: 100%;
  font-size: 16px;
}

textarea {
  min-height: 120px;
}

.contact-page-sidebar,
.article-sidebar,
.blog-sidebar {
  align-self: start;
}

.contact-card,
.content-card,
.feature-panel,
.service-card,
.timeline-item,
.blog-feature-card,
.blog-post-card,
.article-sidebar-card,
.location-overview-card,
.location-service-card,
.location-form-card,
.location-sidebar-card,
.location-process-card,
.location-faq-card,
.location-link-card,
.location-city-card,
.brochure-card,
.footer-highlight-panel,
.contact-page-highlight {
  border-radius: var(--card-radius-unified);
}

.metrics-band article,
.service-card,
.timeline-item,
.feature-panel,
.content-card,
.contact-card,
.split-card,
.blog-feature-card,
.blog-post-card,
.article-sidebar-card,
.location-overview-card,
.location-service-card,
.location-form-card,
.location-sidebar-card,
.location-process-card,
.location-faq-card,
.location-link-card,
.location-city-card,
.brochure-card,
.footer-highlight-panel {
  box-shadow: 0 20px 50px rgba(11, 31, 58, 0.08);
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  padding-right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
}

.footer-mega,
.footer-bottom-line {
  width: min(100%, var(--content-max));
  margin-left: auto;
  margin-right: auto;
}

.footer-top-band {
  gap: clamp(20px, 3vw, 30px);
}

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

.footer-links-grid a,
.footer-bottom-links a,
.footer-contact-chip,
.footer-mini-actions a {
  overflow-wrap: anywhere;
}

.footer-social-row {
  align-items: center;
}

.cookie-consent {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
  padding: 14px;
  transform: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-consent.is-hidden {
  transform: translateY(12px);
}

.cookie-consent-card {
  width: min(100%, var(--content-max));
  margin-left: auto;
  margin-right: auto;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .site-header {
    padding-left: max(14px, var(--page-gutter));
    padding-right: max(14px, var(--page-gutter));
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

  .contact-page-grid,
  .blog-layout {
    grid-template-columns: 1fr minmax(260px, 320px);
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 88px;
  }

  body:not([data-page="home"]) main {
    gap: 28px;
  }

  .site-nav {
    gap: 12px;
  }

  .about-hero,
  .contact-page-hero,
  .blog-hero,
  .industries-hero,
  .location-hero,
  .article-hero,
  .ai-solution-hero,
  .bgv-hero,
  .rpo-hero,
  .consultancy-hero,
  .blog-layout,
  .article-layout,
  .contact-page-grid,
  .contact-map-grid,
  .two-column-section,
  .split-band,
  .contact-layout,
  .contact-layout-bgv {
    grid-template-columns: 1fr;
  }

  .blog-feature-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --header-offset: 76px;
  }

  .page-shell {
    width: calc(100% - 24px);
  }

  .site-header {
    padding: 8px 12px 10px;
    box-shadow: 0 8px 16px rgba(11, 31, 58, 0.04);
  }

  .header-utility {
    gap: 8px;
    padding-bottom: 8px;
  }

  .header-utility-links {
    gap: 8px;
  }

  .header-call-link {
    font-size: 0.95rem;
  }

  .site-header.is-open .site-nav {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding-bottom: 8px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav > a,
  .site-nav .nav-dropdown,
  .site-nav .header-contact-button,
  .site-nav .header-extra-cta {
    width: 100%;
  }

  .site-nav a.header-contact-button,
  .site-nav a.header-extra-cta {
    margin-left: 0;
  }

  .nav-submenu,
  .services-dropdown .nav-submenu,
  .industries-dropdown .nav-submenu,
  .about-dropdown .nav-submenu,
  .ai-dropdown .nav-submenu,
  .locations-dropdown .nav-submenu {
    width: 100%;
    max-width: none;
    margin-top: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .locations-dropdown .nav-submenu {
    grid-template-columns: 1fr;
  }

  .location-submenu-link img {
    width: 34px;
    height: 34px;
  }

  .section {
    padding-block: clamp(24px, 7vw, 34px);
  }

  .hero-actions,
  .location-hero-actions,
  .footer-cta-row,
  .lead-popup-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .location-hero-actions .button,
  .footer-cta-row .button,
  .lead-popup-actions .button,
  .lead-popup-actions a {
    width: 100%;
    justify-content: center;
  }

  .blog-post-card {
    grid-template-columns: 1fr;
  }

  .blog-post-thumb {
    min-height: 190px;
  }

  .contact-form-grid,
  .lead-popup-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-span-2,
  .lead-popup-form-span-2 {
    grid-column: auto;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-list,
  .footer-bottom-line,
  .footer-bottom-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    padding: 10px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 18px);
  }

  .section-heading h2,
  .page-hero h1,
  .article-hero h1,
  .contact-page-hero h1,
  .about-hero h1,
  .blog-hero h1,
  .industries-hero h1,
  .location-hero h1,
  .bgv-hero h1,
  .rpo-hero h1,
  .consultancy-hero h1,
  .ai-solution-hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .metrics-band article,
  .service-card,
  .feature-panel,
  .content-card,
  .contact-card,
  .split-card,
  .blog-feature-card,
  .blog-post-card,
  .article-sidebar-card,
  .location-overview-card,
  .location-service-card,
  .location-form-card,
  .location-sidebar-card,
  .location-process-card,
  .location-faq-card,
  .location-link-card,
  .location-city-card,
  .brochure-card,
  .footer-highlight-panel {
    border-radius: 22px;
  }

  .site-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Compact pre-footer hiring CTA - September 2, 2026 */
body[data-page="home"] .cta-section {
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: clamp(3rem, 5.5vw, 5.5rem);
}

body[data-page="home"] .cta-card.cta-card-split {
  padding: clamp(1.4rem, 2.4vw, 2.3rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at 13% 17%, rgba(20, 202, 192, 0.28), transparent 26%),
    radial-gradient(circle at 76% 8%, rgba(255, 112, 96, 0.24), transparent 22%),
    radial-gradient(circle at 96% 88%, rgba(123, 92, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #082342 0%, #102e6d 52%, #3a3f91 100%);
}

body[data-page="home"] .cta-card-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  gap: clamp(1.5rem, 2.6vw, 2.8rem);
  align-items: start;
}

body[data-page="home"] .cta-card-copy {
  min-height: 0;
  padding: clamp(0.3rem, 1vw, 0.8rem) 0;
}

body[data-page="home"] .cta-card-copy .eyebrow {
  margin-bottom: 0.7rem;
  color: #9ceef0;
  font-size: 0.76rem;
}

body[data-page="home"] .cta-card-copy h2 {
  max-width: 15ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 4rem);
  line-height: 1.03;
}

body[data-page="home"] .cta-card-intro {
  max-width: 47ch;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

body[data-page="home"] .cta-benefits {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

body[data-page="home"] .cta-benefits li {
  min-height: 0;
  padding: 0.68rem 0.85rem 0.68rem 2.7rem;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

body[data-page="home"] .cta-benefits li::before {
  left: 0.85rem;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #16d4cc, #4d7cff);
}

body[data-page="home"] .cta-benefits li::after {
  left: 1.27rem;
  top: 50%;
  transform: translateY(-64%) rotate(-45deg);
}

body[data-page="home"] .cta-benefits li:nth-child(2)::before {
  background: linear-gradient(135deg, #ff7e54, #ee5eaa);
}

body[data-page="home"] .cta-benefits li:nth-child(3)::before {
  background: linear-gradient(135deg, #f6bd45, #ff7e54);
}

body[data-page="home"] .cta-lead-form {
  gap: 0.9rem;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: 1.35rem;
}

body[data-page="home"] .cta-form-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

body[data-page="home"] .cta-form-grid {
  gap: 0.7rem;
}

body[data-page="home"] .cta-form-grid label {
  gap: 0.35rem;
}

body[data-page="home"] .cta-form-grid label span {
  font-size: 0.72rem;
}

body[data-page="home"] .cta-form-grid input,
body[data-page="home"] .cta-form-grid textarea {
  padding: 0.68rem 0.8rem;
  border-radius: 0.75rem;
  font-size: 0.84rem;
}

body[data-page="home"] .cta-form-grid textarea {
  min-height: 5.8rem;
}

body[data-page="home"] .cta-form-actions {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}

body[data-page="home"] .cta-form-actions .button-gradient {
  min-height: 2.7rem;
  padding-inline: 1.15rem;
  font-size: 0.82rem;
  background: linear-gradient(135deg, #ff7061, #e958a1);
  box-shadow: 0 12px 24px rgba(233, 88, 161, 0.22);
}

body[data-page="home"] .cta-form-note {
  font-size: 0.75rem;
  line-height: 1.45;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 860px) {
  body[data-page="home"] .cta-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .cta-card-copy h2 {
    max-width: 18ch;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .cta-section {
    margin-bottom: 2.5rem;
  }

  body[data-page="home"] .cta-card.cta-card-split {
    padding: 1.1rem;
    border-radius: 1.5rem;
  }

  body[data-page="home"] .cta-card-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  body[data-page="home"] .cta-form-grid,
  body[data-page="home"] .cta-form-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .cta-form-actions .button-gradient {
    width: 100%;
    justify-self: stretch;
  }
}

/* Compact homepage hero: every carousel banner follows one visual rhythm. */
@media (min-width: 981px) {
  body[data-page="home"] .hero-home {
    padding: 12px 0 10px;
  }

  body[data-page="home"] .hero-home-shell {
    gap: 12px;
    padding: clamp(16px, 2vw, 24px);
    border-radius: 28px;
  }

  body[data-page="home"] .hero-carousel {
    min-height: 400px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    min-height: 400px;
    gap: clamp(18px, 2.2vw, 28px);
    padding: clamp(18px, 2.2vw, 26px);
    border-radius: 24px;
  }

  body[data-page="home"] .hero-master-copy,
  body[data-page="home"] .service-hero-copy {
    display: flex;
    align-self: center;
    justify-content: center;
    gap: 8px;
    max-width: 34rem;
  }

  body[data-page="home"] .hero-master-copy .hero-brand-strip,
  body[data-page="home"] .service-hero-copy .hero-brand-strip {
    margin: 0;
  }

  body[data-page="home"] .hero-master-copy .eyebrow,
  body[data-page="home"] .service-hero-tag {
    min-height: 28px;
    padding: 0 11px;
    font-size: 0.7rem;
  }

  body[data-page="home"] .hero-master-copy h1 {
    max-width: 10ch;
    margin: 2px 0 0;
    font-size: clamp(2.25rem, 3.4vw, 3.55rem);
    line-height: 1;
  }

  body[data-page="home"] .hero-master-copy .hero-text,
  body[data-page="home"] .service-hero-copy p {
    margin: 0;
    font-size: 0.91rem;
    line-height: 1.45;
  }

  body[data-page="home"] .hero-actions {
    gap: 10px;
    margin-top: 4px;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .service-hero-copy a {
    min-height: 42px;
    padding: 0 16px;
    margin-top: 4px;
    border-radius: 12px;
  }

  body[data-page="home"] .hero-trust-line {
    gap: 8px;
    margin-top: 4px;
    padding: 7px 10px;
    border-radius: 12px;
  }

  body[data-page="home"] .hero-trust-badge {
    min-width: 0;
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.65rem;
  }

  body[data-page="home"] .hero-trust-line p,
  body[data-page="home"] .hero-rating-strip p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  body[data-page="home"] .hero-rating-strip,
  body[data-page="home"] .service-hero-copy .hero-rating-strip {
    gap: 7px;
    margin: 0;
  }

  body[data-page="home"] .hero-rating-stars {
    font-size: 0.98rem;
  }

  body[data-page="home"] .hero-master-copy .hero-highlights,
  body[data-page="home"] .hero-master-copy .hero-proof-grid {
    display: none;
  }

  body[data-page="home"] .service-hero-copy h2 {
    margin: 0;
    font-size: clamp(1.85rem, 2.5vw, 2.55rem);
    line-height: 1.02;
  }

  body[data-page="home"] .service-proof-row {
    gap: 6px;
  }

  body[data-page="home"] .service-proof-row span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media {
    min-height: 0;
    height: min(340px, 100%);
    max-height: 340px;
    align-self: center;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  body[data-page="home"] .hero-master-photo-shell {
    position: relative;
    inset: 0;
    min-height: 0;
    height: 100%;
    border-radius: inherit;
  }

  body[data-page="home"] .hero-master-badge {
    display: none;
  }

  body[data-page="home"] .service-hero-media-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 14px;
  }

  body[data-page="home"] .service-hero-media-card strong {
    font-size: 0.9rem;
  }

  body[data-page="home"] .service-hero-media-card span {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  body[data-page="home"] .hero-carousel-nav {
    gap: 8px;
    margin-top: 10px;
  }

  body[data-page="home"] .hero-carousel-button {
    min-width: 96px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .hero-carousel {
    min-height: 0;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    min-height: auto;
    padding: 22px;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media {
    min-height: 260px;
  }
}

/* Browser QA fixes - July 17 2026 */
body[data-page="home"] .hero-carousel-slide.reveal,
body[data-page="home"] .hero-carousel-slide.reveal.is-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body[data-page="home"] .hero-carousel-slide.reveal.is-before,
body[data-page="home"] .hero-carousel-slide.reveal.is-visible.is-before {
  transform: translate3d(0, -56px, 0) scale(0.985);
}

body[data-page="home"] .hero-carousel-slide.reveal.is-after,
body[data-page="home"] .hero-carousel-slide.reveal.is-visible.is-after {
  transform: translate3d(0, 56px, 0) scale(0.985);
}

body[data-page="home"] .hero-carousel-slide.reveal.is-active,
body[data-page="home"] .hero-carousel-slide.reveal.is-visible.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.cookie-consent-card {
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 18px;
  padding: 18px 22px;
}

.cookie-consent-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.cookie-consent-copy h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.2;
}

.cookie-consent-copy p {
  flex: 1 1 420px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-consent-actions {
  gap: 10px;
}

@media (max-width: 760px) {
  .cookie-consent-copy {
    display: grid;
    gap: 6px;
  }

  .cookie-consent-copy h2 {
    font-size: 0.98rem;
  }

  .cookie-consent-copy p {
    font-size: 0.84rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cookie-consent-card {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cookie-consent-actions .button,
  .cookie-settings-link {
    min-height: 42px;
    width: 100%;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .cookie-settings-link {
    white-space: nowrap;
  }

  body[data-page="home"] .hero-carousel-slide.reveal.is-before,
  body[data-page="home"] .hero-carousel-slide.reveal.is-visible.is-before {
    transform: translate3d(0, -26px, 0) scale(0.99);
  }

  body[data-page="home"] .hero-carousel-slide.reveal.is-after,
  body[data-page="home"] .hero-carousel-slide.reveal.is-visible.is-after {
    transform: translate3d(0, 26px, 0) scale(0.99);
  }
}

@media (max-width: 560px) {
  .cookie-consent {
    bottom: 8px;
    padding: 8px;
  }

  .cookie-consent-copy p {
    -webkit-line-clamp: 2;
  }
}

/* Recrute theme integration pass - July 2026 */
.button,
.site-nav a.header-contact-button,
.header-extra-cta {
  min-height: 50px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.site-nav a.header-contact-button:hover,
.header-extra-cta:hover {
  transform: translateY(-2px);
}

.button-primary,
.site-nav a.header-contact-button {
  background: linear-gradient(135deg, #2563eb 0%, #0b2d68 100%);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.18);
}

.button-secondary {
  border-color: rgba(37, 99, 235, 0.18);
  background: #ffffff;
  color: var(--navy);
}

.button-gradient,
.vacancy-cta {
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.18);
}

.hire-cta {
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.08);
}

.site-header {
  gap: 8px clamp(18px, 2vw, 28px);
  border-bottom-color: rgba(11, 31, 58, 0.06);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.05);
}

.site-header .brand-logo-full {
  max-width: 82px;
}

.header-utility {
  min-height: 34px;
  padding-bottom: 6px;
}

.site-nav {
  align-items: center;
}

.site-nav > a,
.nav-summary-link,
.nav-dropdown summary {
  font-weight: 700;
}

.nav-dropdown summary {
  min-height: 44px;
  border-radius: 12px;
}

.nav-submenu {
  top: calc(100% + 10px);
  padding: 14px;
  border-radius: 20px;
  border-color: rgba(11, 31, 58, 0.07);
  box-shadow: 0 26px 60px rgba(11, 31, 58, 0.14);
}

.nav-submenu a {
  min-height: 42px;
  font-weight: 700;
  border-radius: 14px;
}

.header-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.footer-brand-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(2, 8, 20, 0.22);
}

.footer-brand-mark img {
  width: 100%;
  max-width: 72px;
  height: auto;
  display: block;
}

.footer-contact-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-contact-box {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-box:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  padding: 0 10px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="home"] .hero {
  padding-top: 20px;
}

body[data-page="home"] .hero-home-shell {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 28%),
    radial-gradient(circle at right center, rgba(20, 184, 166, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fe 100%);
  box-shadow: 0 32px 80px rgba(11, 31, 58, 0.1);
}

body[data-page="home"] .hero-carousel {
  min-height: 600px;
}

body[data-page="home"] .hero-master-banner,
body[data-page="home"] .service-hero-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  min-height: 520px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .hero-master-banner::before,
body[data-page="home"] .service-hero-banner::before {
  display: none;
}

body[data-page="home"] .hero-master-copy .eyebrow,
body[data-page="home"] .service-hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1757c2;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-master-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

body[data-page="home"] .hero-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(11, 31, 58, 0.04);
}

body[data-page="home"] .hero-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b2d68, #2563eb);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-trust-line p {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}

body[data-page="home"] .hero-master-visual {
  position: relative;
  min-height: 480px;
}

body[data-page="home"] .hero-master-photo-shell {
  position: absolute;
  inset: 18px 24px 18px 42px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.18);
}

body[data-page="home"] .hero-master-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="home"] .hero-master-overlay {
  position: absolute;
  inset: auto;
  pointer-events: none;
}

body[data-page="home"] .hero-master-overlay-one {
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 45, 104, 0.18), rgba(11, 45, 104, 0.04) 40%, rgba(20, 184, 166, 0.18) 100%);
}

body[data-page="home"] .hero-master-overlay-two {
  width: 220px;
  height: 220px;
  right: -40px;
  top: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
}

body[data-page="home"] .hero-master-badge {
  max-width: 220px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-page="home"] .hero-master-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

body[data-page="home"] .hero-master-badge span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

body[data-page="home"] .hero-master-badge-one {
  top: 18px;
  left: 0;
}

body[data-page="home"] .hero-master-badge-two {
  right: 0;
  top: 150px;
}

body[data-page="home"] .hero-master-badge-three {
  left: 30px;
  bottom: 12px;
}

body[data-page="home"] .service-hero-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body[data-page="home"] .service-hero-copy p {
  max-width: 52ch;
  font-size: 1.04rem;
  line-height: 1.72;
}

body[data-page="home"] .service-hero-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  margin-top: 18px;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0b2d68);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.16);
}

body[data-page="home"] .service-hero-copy a::after {
  display: none;
}

body[data-page="home"] .service-hero-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.16);
}

body[data-page="home"] .service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="home"] .service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.06) 0%, rgba(11, 31, 58, 0.24) 100%);
}

body[data-page="home"] .recruitment-media::before,
body[data-page="home"] .staffing-media::before,
body[data-page="home"] .contracting-media::before,
body[data-page="home"] .bgv-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

body[data-page="home"] .recruitment-media::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), transparent 42%, rgba(11, 45, 104, 0.32));
}

body[data-page="home"] .staffing-media::before {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), transparent 42%, rgba(37, 99, 235, 0.28));
}

body[data-page="home"] .contracting-media::before {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), transparent 42%, rgba(11, 31, 58, 0.32));
}

body[data-page="home"] .bgv-media::before {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), transparent 42%, rgba(8, 48, 38, 0.34));
}

body[data-page="home"] .service-hero-media-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(11, 31, 58, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="home"] .service-hero-media-card strong {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

body[data-page="home"] .service-hero-media-card span {
  color: rgba(239, 244, 251, 0.82);
  line-height: 1.55;
}

body[data-page="home"] .hero-carousel-nav {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 22px;
}

body[data-page="home"] .hero-carousel-button {
  min-width: 112px;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .hero-carousel-button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0b2d68);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.18);
}

body[data-page="home"] .metrics-band {
  margin-top: 18px;
}

body[data-page="home"] .metrics-band article {
  padding: 26px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 252, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.06));
  border: 1px solid rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .section-cta-strip {
  padding: 22px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 20%),
    linear-gradient(180deg, #f6f9ff 0%, #edf3fc 100%);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .service-card,
body[data-page="home"] .feature-panel,
body[data-page="home"] .content-card,
body[data-page="home"] .alpha-stat-card,
body[data-page="home"] .recognition-card,
body[data-page="home"] .blog-post-card {
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 253, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .service-card:hover,
body[data-page="home"] .feature-panel:hover,
body[data-page="home"] .content-card:hover,
body[data-page="home"] .alpha-stat-card:hover,
body[data-page="home"] .recognition-card:hover,
body[data-page="home"] .blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(11, 31, 58, 0.12);
}

body[data-page="home"] .client-logo-wall {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
}

body[data-page="home"] .client-logo-wall .client-logo-card {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(11, 31, 58, 0.06) !important;
  background: #ffffff !important;
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.06) !important;
}

body[data-page="home"] .client-logo-wall .client-logo-card::before,
body[data-page="home"] .client-logo-wall .client-logo-card::after {
  content: none !important;
}

body[data-page="home"] .client-logo-wall .client-logo-card img {
  width: 100%;
  max-width: 150px;
  max-height: 52px;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

body[data-page="home"] .blog-post-thumb {
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}

body[data-page="home"] .blog-thumb-recruitment {
  background-image:
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(11, 45, 104, 0.34)),
    url("assets/optimized/employees-meeting-room-office.jpg");
}

body[data-page="home"] .blog-thumb-bgv {
  background-image:
    linear-gradient(135deg, rgba(20, 184, 166, 0.24), rgba(8, 48, 38, 0.36)),
    url("assets/optimized/ai-images.jpg");
}

body[data-page="home"] .blog-thumb-ai {
  background-image:
    linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(37, 99, 235, 0.28)),
    url("assets/optimized/diverse-devices-team.jpg");
}

@media (max-width: 1180px) {
  .header-nav-actions {
    margin-left: 0;
  }

  .footer-contact-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-nav {
    gap: 12px;
  }

  .site-nav a.header-contact-button {
    margin-left: 0;
  }

  .header-nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  body[data-page="home"] .hero-carousel {
    min-height: 540px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media {
    min-height: 340px;
  }

  body[data-page="home"] .hero-master-photo-shell {
    inset: 0;
  }
}

@media (max-width: 760px) {
  .header-nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-nav-actions .header-extra-cta,
  .site-nav a.header-contact-button {
    width: 100%;
  }

  .footer-brand-mark {
    width: 78px;
    height: 78px;
  }

  body[data-page="home"] .hero-home-shell {
    padding: 18px;
    border-radius: 28px;
  }

  body[data-page="home"] .hero-master-copy h1,
  body[data-page="home"] .service-hero-copy h2 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }

  body[data-page="home"] .hero-master-badge {
    position: static;
    max-width: none;
  }

  body[data-page="home"] .hero-master-visual {
    display: grid;
    gap: 14px;
  }

  body[data-page="home"] .hero-master-photo-shell {
    position: relative;
    min-height: 260px;
  }

  body[data-page="home"] .service-hero-media-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  body[data-page="home"] .hero-carousel-button {
    min-width: 92px;
  }
}

/* Recrute WordPress theme asset pass - July 2026 */
.header-utility {
  min-height: 40px;
  padding-top: 3px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.header-utility::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #28458b 0%, #233b7a 100%);
}

.header-utility-links {
  width: 100%;
  justify-content: space-between;
  gap: 12px;
}

.header-utility-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.header-utility-item img {
  width: 14px;
  height: 14px;
  display: block;
}

.header-utility-item-static {
  opacity: 0.94;
}

.header-call-link {
  color: #ffffff;
}

.header-call-link .header-call-icon img {
  width: 14px;
  height: 14px;
}

.button-primary,
.site-nav a.header-contact-button,
body[data-page="home"] .service-hero-copy a,
body[data-page="home"] .hero-carousel-button.is-active {
  background: linear-gradient(135deg, #c96f12 0%, #ea9520 100%);
  box-shadow: 0 18px 34px rgba(201, 111, 18, 0.22);
}

.button-gradient,
.vacancy-cta {
  background: linear-gradient(135deg, #ff4e69 0%, #ff7d44 100%);
  box-shadow: 0 18px 34px rgba(255, 78, 105, 0.2);
}

body[data-page="home"] .hero-home-shell {
  background:
    radial-gradient(circle at top left, rgba(201, 111, 18, 0.1), transparent 24%),
    radial-gradient(circle at right center, rgba(88, 180, 227, 0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fe 100%);
}

body[data-page="home"] .hero-master-copy .eyebrow,
body[data-page="home"] .service-hero-tag {
  background: rgba(201, 111, 18, 0.1);
  color: #c96f12;
}

body[data-page="home"] .hero-trust-badge {
  background: linear-gradient(135deg, #c96f12, #ea9520);
}

body[data-page="home"] .hero-master-overlay-one {
  background: linear-gradient(135deg, rgba(35, 59, 122, 0.16), rgba(11, 45, 104, 0.04) 40%, rgba(201, 111, 18, 0.16) 100%);
}

body[data-page="home"] .trust-marquee {
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  padding: 18px 24px;
  border-radius: 0;
  background: linear-gradient(180deg, #071223 0%, #0a1324 100%);
  box-shadow: 0 20px 54px rgba(7, 18, 35, 0.22);
}

body[data-page="home"] .trust-marquee p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
}

body[data-page="home"] .trust-marquee-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

body[data-page="home"] .trust-marquee-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 142px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="home"] .trust-marquee-logo img {
  max-width: 110px;
  max-height: 28px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.8);
  opacity: 0.92;
}

.theme-footer-cta {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  gap: 0;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #58b4e3 0%, #52aee0 48%, #60b9e5 100%);
  box-shadow: 0 28px 64px rgba(8, 24, 56, 0.22);
}

.theme-footer-cta-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.theme-footer-cta-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 38%);
}

.theme-footer-cta-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.theme-footer-cta-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
}

.theme-footer-cta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.theme-footer-cta-copy h3 {
  margin: 0;
  max-width: 13ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.02;
  color: #ffffff;
}

.theme-footer-cta-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.72;
}

.theme-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.theme-footer-cta-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
  .header-utility-links,
  .header-utility-meta {
    justify-content: center;
  }

  .theme-footer-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .trust-marquee {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-utility-links,
  .header-utility-meta {
    justify-content: center;
  }

  .header-utility-divider {
    display: none;
  }

  body[data-page="home"] .trust-marquee {
    padding: 18px;
  }

  body[data-page="home"] .trust-marquee-logo {
    min-width: 132px;
  }

  .theme-footer-cta-visual {
    min-height: 220px;
  }

  .theme-footer-cta-copy h3 {
    max-width: none;
  }
}

/* Header alignment refinement - September 2026 */
.site-header {
  gap: 0 clamp(18px, 1.8vw, 28px);
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.045);
}

.site-header .brand {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
}

.site-header .brand-logo-full {
  max-width: 68px;
}

.header-utility {
  position: relative;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.header-utility::before {
  background: linear-gradient(135deg, #0b1f3a 0%, #13315c 54%, #1f4f8d 100%);
}

.header-utility-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.header-utility-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-right: auto;
}

.header-utility-item,
.header-call-link {
  min-height: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.header-utility-item {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.81rem;
  font-weight: 600;
}

.header-utility-item:hover {
  color: #ffffff;
}

.header-call-link {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.header-call-link span:last-child {
  white-space: nowrap;
}

.header-call-icon {
  width: 20px;
  height: 20px;
}

.header-call-icon img {
  width: 20px;
  height: 20px;
}

.header-socials {
  gap: 8px;
}

.header-social-link {
  width: 30px;
  height: 30px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-social-link:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.header-social-link img {
  width: 26px;
  height: 26px;
}

.site-nav {
  min-width: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(14px, 1vw, 20px);
}

.site-nav > a,
.nav-dropdown summary,
.nav-summary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #102647;
  font-size: clamp(0.95rem, 0.22vw + 0.92rem, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav > a {
  position: relative;
}

.site-nav > a:hover,
.nav-summary-link:hover,
.nav-dropdown:hover summary {
  color: #1d4ed8;
}

.nav-dropdown {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown summary {
  padding: 0 10px;
  border-radius: 14px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-summary-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-summary-link {
  min-height: 44px;
}

.nav-dropdown:not(.ai-dropdown) summary:hover,
.nav-dropdown[open]:not(.ai-dropdown) summary {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.06);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.site-nav > .ai-dropdown {
  margin-left: clamp(14px, 1vw, 20px);
}

.ai-dropdown summary {
  min-height: 44px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.ai-dropdown summary:hover,
.ai-dropdown[open] summary {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5a2 100%);
  box-shadow: 0 16px 30px rgba(20, 88, 201, 0.2);
}

.site-nav a.header-contact-button,
.site-nav a.header-extra-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.site-nav a.header-contact-button {
  margin-left: auto;
  border: 1px solid transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #183b7a 0%, #2563eb 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.site-nav a.header-contact-button:hover {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #0f2d61 0%, #1d4ed8 100%);
}

.header-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}

.header-nav-actions .header-extra-cta {
  justify-content: center;
}

.hire-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #0b1f3a 0%, #2563eb 100%);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.18);
}

.vacancy-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.2);
}

.site-nav a.header-contact-button,
.site-nav a.header-contact-button:hover,
.header-nav-actions .header-extra-cta,
.header-nav-actions .header-extra-cta:hover,
.header-nav-actions .hire-cta,
.header-nav-actions .hire-cta:hover,
.header-nav-actions .vacancy-cta,
.header-nav-actions .vacancy-cta:hover {
  color: #ffffff;
}

.nav-submenu {
  top: calc(100% + 8px);
  padding: 14px;
  border-radius: 18px;
  border-color: rgba(11, 31, 58, 0.08);
  box-shadow: 0 24px 56px rgba(11, 31, 58, 0.14);
}

.nav-submenu a {
  min-height: 44px;
  color: #102647;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-submenu a:hover {
  color: #1d4ed8;
}

@media (max-width: 1260px) {
  .header-utility-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-utility-meta {
    margin-right: 0;
    justify-content: center;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav > .ai-dropdown {
    margin-left: 8px;
  }

  .header-nav-actions {
    gap: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 1024px) {
  .site-header .brand {
    min-height: 64px;
  }

  .site-header .brand-logo-full {
    max-width: 62px;
  }

  .header-utility {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

@media (max-width: 760px) {
  .header-utility {
    min-height: auto;
  }

  .header-utility-links,
  .header-utility-meta {
    gap: 10px;
  }
}

/* Client logo section refinement - September 1, 2026 */
body[data-page="home"] .trust-marquee {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1rem 0 2.75rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

body[data-page="home"] .trust-marquee::before,
body[data-page="home"] .trust-marquee::after {
  content: none !important;
}

body[data-page="home"] .trust-marquee-copy {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  justify-items: center;
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

body[data-page="home"] .trust-marquee-copy .eyebrow {
  color: #6b7894;
  letter-spacing: 0.22em;
}

body[data-page="home"] .trust-marquee-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #1c2758;
  text-wrap: balance;
}

body[data-page="home"] .trust-marquee-meta {
  display: flex;
  justify-content: center;
  width: 100%;
}

body[data-page="home"] .trust-marquee-meta span {
  display: block;
  max-width: 54rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5e6c86;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

body[data-page="home"] .trust-marquee-meta span::before,
body[data-page="home"] .trust-marquee-copy span::before,
body[data-page="home"] .trust-marquee-logos span::before {
  content: none !important;
}

body[data-page="home"] .trust-marquee-logos {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

body[data-page="home"] .trust-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3vw, 4rem);
  width: max-content;
  animation: homeTrustMarquee 32s linear infinite;
}

body[data-page="home"] .trust-marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 9rem;
  min-height: 0;
  padding: 0.9rem 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    filter 0.28s ease;
}

body[data-page="home"] .trust-marquee-logo--wordmark {
  padding-inline: 0.35rem;
}

body[data-page="home"] .trust-marquee-logo img {
  width: auto;
  max-width: 11rem;
  max-height: 3.1rem;
  filter: none;
  opacity: 1;
  transition: transform 0.28s ease;
}

body[data-page="home"] .logo-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="home"] .logo-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  max-width: 100%;
}

body[data-page="home"] .logo-subword {
  color: #5d718d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="home"] .logo-stack--iota .logo-subword {
  color: #0f766e;
}

body[data-page="home"] .logo-stack--ids .logo-subword {
  color: #2558c6;
}

body[data-page="home"] .logo-stack--omax .logo-subword {
  color: #c2410c;
}

body[data-page="home"] .logo-wordmark--iota {
  color: #0b1f3a;
  font-size: clamp(1rem, 1.12vw, 1.24rem);
}

body[data-page="home"] .logo-wordmark--ids {
  color: #12459f;
  font-size: clamp(1rem, 1.16vw, 1.3rem);
}

body[data-page="home"] .logo-wordmark--omax {
  color: #172554;
  font-size: clamp(0.98rem, 1.12vw, 1.22rem);
}

body[data-page="home"] .logo-wordmark--netsmartz {
  color: #1b2240;
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
}

body[data-page="home"] .logo-wordmark--korecent {
  color: #0f2b66;
  font-size: clamp(1rem, 1.08vw, 1.22rem);
}

body[data-page="home"] .logo-wordmark--codebrew {
  color: #0b1f3a;
  font-size: clamp(0.98rem, 1.02vw, 1.12rem);
}

body[data-page="home"] .logo-wordmark-accent {
  color: #14b8a6;
  font-weight: 900;
  letter-spacing: -0.05em;
}

body[data-page="home"] .trust-marquee-logo:hover,
body[data-page="home"] .trust-marquee-logo:focus-visible {
  transform: translateY(-0.2rem) scale(1.03);
  opacity: 1;
  filter: saturate(1.08);
  outline: none;
}

body[data-page="home"] .trust-marquee-logo:hover img,
body[data-page="home"] .trust-marquee-logo:focus-visible img {
  transform: scale(1.04);
}

body[data-page="home"] .trust-marquee-logos:hover .trust-marquee-track,
body[data-page="home"] .trust-marquee-logos:focus-within .trust-marquee-track {
  animation-play-state: paused;
}

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

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

body[data-page="home"] .client-trust-section .section-heading {
  max-width: 74rem;
}

body[data-page="home"] .client-sector-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

body[data-page="home"] .client-sector-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94));
  border: 1px solid rgba(11, 31, 58, 0.08);
  color: #123274;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(11, 31, 58, 0.05);
}

body[data-page="home"] .client-logo-wall {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  align-items: stretch;
}

body[data-page="home"] .client-logo-wall .client-logo-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(34px, auto) minmax(76px, 1fr) minmax(42px, auto);
  align-items: center;
  justify-items: stretch;
  gap: 14px;
  min-height: 204px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(11, 31, 58, 0.06) !important;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94)) !important;
  box-shadow: 0 18px 38px rgba(11, 31, 58, 0.08) !important;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

body[data-page="home"] .client-logo-wall .client-logo-card::before,
body[data-page="home"] .client-logo-wall .client-logo-card::after {
  content: none !important;
}

body[data-page="home"] .client-logo-frame {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 242, 252, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body[data-page="home"] .client-logo-frame--brand {
  background: linear-gradient(135deg, #eff5ff 0%, #f8fbff 52%, #edf7f6 100%);
}

body[data-page="home"] .client-logo-frame img[src*="sourcefuse"],
body[data-page="home"] .trust-marquee-logo img[src*="sourcefuse"] {
  max-height: 34px;
}

body[data-page="home"] .client-logo-frame img[src*="hic-global"] {
  max-height: 44px;
}

body[data-page="home"] .trust-marquee-logo img[src*="hic-global"] {
  max-height: 38px;
}

body[data-page="home"] .logo-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
}

body[data-page="home"] .logo-lockup--korecent img {
  width: 30px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

body[data-page="home"] .client-logo-wall .client-logo-card img {
  width: auto;
  max-width: 162px;
  max-height: 52px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

body[data-page="home"] .client-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}

body[data-page="home"] .client-logo-card p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6em;
  padding-inline: 6px;
  color: #274166;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.28;
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

body[data-page="home"] .client-logo-wall .client-logo-card:hover,
body[data-page="home"] .client-logo-wall .client-logo-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.18) !important;
  box-shadow: 0 28px 48px rgba(11, 31, 58, 0.15) !important;
}

body[data-page="home"] .client-logo-wall .client-logo-card:hover .client-logo-frame,
body[data-page="home"] .client-logo-wall .client-logo-card:focus-visible .client-logo-frame {
  background: linear-gradient(135deg, rgba(223, 235, 255, 0.9), rgba(238, 245, 255, 0.96));
}

body[data-page="home"] .client-logo-wall .client-logo-card:hover img,
body[data-page="home"] .client-logo-wall .client-logo-card:focus-visible img {
  transform: scale(1.06);
}

body[data-page="home"] .client-logo-wall .client-logo-card:hover p,
body[data-page="home"] .client-logo-wall .client-logo-card:focus-visible p {
  color: #0f2b66;
}

body[data-page="home"] .client-logo-card.is-blue .client-logo-chip {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
}

body[data-page="home"] .client-logo-card.is-teal .client-logo-chip {
  color: #0f766e;
  background: rgba(20, 184, 166, 0.12);
}

body[data-page="home"] .client-logo-card.is-orange .client-logo-chip {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.12);
}

body[data-page="home"] .client-logo-card.is-purple .client-logo-chip {
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.12);
}

body[data-page="home"] .client-logo-card.is-blue {
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.08) !important;
}

body[data-page="home"] .client-logo-card.is-teal {
  box-shadow: 0 18px 38px rgba(20, 184, 166, 0.09) !important;
}

body[data-page="home"] .client-logo-card.is-orange {
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.09) !important;
}

body[data-page="home"] .client-logo-card.is-purple {
  box-shadow: 0 18px 38px rgba(124, 58, 237, 0.09) !important;
}

@media (max-width: 1080px) {
  body[data-page="home"] .trust-marquee {
    gap: 1.15rem;
  }

  body[data-page="home"] .trust-marquee-copy h2 {
    font-size: clamp(2.3rem, 5.5vw, 4.3rem);
  }

  body[data-page="home"] .client-logo-wall .client-logo-card {
    min-height: 196px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .trust-marquee {
    padding: 0.25rem 0 1.75rem;
  }

  body[data-page="home"] .trust-marquee-copy {
    gap: 0.75rem;
  }

  body[data-page="home"] .trust-marquee-copy h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  body[data-page="home"] .trust-marquee-meta span {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  body[data-page="home"] .trust-marquee-track {
    gap: 1.8rem;
    animation-duration: 26s;
  }

  body[data-page="home"] .trust-marquee-logo {
    min-width: 7.75rem;
    padding: 0.65rem 0;
  }

  body[data-page="home"] .trust-marquee-logo img {
    max-width: 8.5rem;
    max-height: 2.25rem;
  }

  body[data-page="home"] .client-sector-strip {
    margin-bottom: 18px;
  }

  body[data-page="home"] .client-logo-wall .client-logo-card {
    min-height: 188px;
  }

  body[data-page="home"] .client-logo-frame {
    min-height: 60px;
  }

  body[data-page="home"] .logo-subword {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  body[data-page="home"] .logo-wordmark--iota,
  body[data-page="home"] .logo-wordmark--ids,
  body[data-page="home"] .logo-wordmark--omax,
  body[data-page="home"] .logo-wordmark--netsmartz,
  body[data-page="home"] .logo-wordmark--korecent,
  body[data-page="home"] .logo-wordmark--codebrew {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .trust-marquee-track {
    animation: none;
    transform: none;
  }
}

/* Homepage hero refinement - September 2026 */
body[data-page="home"] .hero-home {
  padding: 10px 0 18px;
}

body[data-page="home"] .hero-home-shell {
  gap: 18px;
  padding: clamp(18px, 2.8vw, 28px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.11), transparent 26%),
    radial-gradient(circle at right center, rgba(20, 184, 166, 0.11), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .hero-carousel {
  min-height: 0;
}

body[data-page="home"] .hero-carousel-slide {
  transform: translate3d(0, 28px, 0) scale(0.994);
}

body[data-page="home"] .hero-carousel-slide.is-before {
  transform: translate3d(0, -28px, 0) scale(0.994);
}

body[data-page="home"] .hero-carousel-slide.is-after {
  transform: translate3d(0, 28px, 0) scale(0.994);
}

body[data-page="home"] .hero-carousel-slide.is-active {
  transform: translate3d(0, 0, 0) scale(1);
}

body[data-page="home"] .hero-master-banner,
body[data-page="home"] .service-hero-banner {
  min-height: clamp(410px, 35vw, 450px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(24px, 2.5vw, 36px);
  align-items: center;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 32px;
}

body[data-page="home"] .hero-master-copy,
body[data-page="home"] .service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  max-width: 38rem;
  padding-right: 0;
}

body[data-page="home"] .hero-master-copy .eyebrow,
body[data-page="home"] .service-hero-tag {
  min-height: 36px;
  padding: 0 15px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body[data-page="home"] .hero-master-copy h1 {
  max-width: 11ch;
  margin: 12px 0 0;
  font-size: clamp(2.8rem, 4.1vw, 4.5rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  color: #0d2b61;
}

body[data-page="home"] .hero-master-copy .hero-text {
  max-width: 50ch;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.64;
  color: #4c5c71;
}

body[data-page="home"] .hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

body[data-page="home"] .hero-actions .button {
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

body[data-page="home"] .hero-actions .button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0b2d68 0%, #2563eb 100%);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.18);
}

body[data-page="home"] .hero-actions .button-secondary {
  color: #123274;
  border: 1px solid rgba(18, 50, 116, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
  box-shadow: 0 12px 26px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .hero-trust-line {
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 50, 116, 0.1);
  background: rgba(18, 50, 116, 0.04);
}

body[data-page="home"] .hero-trust-badge {
  min-width: 82px;
  min-height: 32px;
  padding: 0 12px;
  background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
}

body[data-page="home"] .hero-trust-line p {
  color: #123274;
  font-size: 0.95rem;
  font-weight: 600;
}

body[data-page="home"] .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

body[data-page="home"] .hero-highlights li {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.08);
  color: #14376b;
  font-size: 0.92rem;
  font-weight: 600;
}

body[data-page="home"] .hero-master-visual {
  position: relative;
  min-height: clamp(300px, 26vw, 340px);
}

body[data-page="home"] .hero-master-photo-shell {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 54px rgba(11, 31, 58, 0.14);
}

body[data-page="home"] .hero-master-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(1.08) contrast(1.04) brightness(0.99);
}

body[data-page="home"] .hero-master-overlay-one {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 45, 104, 0.12), rgba(11, 45, 104, 0.02) 46%, rgba(20, 184, 166, 0.16) 100%),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 24%);
}

body[data-page="home"] .hero-master-overlay-two {
  width: 180px;
  height: 180px;
  right: -24px;
  top: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
}

body[data-page="home"] .hero-master-badge {
  max-width: 190px;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 34px rgba(11, 31, 58, 0.12);
}

body[data-page="home"] .hero-master-badge strong {
  margin-bottom: 5px;
  color: #0d2b61;
  font-size: 0.95rem;
}

body[data-page="home"] .hero-master-badge span {
  color: #5a6a7f;
  font-size: 0.86rem;
  line-height: 1.48;
}

body[data-page="home"] .hero-master-badge-one {
  top: 16px;
  left: -8px;
}

body[data-page="home"] .hero-master-badge-two {
  top: 118px;
  right: 10px;
}

body[data-page="home"] .hero-master-badge-three {
  left: 18px;
  bottom: 18px;
}

body[data-page="home"] .service-hero-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 2.8vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

body[data-page="home"] .service-hero-copy p {
  max-width: 50ch;
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4c5c71;
}

body[data-page="home"] .service-hero-copy a {
  margin-top: 18px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.1);
}

body[data-page="home"] .service-hero-media {
  position: relative;
  min-height: clamp(300px, 26vw, 340px);
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 54px rgba(11, 31, 58, 0.14);
}

body[data-page="home"] .service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.1) contrast(1.05) brightness(1);
}

body[data-page="home"] .service-hero-media::after {
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.04) 0%, rgba(11, 31, 58, 0.26) 100%);
}

body[data-page="home"] .service-hero-media-card {
  left: 20px;
  right: 20px;
  bottom: 20px;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 28px rgba(11, 31, 58, 0.14);
}

body[data-page="home"] .service-hero-media-card strong {
  font-size: 1rem;
}

body[data-page="home"] .service-hero-media-card span {
  font-size: 0.92rem;
  line-height: 1.52;
}

body[data-page="home"] .recruitment-banner {
  background:
    radial-gradient(circle at 88% 14%, rgba(59, 130, 246, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(245, 249, 255, 0.98) 44%, rgba(225, 238, 255, 0.96) 100%);
}

body[data-page="home"] .recruitment-banner h2 {
  color: #10306d;
}

body[data-page="home"] .recruitment-media::before {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), transparent 48%, rgba(11, 45, 104, 0.22)),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.22), transparent 24%);
}

body[data-page="home"] .recruitment-media img {
  filter: saturate(1.08) contrast(1.05) brightness(1);
}

body[data-page="home"] .staffing-banner {
  background:
    radial-gradient(circle at 84% 16%, rgba(20, 184, 166, 0.2), transparent 18%),
    radial-gradient(circle at 68% 84%, rgba(249, 115, 22, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(242, 252, 249, 0.98) 42%, rgba(225, 247, 241, 0.96) 100%);
}

body[data-page="home"] .staffing-banner .service-hero-tag {
  background: rgba(20, 184, 166, 0.1);
  color: #0d8f85;
}

body[data-page="home"] .staffing-banner h2 {
  color: #0f4d69;
}

body[data-page="home"] .staffing-media::before {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.14), transparent 48%, rgba(16, 82, 131, 0.22)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 22%);
}

body[data-page="home"] .staffing-media img {
  filter: saturate(1.12) contrast(1.04) brightness(1.01) hue-rotate(-8deg);
}

body[data-page="home"] .staffing-banner a {
  background: linear-gradient(135deg, #0f766e 0%, #2563eb 100%);
}

body[data-page="home"] .contracting-banner {
  background:
    radial-gradient(circle at 86% 14%, rgba(124, 58, 237, 0.18), transparent 18%),
    radial-gradient(circle at 72% 84%, rgba(236, 72, 153, 0.14), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(249, 246, 255, 0.98) 40%, rgba(239, 232, 255, 0.96) 100%);
}

body[data-page="home"] .contracting-banner .service-hero-tag {
  background: rgba(124, 58, 237, 0.1);
  color: #6d37da;
}

body[data-page="home"] .contracting-banner h2 {
  color: #3f3592;
}

body[data-page="home"] .contracting-media::before {
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.14), transparent 48%, rgba(11, 31, 58, 0.26)),
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.18), transparent 24%);
}

body[data-page="home"] .contracting-media img {
  filter: saturate(1.1) contrast(1.05) brightness(1) hue-rotate(10deg);
}

body[data-page="home"] .contracting-banner a {
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

body[data-page="home"] .bgv-banner {
  background:
    radial-gradient(circle at 86% 14%, rgba(34, 197, 94, 0.16), transparent 18%),
    radial-gradient(circle at 70% 82%, rgba(234, 179, 8, 0.14), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(246, 252, 248, 0.98) 42%, rgba(232, 247, 238, 0.96) 100%);
}

body[data-page="home"] .bgv-banner .service-hero-copy p {
  color: #547167;
}

body[data-page="home"] .bgv-media::before {
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.14), transparent 48%, rgba(8, 48, 38, 0.24)),
    radial-gradient(circle at top right, rgba(234, 179, 8, 0.16), transparent 22%);
}

body[data-page="home"] .bgv-media img {
  filter: saturate(1.08) contrast(1.04) brightness(0.99) hue-rotate(-16deg);
}

body[data-page="home"] .hero-carousel-nav {
  justify-content: flex-start;
  gap: 12px;
  margin-top: 20px;
}

body[data-page="home"] .hero-carousel-button {
  min-width: 106px;
  min-height: 46px;
  border-radius: 14px;
  color: #10306d;
  border: 1px solid rgba(16, 48, 109, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(11, 31, 58, 0.05);
}

body[data-page="home"] .hero-carousel-button.is-active {
  background: linear-gradient(135deg, #0b2d68 0%, #2563eb 100%);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.18);
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }

  body[data-page="home"] .hero-master-copy,
  body[data-page="home"] .service-hero-copy {
    max-width: none;
  }

  body[data-page="home"] .hero-master-copy h1 {
    max-width: none;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media {
    min-height: 320px;
  }

  body[data-page="home"] .hero-master-photo-shell {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-home-shell {
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    padding: 18px;
    border-radius: 24px;
  }

  body[data-page="home"] .hero-master-copy h1,
  body[data-page="home"] .service-hero-copy h2 {
    font-size: clamp(2.1rem, 8vw, 3.1rem);
  }

  body[data-page="home"] .hero-actions {
    gap: 10px;
  }

  body[data-page="home"] .hero-actions .button {
    flex: 1 1 160px;
    min-width: 0;
  }

  body[data-page="home"] .hero-highlights li {
    width: 100%;
    justify-content: flex-start;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media,
  body[data-page="home"] .hero-master-photo-shell {
    min-height: 260px;
  }

    body[data-page="home"] .hero-master-badge {
      position: static;
      max-width: none;
    }
  }

/* Homepage hero scroller consistency pass - September 2026 */
body[data-page="home"] .service-hero-copy {
  display: grid;
  align-content: center;
  align-self: stretch;
  grid-template-rows: auto minmax(4.8rem, auto) minmax(5rem, auto) auto;
}

body[data-page="home"] .service-hero-tag {
  justify-content: center;
  min-width: 220px;
}

body[data-page="home"] .service-hero-copy h2 {
  display: flex;
  align-items: flex-end;
}

body[data-page="home"] .service-hero-copy p {
  display: block;
}

body[data-page="home"] .service-hero-copy a {
  justify-self: flex-start;
  align-self: end;
}

body[data-page="home"] .service-hero-media,
body[data-page="home"] .hero-master-visual {
  aspect-ratio: 16 / 9;
}

body[data-page="home"] .service-hero-media-card {
  min-height: 88px;
  align-content: center;
}

body[data-page="home"] .recruitment-banner {
  border-color: rgba(37, 99, 235, 0.12);
}

body[data-page="home"] .staffing-banner {
  border-color: rgba(20, 184, 166, 0.12);
}

body[data-page="home"] .contracting-banner {
  border-color: rgba(124, 58, 237, 0.12);
}

body[data-page="home"] .bgv-banner {
  border-color: rgba(26, 124, 82, 0.12);
}

body[data-page="home"] .recruitment-banner .service-hero-tag {
  background: rgba(37, 99, 235, 0.09);
  color: #1f56c6;
}

body[data-page="home"] .recruitment-banner a {
  background: linear-gradient(135deg, #0b2d68 0%, #2563eb 100%);
}

body[data-page="home"] .staffing-banner a {
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
}

body[data-page="home"] .contracting-banner a {
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.18);
}

body[data-page="home"] .bgv-banner a {
  box-shadow: 0 14px 28px rgba(26, 124, 82, 0.18);
}

@media (max-width: 1080px) {
  body[data-page="home"] .service-hero-copy {
    grid-template-rows: auto auto auto auto;
  }

  body[data-page="home"] .service-hero-tag {
    min-width: 0;
    justify-content: flex-start;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media {
    min-height: 280px;
  }
}

/* Homepage hero branding proof layer - September 1, 2026 */
body[data-page="home"] .hero-master-copy {
  max-width: 40rem;
}

body[data-page="home"] .hero-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

body[data-page="home"] .hero-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(13, 43, 97, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.92));
  box-shadow: 0 10px 20px rgba(11, 31, 58, 0.05);
  color: #173670;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

body[data-page="home"] a.hero-brand-chip:hover,
body[data-page="home"] a.hero-brand-chip:focus-visible {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

body[data-page="home"] .hero-brand-chip--iso {
  color: #0f4c7a;
  background:
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.94));
}

body[data-page="home"] .hero-brand-chip--experience {
  color: #6b37d8;
  background:
    radial-gradient(circle at left center, rgba(124, 58, 237, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 255, 0.94));
}

body[data-page="home"] .hero-iso-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #2563eb;
  flex: 0 0 auto;
}

body[data-page="home"] .hero-iso-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

body[data-page="home"] .hero-iso-mark text {
  fill: currentColor;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body[data-page="home"] .hero-rating-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
}

body[data-page="home"] .hero-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f5b700;
  font-size: 1.18rem;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(245, 183, 0, 0.22);
}

body[data-page="home"] .hero-rating-strip p {
  margin: 0;
  color: #3c4a62;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

body[data-page="home"] .hero-rating-strip strong {
  color: #0e2d63;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

body[data-page="home"] .hero-trust-line {
  margin-top: 16px;
}

body[data-page="home"] .hero-highlights {
  margin: 16px 0 0;
}

body[data-page="home"] .hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-top: 16px;
}

body[data-page="home"] .hero-proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(13, 43, 97, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(20, 184, 166, 0.04));
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.05);
}

body[data-page="home"] .hero-proof-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #0b2d68;
  background: rgba(37, 99, 235, 0.12);
}

body[data-page="home"] .hero-proof-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .hero-proof-icon--teal {
  color: #0f766e;
  background: rgba(20, 184, 166, 0.14);
}

body[data-page="home"] .hero-proof-icon--purple {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.12);
}

body[data-page="home"] .hero-proof-icon--orange {
  color: #ea6a10;
  background: rgba(249, 115, 22, 0.14);
}

body[data-page="home"] .hero-proof-item strong {
  color: #0d2b61;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.1;
}

body[data-page="home"] .hero-proof-item span:last-child {
  color: #5a697f;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

body[data-page="home"] .hero-master-badge-two,
body[data-page="home"] .hero-master-badge-three {
  max-width: 220px;
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-proof-grid {
    max-width: 36rem;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-brand-strip {
    gap: 8px;
  }

  body[data-page="home"] .hero-brand-chip {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  body[data-page="home"] .hero-rating-strip {
    gap: 8px 10px;
  }

  body[data-page="home"] .hero-rating-strip p {
    font-size: 0.9rem;
  }

  body[data-page="home"] .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body[data-page="home"] .hero-proof-item {
    min-height: 76px;
    padding: 13px 14px;
  }
}

/* Homepage hero service-banner branding consistency - September 1, 2026 */
body[data-page="home"] .service-hero-copy {
  display: grid;
  align-content: center;
  align-self: stretch;
  gap: 10px;
  grid-template-rows: auto auto minmax(4.4rem, auto) minmax(4.8rem, auto) auto auto auto;
}

body[data-page="home"] .service-hero-copy .hero-brand-strip {
  margin-bottom: 0;
}

body[data-page="home"] .hero-brand-strip--compact {
  gap: 8px;
}

body[data-page="home"] .hero-brand-strip--compact .hero-brand-chip {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.75rem;
  box-shadow: 0 8px 16px rgba(11, 31, 58, 0.04);
}

body[data-page="home"] .hero-brand-strip--compact .hero-iso-mark {
  width: 22px;
  height: 22px;
}

body[data-page="home"] .hero-brand-strip--compact .hero-iso-mark text {
  font-size: 14px;
}

body[data-page="home"] .hero-brand-chip--service {
  color: #8a4b12;
  background:
    radial-gradient(circle at left center, rgba(249, 115, 22, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.94));
}

body[data-page="home"] .service-hero-copy .hero-rating-strip {
  margin-top: 0;
}

body[data-page="home"] .hero-rating-strip--compact {
  gap: 8px 10px;
}

body[data-page="home"] .hero-rating-strip--compact .hero-rating-stars {
  font-size: 1rem;
}

body[data-page="home"] .hero-rating-strip--compact p {
  font-size: 0.87rem;
  line-height: 1.45;
}

body[data-page="home"] .service-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-page="home"] .service-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 43, 97, 0.09);
  color: #355072;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 8px 16px rgba(11, 31, 58, 0.04);
}

body[data-page="home"] .service-hero-copy a {
  margin-top: 2px;
}

body[data-page="home"] .recruitment-banner .hero-brand-chip--service {
  color: #1f56c6;
  background:
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
}

body[data-page="home"] .recruitment-banner .service-proof-row span {
  border-color: rgba(37, 99, 235, 0.1);
  color: #214d9e;
}

body[data-page="home"] .staffing-banner .hero-brand-chip--service {
  color: #0f8d83;
  background:
    radial-gradient(circle at left center, rgba(20, 184, 166, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 252, 248, 0.94));
}

body[data-page="home"] .staffing-banner .service-proof-row span {
  border-color: rgba(20, 184, 166, 0.1);
  color: #0f766e;
}

body[data-page="home"] .contracting-banner .hero-brand-chip--service {
  color: #6d37da;
  background:
    radial-gradient(circle at left center, rgba(124, 58, 237, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 255, 0.94));
}

body[data-page="home"] .contracting-banner .service-proof-row span {
  border-color: rgba(124, 58, 237, 0.1);
  color: #5f36b6;
}

body[data-page="home"] .bgv-banner .hero-brand-chip--service {
  color: #147652;
  background:
    radial-gradient(circle at left center, rgba(34, 197, 94, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 252, 245, 0.94));
}

body[data-page="home"] .bgv-banner .service-proof-row span {
  border-color: rgba(34, 197, 94, 0.1);
  color: #166447;
}

@media (max-width: 1080px) {
  body[data-page="home"] .service-hero-copy {
    grid-template-rows: auto auto auto auto auto auto auto;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .service-hero-copy {
    gap: 9px;
  }

  body[data-page="home"] .hero-brand-strip--compact .hero-brand-chip {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.71rem;
  }

  body[data-page="home"] .hero-rating-strip--compact p {
    font-size: 0.83rem;
  }

  body[data-page="home"] .service-proof-row span {
    min-height: 30px;
    font-size: 0.74rem;
  }
}

/* Homepage testimonial showcase refresh - September 1, 2026 */
body[data-page="home"] .testimonial-proof-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

body[data-page="home"] .testimonial-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

body[data-page="home"] .testimonial-showcase-media {
  position: relative;
  min-height: 40rem;
}

body[data-page="home"] .testimonial-showcase-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1rem solid #ffffff;
  box-shadow: 0 24px 54px rgba(11, 31, 58, 0.11);
}

body[data-page="home"] .testimonial-showcase-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body[data-page="home"] .testimonial-showcase-photo--back {
  left: 0;
  top: 0;
  width: 68%;
  height: 72%;
}

body[data-page="home"] .testimonial-showcase-photo--back img {
  object-position: center 25%;
}

body[data-page="home"] .testimonial-showcase-photo--front {
  left: 32%;
  top: 28%;
  width: 62%;
  height: 56%;
  z-index: 2;
}

body[data-page="home"] .testimonial-showcase-photo--front img {
  object-position: center;
}

body[data-page="home"] .testimonial-showcase-photo--edge {
  left: 0;
  bottom: 8%;
  width: 16%;
  height: 26%;
  border-width: 0.85rem;
  z-index: 3;
}

body[data-page="home"] .testimonial-showcase-photo--edge img {
  object-position: left center;
}

body[data-page="home"] .testimonial-showcase-content {
  display: grid;
  gap: 1.75rem;
  align-content: center;
  max-width: 41rem;
}

body[data-page="home"] .testimonial-showcase-content .eyebrow {
  margin: 0;
  color: #5a6f95;
}

body[data-page="home"] .testimonial-showcase-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #1d2758;
}

body[data-page="home"] .testimonial-showcase-list {
  display: grid;
  gap: 2rem;
}

body[data-page="home"] .testimonial-showcase-item {
  display: grid;
  gap: 1.15rem;
}

body[data-page="home"] .testimonial-showcase-item p {
  margin: 0;
  max-width: 34rem;
  color: #50627d;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

body[data-page="home"] .testimonial-showcase-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

body[data-page="home"] .testimonial-showcase-author img {
  width: 4.6rem;
  height: 4.6rem;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.1);
}

body[data-page="home"] .testimonial-showcase-author strong {
  display: block;
  color: #23355f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
}

body[data-page="home"] .testimonial-showcase-author span {
  display: block;
  margin-top: 0.2rem;
  color: #60728b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

body[data-page="home"] .testimonial-showcase-actions {
  padding-top: 0.25rem;
}

body[data-page="home"] .testimonial-showcase-actions .button {
  min-width: 12rem;
}

@media (max-width: 1080px) {
  body[data-page="home"] .testimonial-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  body[data-page="home"] .testimonial-showcase-media {
    min-height: 34rem;
    max-width: 42rem;
  }

  body[data-page="home"] .testimonial-showcase-content {
    max-width: none;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .testimonial-showcase {
    gap: 2rem;
  }

  body[data-page="home"] .testimonial-showcase-media {
    min-height: 26rem;
  }

  body[data-page="home"] .testimonial-showcase-photo {
    border-width: 0.7rem;
  }

  body[data-page="home"] .testimonial-showcase-photo--back {
    width: 76%;
    height: 66%;
  }

  body[data-page="home"] .testimonial-showcase-photo--front {
    left: 24%;
    top: 34%;
    width: 74%;
    height: 50%;
  }

  body[data-page="home"] .testimonial-showcase-photo--edge {
    display: none;
  }

  body[data-page="home"] .testimonial-showcase-content {
    gap: 1.4rem;
  }

  body[data-page="home"] .testimonial-showcase-content h2 {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  body[data-page="home"] .testimonial-showcase-list {
    gap: 1.6rem;
  }

body[data-page="home"] .testimonial-showcase-author img {
  width: 4rem;
  height: 4rem;
}
}

/* Footer alignment refinement - September 1, 2026 */
.site-footer {
  gap: clamp(20px, 2.4vw, 30px);
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: 12px;
}

.footer-mega {
  display: grid;
  gap: clamp(24px, 2.8vw, 34px);
}

.theme-footer-cta {
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  align-items: stretch;
  min-height: 340px;
  margin-bottom: 0;
}

.theme-footer-cta-visual {
  min-height: 100%;
}

.theme-footer-cta-visual img {
  object-position: center 24%;
}

.theme-footer-cta-copy {
  gap: 12px;
  padding: clamp(26px, 3.2vw, 40px);
}

.theme-footer-cta-copy h3 {
  max-width: 16ch;
  line-height: 1.06;
}

.theme-footer-cta-copy p:not(.eyebrow) {
  max-width: 50ch;
}

.theme-footer-cta-actions {
  align-items: center;
}

.footer-top-band {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: clamp(22px, 2.6vw, 34px);
  padding-bottom: 26px;
}

.footer-brand-block,
.footer-highlight-panel {
  gap: 14px;
}

.footer-brand-mark {
  width: 86px;
  height: 86px;
  border-radius: 22px;
}

.footer-brand-mark img {
  max-width: 66px;
}

.footer-brand-block h2 {
  max-width: 15ch;
  line-height: 1.02;
}

.footer-brand-copy,
.footer-highlight-panel p {
  margin: 0;
  line-height: 1.72;
}

.footer-contact-list {
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-chip {
  justify-content: center;
}

.footer-contact-chip-static {
  min-height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.55;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-cta-row a {
  justify-content: center;
}

.footer-highlight-panel {
  height: 100%;
  padding: 24px;
}

.footer-contact-boxes {
  align-items: stretch;
}

.footer-contact-box {
  min-height: 104px;
  align-content: start;
}

.footer-contact-box span:last-child {
  line-height: 1.55;
}

.footer-service-tags span {
  line-height: 1.25;
}

.footer-social-row {
  align-items: center;
  gap: 12px;
}

.footer-social-row a {
  flex: 0 0 auto;
}

.footer-social-row img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-mini-actions {
  align-items: center;
  gap: 10px 16px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: start;
  gap: 24px clamp(14px, 2vw, 28px);
}

.footer-links-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.footer-links-grid h3 {
  margin: 0 0 4px;
  line-height: 1.3;
}

.footer-links-grid a {
  margin: 0;
  line-height: 1.45;
}

.footer-bottom-line {
  align-items: center;
  gap: 14px 20px;
  padding-top: 14px;
}

.footer-bottom-line p {
  margin: 0;
  max-width: 44rem;
  line-height: 1.6;
}

.footer-bottom-links {
  align-items: center;
  gap: 10px 18px;
}

@media (max-width: 1180px) {
  .theme-footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-top-band {
    grid-template-columns: 1fr;
  }

  .footer-brand-block h2,
  .theme-footer-cta-copy h3 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-footer {
    gap: 18px;
    padding-top: 34px;
  }

  .theme-footer-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .theme-footer-cta-visual {
    min-height: 220px;
  }

  .theme-footer-cta-copy {
    padding: 20px 18px 22px;
  }

  .theme-footer-cta-actions {
    display: grid;
    gap: 10px;
  }

  .theme-footer-cta-actions .button {
    width: 100%;
    justify-content: center;
  }

  .footer-top-band {
    gap: 18px;
    padding-bottom: 22px;
  }

  .footer-highlight-panel {
    padding: 20px;
  }

  .footer-contact-boxes {
    grid-template-columns: 1fr;
  }

  .footer-contact-box {
    min-height: 0;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .footer-links-grid > div {
    gap: 7px;
  }

  .footer-bottom-line {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .footer-brand-mark {
    width: 76px;
    height: 76px;
  }

  .footer-brand-mark img {
    max-width: 58px;
  }

  .footer-contact-chip,
  .footer-cta-row a {
    width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage trust marquee and why-work-with-us refinement - September 2, 2026 */
body[data-page="home"] .trust-marquee {
  gap: clamp(1.4rem, 2vw, 2.2rem);
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(2.5rem, 4.8vw, 4rem);
}

body[data-page="home"] .trust-marquee-copy {
  gap: 0;
  margin-bottom: 0.35rem;
}

body[data-page="home"] .trust-marquee-copy .eyebrow,
body[data-page="home"] .trust-marquee-meta {
  display: none !important;
}

body[data-page="home"] .trust-marquee-copy h2 {
  max-width: none;
  font-size: clamp(2.8rem, 6.1vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #1d275a;
}

body[data-page="home"] .trust-marquee-logos {
  position: relative;
  overflow: hidden;
  padding: clamp(0.35rem, 1vw, 0.9rem) 0 0;
  -webkit-mask-image: none;
  mask-image: none;
}

body[data-page="home"] .trust-marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3.2rem, 5.4vw, 6rem);
  width: max-content;
  min-width: 100%;
  padding-inline: clamp(2rem, 4vw, 4rem);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: none !important;
}

body[data-page="home"] .trust-marquee-logo,
body[data-page="home"] .trust-marquee-logo.is-generated-clone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: clamp(9rem, 11vw, 12rem);
  min-height: clamp(4.2rem, 6vw, 5.6rem);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

body[data-page="home"] .trust-marquee-logo img {
  display: block;
  width: auto;
  max-width: clamp(8rem, 11vw, 11rem);
  max-height: clamp(3.1rem, 4.4vw, 4.5rem);
  object-fit: contain;
}

body[data-page="home"] .trust-marquee-logo img[src*="hic-global"] {
  max-height: clamp(2.9rem, 4vw, 4rem);
}

body[data-page="home"] .trust-marquee-logo img[src*="globallogic"] {
  max-height: clamp(2.55rem, 3.4vw, 3.35rem);
}

body[data-page="home"] .trust-marquee-logo img[src*="sourcefuse"] {
  max-height: clamp(2.5rem, 3.5vw, 3.2rem);
}

body[data-page="home"] .trust-marquee-logo:hover,
body[data-page="home"] .trust-marquee-logo:focus-visible {
  transform: translateY(-3px);
}

body[data-page="home"] .trust-marquee-logo.is-clone {
  display: none !important;
}

body[data-page="home"] .feature-layout {
  padding: clamp(52px, 6vw, 78px) clamp(20px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 255, 0.96)),
    radial-gradient(circle at 15% 16%, rgba(255, 179, 217, 0.16), transparent 18%),
    radial-gradient(circle at 84% 22%, rgba(255, 212, 143, 0.14), transparent 18%);
  border: 1px solid rgba(11, 31, 58, 0.04);
  box-shadow: 0 24px 56px rgba(11, 31, 58, 0.05);
}

body[data-page="home"] .feature-layout::before {
  background:
    radial-gradient(circle at 16% 82%, rgba(255, 181, 215, 0.14), transparent 20%),
    radial-gradient(circle at 78% 88%, rgba(253, 199, 112, 0.12), transparent 18%);
  opacity: 0.9;
}

body[data-page="home"] .feature-trust-intro {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0 auto 52px;
  text-align: center;
}

body[data-page="home"] .feature-trust-intro .eyebrow {
  margin: 0;
  color: #4b5568;
  letter-spacing: 0.22em;
}

body[data-page="home"] .feature-trust-intro h2 {
  margin: 0;
  max-width: 17ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #21263c;
  text-wrap: balance;
}

body[data-page="home"] .feature-trust-intro-copy {
  margin: 0;
  max-width: 48rem;
  color: #5a667a;
  font-size: 1.04rem;
  line-height: 1.78;
}

body[data-page="home"] .feature-trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  width: min(100%, 62rem);
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .feature-trust-points li {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 100%;
  padding: 16px 18px 16px 50px;
  border-radius: 20px;
  border: 1px solid rgba(25, 67, 150, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(20, 184, 166, 0.04));
  color: #324760;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
  box-shadow: 0 16px 32px rgba(11, 31, 58, 0.05);
}

body[data-page="home"] .feature-trust-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
}

body[data-page="home"] .feature-trust-points li::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 22px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

body[data-page="home"] .feature-grid.feature-grid-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 4.5vw, 64px) clamp(28px, 3vw, 44px);
  align-items: start;
}

body[data-page="home"] .feature-panel.feature-panel-trust {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: 0 8px;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
  text-align: center;
}

body[data-page="home"] .feature-panel.feature-panel-trust:hover,
body[data-page="home"] .feature-panel.feature-panel-trust:focus-within {
  transform: none;
  box-shadow: none !important;
}

body[data-page="home"] .feature-panel.feature-panel-trust::after {
  content: none !important;
}

body[data-page="home"] .feature-panel.feature-panel-trust .panel-visual {
  width: 58px;
  height: 58px;
  min-height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 28px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .feature-panel.feature-panel-trust .panel-visual span {
  display: none;
}

body[data-page="home"] .panel-visual-pink {
  background: radial-gradient(circle at 35% 35%, rgba(255, 163, 206, 0.96), rgba(244, 182, 227, 0.58) 62%, rgba(255, 255, 255, 0.92) 100%);
}

body[data-page="home"] .panel-visual-gold-soft,
body[data-page="home"] .panel-visual-amber {
  background: radial-gradient(circle at 35% 35%, rgba(255, 196, 118, 0.96), rgba(255, 224, 180, 0.58) 62%, rgba(255, 255, 255, 0.92) 100%);
}

body[data-page="home"] .panel-visual-lilac,
body[data-page="home"] .panel-visual-blush,
body[data-page="home"] .panel-visual-rose {
  background: radial-gradient(circle at 35% 35%, rgba(247, 156, 217, 0.92), rgba(229, 190, 244, 0.56) 62%, rgba(255, 255, 255, 0.92) 100%);
}

body[data-page="home"] .feature-panel.feature-panel-trust h3 {
  margin: 0;
  padding: 0;
  max-width: 12ch;
  color: #23283d;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

body[data-page="home"] .feature-panel.feature-panel-trust h3::before {
  content: none !important;
}

body[data-page="home"] .feature-panel.feature-panel-trust p {
  margin: 0;
  max-width: 31ch;
  color: #5c6678;
  font-size: 1.01rem;
  line-height: 1.7;
  text-wrap: pretty;
}

@media (max-width: 1080px) {
  body[data-page="home"] .feature-grid.feature-grid-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .trust-marquee {
    gap: 1rem;
    padding: 0.8rem 0 1.6rem;
    scroll-margin-top: 92px;
  }

  body[data-page="home"] .trust-marquee-copy h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 0.98;
  }

  body[data-page="home"] .trust-marquee-track {
    justify-content: flex-start;
    gap: 1.4rem;
    min-width: max-content;
    padding-inline: 0.75rem;
  }

  body[data-page="home"] .trust-marquee-logo {
    min-width: 6.6rem;
    min-height: 3.2rem;
  }

  body[data-page="home"] .trust-marquee-logo img {
    max-width: 6rem;
    max-height: 2.35rem;
  }

  body[data-page="home"] .feature-trust-intro {
    margin-bottom: 36px;
  }

  body[data-page="home"] .feature-trust-points {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 36rem);
  }

  body[data-page="home"] .feature-grid.feature-grid-trust {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body[data-page="home"] .feature-panel.feature-panel-trust h3 {
    max-width: 14ch;
    font-size: 1.9rem;
  }

  body[data-page="home"] .feature-panel.feature-panel-trust p {
    max-width: 34ch;
  }
}

/* Homepage blog section refinement - September 1, 2026 */
body[data-page="home"] .top-insights-section {
  padding: clamp(34px, 4vw, 52px) clamp(22px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(11, 31, 58, 0.06);
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.08), transparent 20%),
    radial-gradient(circle at 92% 18%, rgba(20, 184, 166, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.98));
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .top-insights-section::before {
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.04), transparent 30%),
    radial-gradient(circle at right bottom, rgba(249, 115, 22, 0.08), transparent 22%);
}

body[data-page="home"] .top-insights-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

body[data-page="home"] .top-insights-heading {
  max-width: 820px;
}

body[data-page="home"] .top-insights-heading .eyebrow {
  margin-bottom: 12px;
}

body[data-page="home"] .top-insights-heading h2 {
  margin: 0;
  color: #17325f;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

body[data-page="home"] .top-insights-intro {
  margin: 16px 0 0;
  max-width: 42rem;
  color: #51607e;
  font-size: 1.04rem;
  line-height: 1.75;
}

body[data-page="home"] .top-insights-viewmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-top: 10px;
  color: #0d91b3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease;
}

body[data-page="home"] .top-insights-viewmore:hover {
  color: #1757c2;
  transform: translateX(3px);
}

body[data-page="home"] .top-insights-section .blog-post-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

body[data-page="home"] .top-insights-section .blog-post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .top-insights-section .blog-post-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(237, 250, 248, 0.9), #ffffff 44%);
}

body[data-page="home"] .top-insights-section .blog-post-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(245, 247, 255, 0.96), #ffffff 44%);
}

body[data-page="home"] .top-insights-section .blog-post-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.92), #ffffff 44%);
}

body[data-page="home"] .top-insights-section .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(11, 31, 58, 0.12);
}

body[data-page="home"] .top-insights-section .blog-post-thumb {
  display: block;
  min-height: 282px;
  margin: 14px 14px 0;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .top-insights-section .blog-post-thumb::before {
  width: 132px;
  height: 132px;
  top: -28px;
  right: -24px;
  background: rgba(255, 255, 255, 0.18);
}

body[data-page="home"] .top-insights-section .blog-post-thumb::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
}

body[data-page="home"] .top-insights-section .blog-post-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 26px 26px;
}

body[data-page="home"] .top-insights-section .blog-post-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
  color: #1c58b8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="home"] .top-insights-section .blog-post-card h3 {
  margin: 0 0 16px;
  min-height: 3.75em;
  color: #14345f;
  font-size: clamp(1.45rem, 1.7vw, 1.95rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

body[data-page="home"] .top-insights-section .blog-post-card h3 a {
  color: inherit;
  text-decoration: none;
}

body[data-page="home"] .top-insights-section .blog-post-excerpt {
  margin: 0;
  min-height: 5.4em;
  color: #4b5b79;
  font-size: 1rem;
  line-height: 1.78;
}

body[data-page="home"] .top-insights-section .blog-post-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: #0d91b3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

body[data-page="home"] .top-insights-section .blog-post-readmore:hover {
  color: #1757c2;
}

body[data-page="home"] .top-insights-section .proof-chip-row {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  margin-top: 24px;
}

body[data-page="home"] .top-insights-section .brochure-actions {
  justify-content: flex-start;
  margin-top: 22px !important;
}

@media (max-width: 1180px) {
  body[data-page="home"] .top-insights-section .blog-post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .top-insights-header {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  body[data-page="home"] .top-insights-viewmore {
    margin-top: 0;
  }

  body[data-page="home"] .top-insights-section .blog-post-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body[data-page="home"] .top-insights-section .blog-post-thumb {
    min-height: 226px;
  }

  body[data-page="home"] .top-insights-section .blog-post-content {
    padding: 22px 20px 22px;
  }

  body[data-page="home"] .top-insights-section .blog-post-card h3 {
    font-size: 1.5rem;
    min-height: 0;
  }

  body[data-page="home"] .top-insights-section .blog-post-excerpt {
    min-height: 0;
  }
}

/* Alpha at a glance redesign - September 2, 2026 */
body[data-page="home"] .alliance-proof-section {
  position: relative;
  margin-top: 36px;
  padding: 28px 0 0;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.1), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(249, 115, 22, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.94));
  box-shadow: none !important;
  overflow: visible;
}

body[data-page="home"] .alliance-proof-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.18), rgba(20, 184, 166, 0.18), transparent);
}

body[data-page="home"] .alpha-glance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

body[data-page="home"] .alpha-glance-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-self: stretch;
}

body[data-page="home"] .alpha-glance-service-card {
  position: relative;
  display: flex;
  min-height: 242px;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 34px 28px 30px;
  border-radius: 32px;
  border: 1px solid rgba(11, 31, 58, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 255, 0.98)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(20, 184, 166, 0.04));
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

body[data-page="home"] .alpha-glance-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.14);
  box-shadow: 0 28px 68px rgba(11, 31, 58, 0.12);
}

body[data-page="home"] .alpha-glance-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.14), rgba(124, 58, 237, 0.1), rgba(20, 184, 166, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

body[data-page="home"] .alpha-glance-service-card-accent {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #1752b5 0%, #0b2d68 46%, #0d8b85 100%);
  box-shadow: 0 28px 64px rgba(11, 45, 104, 0.22);
}

body[data-page="home"] .alpha-glance-service-card-accent::after {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08));
}

body[data-page="home"] .alpha-glance-icon-shell {
  display: inline-flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  box-shadow: 0 18px 36px rgba(11, 31, 58, 0.08);
  color: #071c38;
}

body[data-page="home"] .alpha-glance-service-card-accent .alpha-glance-icon-shell {
  background: rgba(255, 255, 255, 0.96);
  color: #0b2d68;
}

body[data-page="home"] .alpha-glance-icon-shell svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .alpha-glance-service-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.35rem, 1.2rem + 0.45vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

body[data-page="home"] .alpha-glance-service-card p {
  margin: 0;
  color: rgba(11, 31, 58, 0.72);
  font-size: 1.02rem;
  line-height: 1.78;
}

body[data-page="home"] .alpha-glance-service-card-accent p {
  color: rgba(255, 255, 255, 0.86);
}

body[data-page="home"] .alpha-glance-copy {
  position: relative;
  padding: clamp(8px, 1vw, 14px) 0;
}

body[data-page="home"] .alpha-glance-copy .eyebrow {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body[data-page="home"] .alpha-glance-kicker {
  margin: 0 0 10px;
  color: #f97316;
  font-size: clamp(1rem, 0.92rem + 0.18vw, 1.14rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

body[data-page="home"] .alpha-glance-copy h2 {
  margin: 0 0 18px;
  color: #0b1f3a;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 2.2rem + 1.9vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

body[data-page="home"] .alpha-glance-intro {
  max-width: 52ch;
  margin: 0 0 26px;
  color: rgba(11, 31, 58, 0.8);
  font-size: 1.08rem;
  line-height: 1.88;
}

body[data-page="home"] .alpha-glance-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .alpha-glance-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(11, 31, 58, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

body[data-page="home"] .alpha-glance-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

body[data-page="home"] .alpha-glance-list strong {
  color: #0b1f3a;
  font-weight: 800;
}

body[data-page="home"] .alpha-glance-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(34px, 4vw, 54px);
  padding-top: 30px;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .alpha-glance-metric {
  padding-right: 12px;
}

body[data-page="home"] .alpha-glance-metric strong {
  display: block;
  margin-bottom: 10px;
  color: #1752b5;
  font-size: clamp(2.3rem, 1.7rem + 1.05vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

body[data-page="home"] .alpha-glance-metric span {
  display: block;
  color: rgba(11, 31, 58, 0.62);
  font-size: 0.98rem;
  line-height: 1.62;
}

@media (max-width: 1180px) {
  body[data-page="home"] .alpha-glance-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .alpha-glance-copy {
    order: -1;
  }

  body[data-page="home"] .alpha-glance-copy h2,
  body[data-page="home"] .alpha-glance-intro {
    max-width: none;
  }

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

@media (max-width: 860px) {
  body[data-page="home"] .alliance-proof-section {
    padding-top: 18px;
  }

  body[data-page="home"] .alpha-glance-card-grid,
  body[data-page="home"] .alpha-glance-metrics {
    grid-template-columns: 1fr 1fr;
  }

  body[data-page="home"] .alpha-glance-service-card {
    min-height: 220px;
    padding: 28px 22px 24px;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .alpha-glance-card-grid,
  body[data-page="home"] .alpha-glance-metrics {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .alpha-glance-icon-shell {
    width: 76px;
    height: 76px;
    border-radius: 24px;
  }

  body[data-page="home"] .alpha-glance-icon-shell svg {
    width: 46px;
    height: 46px;
  }
}

/* Core services redesign - September 2, 2026 */
body[data-page="home"] .services-overview-section {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 6vw, 82px) clamp(20px, 2.8vw, 34px);
  border-radius: 38px;
  border: 1px solid rgba(11, 31, 58, 0.06);
  background: linear-gradient(180deg, rgba(247, 249, 253, 0.99), rgba(239, 244, 250, 0.97));
  box-shadow: 0 30px 72px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .services-overview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 76%, rgba(37, 99, 235, 0.09), transparent 20%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 36%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.38) 0 18px, rgba(255, 255, 255, 0) 18px 36px);
  clip-path: polygon(46% 0, 100% 0, 100% 56%, 74% 56%, 58% 24%);
  opacity: 0.84;
  pointer-events: none;
}

body[data-page="home"] .services-overview-section::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 68px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18c8ea, #14b8a6);
  transform: translateX(-50%);
  box-shadow: 0 10px 22px rgba(24, 200, 234, 0.2);
}

body[data-page="home"] .services-overview-heading {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 32px;
  padding-left: 0;
  text-align: center;
}

body[data-page="home"] .services-overview-heading::before,
body[data-page="home"] .services-overview-heading::after {
  content: none !important;
}

body[data-page="home"] .services-overview-heading .eyebrow {
  margin: 0 0 14px;
  color: #1f4fab;
  letter-spacing: 0.22em;
}

body[data-page="home"] .services-overview-heading h2 {
  margin: 0 auto;
  max-width: 28ch;
  background: none;
  -webkit-text-fill-color: #071c38;
  color: #071c38;
  font-size: clamp(2.4rem, 4.1vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body[data-page="home"] .services-overview-heading h2 span {
  display: block;
}

body[data-page="home"] .service-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 34px);
  align-items: stretch;
}

body[data-page="home"] .service-showcase-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #ffffff !important;
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.08) !important;
}

body[data-page="home"] .service-showcase-card::after {
  content: none !important;
}

body[data-page="home"] .service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.14) !important;
}

body[data-page="home"] .service-showcase-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

body[data-page="home"] .service-showcase-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(11, 31, 58, 0.1));
  pointer-events: none;
}

body[data-page="home"] .service-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

body[data-page="home"] .service-showcase-card:hover .service-showcase-media img {
  transform: scale(1.04);
}

body[data-page="home"] .service-showcase-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  padding: 28px 28px 30px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
}

body[data-page="home"] .service-showcase-card:nth-child(2) .service-showcase-body {
  background: linear-gradient(180deg, #f6fbfa 0%, #ecf7f5 100%);
}

body[data-page="home"] .service-showcase-card:nth-child(3) .service-showcase-body {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4f8 100%);
}

body[data-page="home"] .service-showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body[data-page="home"] .service-showcase-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(24, 200, 234, 0.08);
  color: #10bfe4;
  box-shadow: inset 0 0 0 1px rgba(24, 200, 234, 0.12);
}

body[data-page="home"] .service-showcase-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .service-card-tag {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 20px;
  border-radius: 14px;
  background: #d8dfe8;
  color: #697790;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

body[data-page="home"] .service-showcase-card h3 {
  margin: 0;
  padding-left: 0 !important;
  color: #091b34;
  font-size: clamp(1.8rem, 2vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 12ch;
  text-wrap: balance;
}

body[data-page="home"] .service-showcase-card h3::before,
body[data-page="home"] .service-showcase-card h3::after {
  content: none !important;
}

body[data-page="home"] .service-showcase-card > .service-showcase-body > p {
  margin: 0;
  color: #5a6a83;
  font-size: 1.04rem;
  line-height: 1.76;
}

body[data-page="home"] .service-showcase-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 22px;
}

body[data-page="home"] .service-showcase-card ul li {
  color: #5d6b83;
  line-height: 1.66;
  padding-left: 4px;
}

body[data-page="home"] .service-showcase-card ul li::before {
  left: -18px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #10bfe4, #2563eb);
}

body[data-page="home"] .service-showcase-card .text-link {
  margin-top: auto;
  padding-top: 6px;
  color: #114aae;
  font-weight: 700;
}

body[data-page="home"] .services-all-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 3vw, 38px);
}

body[data-page="home"] .service-support-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px 34px;
  align-items: center;
  margin-top: 30px;
  padding: 30px 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.15), transparent 20%),
    linear-gradient(135deg, #0b1f3a 0%, #123e89 52%, #0f8f88 100%);
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.18);
}

body[data-page="home"] .service-support-band-copy {
  color: #ffffff;
}

body[data-page="home"] .service-support-band-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .service-support-band h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

body[data-page="home"] .service-support-band-copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.76;
}

body[data-page="home"] .service-support-band-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .service-support-band-list li {
  position: relative;
  padding: 14px 18px 14px 46px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .service-support-band-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.12);
  transform: translateY(-50%);
}

body[data-page="home"] .services-overview-cta {
  margin-top: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.92)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.04));
}

body[data-page="home"] .services-overview-cta .section-cta-actions {
  justify-content: flex-end;
}

body[data-page="home"] .services-view-all-button {
  color: #0b1f3a;
  border: 1px solid rgba(11, 31, 58, 0.1);
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .services-view-all-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 31, 58, 0.12);
}

@media (max-width: 1180px) {
  body[data-page="home"] .service-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .service-showcase-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 720px;
    justify-self: center;
  }

  body[data-page="home"] .service-support-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .services-overview-heading h2 {
    max-width: 12ch;
  }

  body[data-page="home"] .service-showcase-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .service-showcase-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  body[data-page="home"] .service-showcase-media {
    min-height: 260px;
  }

  body[data-page="home"] .service-showcase-body {
    padding: 24px 22px 24px;
  }

  body[data-page="home"] .service-showcase-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="home"] .services-overview-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .services-overview-section {
    border-radius: 28px;
    padding: 42px 16px 28px;
  }

  body[data-page="home"] .services-overview-section::after {
    top: 14px;
    width: 56px;
  }

  body[data-page="home"] .service-showcase-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  body[data-page="home"] .service-showcase-icon svg {
    width: 34px;
    height: 34px;
  }

  body[data-page="home"] .service-card-tag {
    min-height: 42px;
    padding-inline: 16px;
  }

  body[data-page="home"] .service-support-band {
    padding: 24px 20px;
    border-radius: 24px;
  }
}

/* Case studies redesign - September 2, 2026 */
body[data-page="home"] .case-study-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 4.5vw, 58px) clamp(20px, 2.8vw, 34px) clamp(34px, 3.5vw, 46px);
  border-radius: 38px;
  border: 1px solid rgba(11, 31, 58, 0.06);
  background:
    radial-gradient(circle at 14% 22%, rgba(37, 99, 235, 0.08), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(20, 184, 166, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.98), rgba(239, 244, 252, 0.96));
  box-shadow: 0 28px 66px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .case-study-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 78%, rgba(37, 99, 235, 0.05), transparent 18%),
    repeating-linear-gradient(155deg, rgba(255, 255, 255, 0.26) 0 20px, rgba(255, 255, 255, 0) 20px 42px);
  opacity: 0.74;
  pointer-events: none;
}

body[data-page="home"] .case-study-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(26px, 3.2vw, 40px);
  align-items: start;
}

body[data-page="home"] .case-study-intro {
  position: relative;
  padding-top: 10px;
}

body[data-page="home"] .case-study-intro::after {
  content: "";
  position: absolute;
  left: -24px;
  top: 82px;
  width: 220px;
  height: 320px;
  background:
    radial-gradient(circle at 24px 24px, rgba(24, 200, 234, 0.95) 0 7px, transparent 8px),
    linear-gradient(180deg, rgba(16, 191, 228, 0.12), rgba(16, 191, 228, 0.02));
  clip-path: polygon(0 18%, 72% 0, 84% 18%, 28% 100%, 0 82%);
  opacity: 0.1;
  filter: blur(0.2px);
  pointer-events: none;
}

body[data-page="home"] .case-study-heading {
  padding-left: 0;
  text-align: left;
}

body[data-page="home"] .case-study-heading::before,
body[data-page="home"] .case-study-heading::after {
  content: none !important;
}

body[data-page="home"] .case-study-heading .eyebrow {
  margin: 0 0 14px;
  color: #1f4fab;
  letter-spacing: 0.2em;
}

body[data-page="home"] .case-study-heading h2 {
  margin: 0;
  max-width: 7.5ch;
  background: none;
  -webkit-text-fill-color: #081c39;
  color: #081c39;
  font-size: clamp(2.45rem, 3.7vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body[data-page="home"] .case-study-mini-stats {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

body[data-page="home"] .case-study-mini-stats .section-mini-stat {
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.05));
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .case-study-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 32px);
  align-items: start;
  padding-top: 12px;
}

body[data-page="home"] .case-study-showcase-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 18px;
  padding: 118px 32px 30px !important;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 22px 54px rgba(11, 31, 58, 0.08) !important;
}

body[data-page="home"] .case-study-showcase-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 14px;
  height: calc(100% - 96px);
  border-left: 4px dashed #1cc5e7;
  border-bottom: 4px dashed #1cc5e7;
  border-bottom-left-radius: 16px;
  opacity: 0.9;
}

body[data-page="home"] .case-study-showcase-card::after {
  content: none !important;
}

body[data-page="home"] .case-study-avatar {
  position: absolute;
  top: -26px;
  right: 28px;
  width: 126px;
  height: 126px;
  margin: 0;
  border-radius: 999px;
  border: 8px solid #18c8ea;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
  overflow: hidden;
}

body[data-page="home"] .case-study-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body[data-page="home"] .case-study-stars {
  display: flex;
  gap: 6px;
  color: #ff9d2f;
  font-size: 1.1rem;
  line-height: 1;
}

body[data-page="home"] .case-study-showcase-card .eyebrow {
  margin: 0;
  color: #6d7e99;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="home"] .case-study-showcase-card h3 {
  margin: 0;
  color: #081c39;
  font-size: clamp(2rem, 2vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body[data-page="home"] .case-study-showcase-card > p:last-of-type {
  margin: 0;
  color: #5b6881;
  font-size: 1.06rem;
  line-height: 1.8;
}

body[data-page="home"] .case-study-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 10px;
}

body[data-page="home"] .case-study-quote-mark {
  display: inline-flex;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0f4ff, #e7ecfb);
  color: #274a9b;
  box-shadow: inset 0 0 0 1px rgba(39, 74, 155, 0.08);
}

body[data-page="home"] .case-study-quote-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .case-study-showcase-card .button-secondary {
  min-height: 54px;
  padding-inline: 22px;
  background: linear-gradient(135deg, #123d88, #0b2d68);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(18, 61, 136, 0.18);
}

body[data-page="home"] .case-study-showcase-card .button-secondary:hover {
  background: linear-gradient(135deg, #1552b6, #123d88);
}

@media (max-width: 1180px) {
  body[data-page="home"] .case-study-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .case-study-heading h2 {
    max-width: 14ch;
  }

  body[data-page="home"] .case-study-mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body[data-page="home"] .case-study-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .case-study-showcase-card {
    padding: 108px 24px 24px !important;
  }

  body[data-page="home"] .case-study-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .case-study-section {
    border-radius: 28px;
    padding: 40px 16px 28px;
  }

  body[data-page="home"] .case-study-intro::after {
    left: -10px;
    width: 160px;
    height: 240px;
  }

  body[data-page="home"] .case-study-heading h2 {
    max-width: 10ch;
    font-size: clamp(2.05rem, 9vw, 3.2rem);
  }

  body[data-page="home"] .case-study-mini-stats {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .case-study-avatar {
    right: 20px;
    width: 104px;
    height: 104px;
    border-width: 6px;
  }

  body[data-page="home"] .case-study-showcase-card h3 {
    font-size: clamp(1.72rem, 7vw, 2.3rem);
  }
}

body[data-page="home"] .process-section {
  padding-top: 10px;
}

body[data-page="home"] .process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

body[data-page="home"] .process-intro,
body[data-page="home"] .process-stage-card,
body[data-page="home"] .process-step-card,
body[data-page="home"] .process-cta-strip {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .process-intro {
  padding: 18px 8px 0 0;
}

body[data-page="home"] .process-intro .eyebrow,
body[data-page="home"] .process-stage-kicker,
body[data-page="home"] .process-cta-copy-block .eyebrow {
  margin: 0 0 14px;
  color: #2463da;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .process-intro h2 {
  margin: 0;
  max-width: 11ch;
  color: #09203d;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body[data-page="home"] .process-intro-copy {
  max-width: 60ch;
  margin: 24px 0 0;
  color: #52647d;
  font-size: 1.08rem;
  line-height: 1.9;
}

body[data-page="home"] .process-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

body[data-page="home"] .process-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(36, 99, 218, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(20, 184, 166, 0.04));
  color: #234464;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.06);
}

body[data-page="home"] .process-proof-strip span::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

body[data-page="home"] .process-stage-card {
  padding: 30px 32px 30px 34px;
  border-radius: 34px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.04));
  box-shadow: 0 24px 54px rgba(11, 31, 58, 0.08);
}

body[data-page="home"] .process-stage-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #2563eb, #14b8a6, #f97316);
}

body[data-page="home"] .process-stage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

body[data-page="home"] .process-stage-list li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #4f627b;
  font-size: 1rem;
  line-height: 1.84;
}

body[data-page="home"] .process-stage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.08);
}

body[data-page="home"] .process-stage-list strong {
  color: #0b1f3a;
}

body[data-page="home"] .process-steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
}

body[data-page="home"] .process-steps-grid::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.28), rgba(20, 184, 166, 0.36), rgba(249, 115, 22, 0.28));
}

body[data-page="home"] .process-step-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(20, 184, 166, 0.04));
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.07);
}

body[data-page="home"] .process-step-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 251, 249, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.07), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .process-step-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .process-step-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 240, 0.94)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.07), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .process-step-card:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .process-step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #14b8a6, #7c3aed);
}

body[data-page="home"] .process-step-card:nth-child(4)::before,
body[data-page="home"] .process-step-card:nth-child(5)::before {
  background: linear-gradient(90deg, #f97316, #7c3aed, #2563eb);
}

body[data-page="home"] .process-step-number {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #123d88, #2563eb);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 34px rgba(18, 61, 136, 0.18);
}

body[data-page="home"] .process-step-card:nth-child(2) .process-step-number {
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

body[data-page="home"] .process-step-card:nth-child(3) .process-step-number {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

body[data-page="home"] .process-step-card:nth-child(4) .process-step-number {
  background: linear-gradient(135deg, #f97316, #7c3aed);
}

body[data-page="home"] .process-step-card:nth-child(5) .process-step-number {
  background: linear-gradient(135deg, #0f766e, #2563eb);
}

body[data-page="home"] .process-step-label {
  margin: 0;
  color: #2463da;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .process-step-card h3 {
  margin: 0;
  color: #09203d;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

body[data-page="home"] .process-step-card p:last-child {
  margin: 0;
  color: #5a6b84;
  line-height: 1.8;
}

body[data-page="home"] .process-cta-strip {
  margin-top: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 184, 166, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.04));
}

body[data-page="home"] .process-cta-copy-block {
  display: grid;
  gap: 6px;
}

body[data-page="home"] .process-cta-copy-block .eyebrow {
  margin-bottom: 0;
}

body[data-page="home"] .process-cta-strip .section-cta-copy {
  max-width: 720px;
}

@media (max-width: 1280px) {
  body[data-page="home"] .process-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .process-intro h2 {
    max-width: 12ch;
  }

  body[data-page="home"] .process-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .process-stage-card {
    padding: 26px 24px 24px 26px;
  }

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

@media (max-width: 640px) {
  body[data-page="home"] .process-intro h2 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  body[data-page="home"] .process-intro-copy {
    font-size: 1rem;
    line-height: 1.82;
  }

  body[data-page="home"] .process-stage-card {
    padding: 24px 20px 22px 22px;
    border-radius: 26px;
  }

  body[data-page="home"] .process-stage-list li {
    padding-left: 20px;
    font-size: 0.98rem;
  }

  body[data-page="home"] .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body[data-page="home"] .process-step-card {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  body[data-page="home"] .process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
}

body[data-page="home"] .cta-section {
  padding-top: clamp(26px, 3vw, 40px);
}

body[data-page="home"] .cta-card.cta-card-split {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 42px);
  border-radius: 38px;
  border: 1px solid rgba(104, 138, 255, 0.16);
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 184, 166, 0.18), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(124, 58, 237, 0.18), transparent 24%),
    linear-gradient(135deg, #08213b 0%, #0b1f3a 42%, #28418f 100%);
  box-shadow:
    0 34px 72px rgba(11, 31, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-page="home"] .cta-card.cta-card-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 17%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 35%);
  opacity: 0.34;
  pointer-events: none;
}

body[data-page="home"] .cta-card.cta-card-split::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0) 68%);
  pointer-events: none;
}

body[data-page="home"] .cta-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: stretch;
}

body[data-page="home"] .cta-card-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

body[data-page="home"] .cta-card-copy .eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="home"] .cta-card-copy h2 {
  margin: 0;
  max-width: 13ch;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body[data-page="home"] .cta-card-intro {
  max-width: 60ch;
  margin: 24px 0 0;
  color: rgba(235, 242, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.88;
}

body[data-page="home"] .cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .cta-benefits li {
  position: relative;
  min-height: 100%;
  padding: 14px 16px 14px 46px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 251, 255, 0.94);
  font-weight: 600;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

body[data-page="home"] .cta-benefits li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #7c3aed);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.22);
}

body[data-page="home"] .cta-benefits li::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 21px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

body[data-page="home"] .cta-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body[data-page="home"] .cta-card-actions .button-primary {
  background: #ffffff;
  color: #123d88;
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .cta-card-actions .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

body[data-page="home"] .cta-lead-form {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(17, 38, 81, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.04));
  box-shadow: 0 28px 60px rgba(7, 24, 53, 0.18);
}

body[data-page="home"] .cta-form-kicker {
  margin: 0;
  color: #113a82;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .cta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] .cta-form-grid label {
  display: grid;
  gap: 8px;
}

body[data-page="home"] .cta-form-grid label span {
  color: #304764;
  font-size: 0.92rem;
  font-weight: 700;
}

body[data-page="home"] .cta-form-grid input,
body[data-page="home"] .cta-form-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(35, 74, 142, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #0b1f3a;
  font: inherit;
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

body[data-page="home"] .cta-form-grid textarea {
  resize: vertical;
  min-height: 140px;
}

body[data-page="home"] .cta-form-grid input:focus,
body[data-page="home"] .cta-form-grid textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

body[data-page="home"] .cta-form-span-full {
  grid-column: 1 / -1;
}

body[data-page="home"] .cta-form-actions {
  display: grid;
  gap: 14px;
}

body[data-page="home"] .cta-form-actions .button-gradient {
  justify-self: start;
  min-height: 54px;
  padding-inline: 26px;
  box-shadow: 0 18px 34px rgba(86, 62, 208, 0.2);
}

body[data-page="home"] .cta-form-note {
  margin: 0;
  color: #566983;
  line-height: 1.72;
}

body[data-page="home"] .cta-form-note a {
  color: #11439a;
  font-weight: 700;
}

@media (max-width: 1180px) {
  body[data-page="home"] .cta-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .cta-card-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .cta-card.cta-card-split {
    padding: 22px;
    border-radius: 28px;
  }

  body[data-page="home"] .cta-card-copy h2 {
    max-width: none;
    font-size: clamp(2.25rem, 9vw, 3.4rem);
  }

  body[data-page="home"] .cta-benefits,
  body[data-page="home"] .cta-form-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .cta-lead-form {
    padding: 22px;
    border-radius: 24px;
  }
}

body[data-page="home"] .industry-showcase-section {
  position: relative;
  padding-top: 14px;
}

body[data-page="home"] .industry-showcase-section::before {
  content: "";
  position: absolute;
  inset: -8px 0 auto 0;
  height: 220px;
  background:
    radial-gradient(circle at 12% 26%, rgba(20, 184, 166, 0.14), transparent 20%),
    radial-gradient(circle at 86% 20%, rgba(124, 58, 237, 0.12), transparent 22%);
  opacity: 0.94;
  pointer-events: none;
}

body[data-page="home"] .industry-showcase-header,
body[data-page="home"] .industry-showcase-grid {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .industry-showcase-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0 auto 38px;
  text-align: center;
}

body[data-page="home"] .industry-showcase-header .eyebrow {
  margin: 0;
  color: #8aa0bf;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body[data-page="home"] .industry-showcase-header h2 {
  margin: 0;
  max-width: 28ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #16274a;
  text-wrap: balance;
}

body[data-page="home"] .industry-showcase-header h2 span {
  display: block;
}

body[data-page="home"] .industry-showcase-intro {
  margin: 0;
  max-width: 48rem;
  color: #62728a;
  font-size: 1.05rem;
  line-height: 1.82;
}

body[data-page="home"] .industry-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 32px);
}

body[data-page="home"] .industry-showcase-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 28px 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(27, 59, 122, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(20, 184, 166, 0.04));
  box-shadow: 0 24px 52px rgba(11, 31, 58, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="home"] .industry-showcase-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 249, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.06), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .industry-showcase-card:nth-child(3),
body[data-page="home"] .industry-showcase-card:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.94)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(37, 99, 235, 0.04));
}

body[data-page="home"] .industry-showcase-card:nth-child(4),
body[data-page="home"] .industry-showcase-card:nth-child(6) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 240, 0.94)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.07), rgba(124, 58, 237, 0.04));
}

body[data-page="home"] .industry-showcase-card:hover,
body[data-page="home"] .industry-showcase-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 32px 64px rgba(11, 31, 58, 0.1);
}

body[data-page="home"] .industry-showcase-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -26px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

body[data-page="home"] .industry-showcase-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.18);
}

body[data-page="home"] .industry-showcase-card:nth-child(3) .industry-showcase-icon,
body[data-page="home"] .industry-showcase-card:nth-child(5) .industry-showcase-icon {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

body[data-page="home"] .industry-showcase-card:nth-child(4) .industry-showcase-icon,
body[data-page="home"] .industry-showcase-card:nth-child(6) .industry-showcase-icon {
  background: linear-gradient(135deg, #f97316, #7c3aed);
}

body[data-page="home"] .industry-showcase-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .industry-showcase-card h3 {
  margin: 0;
  max-width: 12ch;
  color: #202b3d;
  font-size: clamp(1.55rem, 1.8vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

body[data-page="home"] .industry-showcase-card p {
  margin: 0;
  color: #65758e;
  font-size: 1rem;
  line-height: 1.76;
}

body[data-page="home"] .industry-showcase-card .text-link {
  margin-top: 4px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  body[data-page="home"] .industry-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .industry-showcase-header {
    margin-bottom: 28px;
  }

  body[data-page="home"] .industry-showcase-header h2 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  body[data-page="home"] .industry-showcase-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .industry-showcase-card {
    padding: 24px 22px 24px;
    border-radius: 24px;
  }
}

/* Unified homepage footer - September 2, 2026 */
.site-footer {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 2rem) var(--page-gutter) 0;
  overflow: hidden;
  color: #f7fbff;
  background:
    radial-gradient(circle at 12% 14%, rgba(36, 195, 218, 0.16), transparent 25%),
    radial-gradient(circle at 93% 8%, rgba(90, 86, 224, 0.2), transparent 23%),
    linear-gradient(125deg, #06182c 0%, #0a2140 46%, #101c4c 100%);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.site-footer::before {
  width: min(52vw, 58rem);
  height: min(52vw, 58rem);
  right: -19rem;
  bottom: -36rem;
  border: 1px solid rgba(110, 204, 237, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 5.5rem rgba(110, 204, 237, 0.025), 0 0 0 11rem rgba(110, 204, 237, 0.02);
}

.site-footer::after {
  inset: 0;
  background-image: linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.025) 48.1% 48.5%, transparent 48.6% 100%);
  opacity: 0.8;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.footer-enquiry-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.2rem, 2.5vw, 2.8rem);
  align-items: center;
  min-height: 9.4rem;
  padding: 1.35rem clamp(1.35rem, 3vw, 2.8rem) 1.35rem 1.35rem;
  border-radius: 1.5rem 1.5rem 0 0;
  background: linear-gradient(100deg, #12c4d8 0%, #1775c8 38%, #162e83 100%);
  box-shadow: 0 20px 44px rgba(2, 11, 33, 0.24);
}

.footer-enquiry-icon {
  display: grid;
  width: 6.7rem;
  height: 6.7rem;
  place-items: center;
  color: #ffffff;
  background: rgba(6, 30, 74, 0.23);
}

.footer-enquiry-icon svg {
  width: 3rem;
  height: 3rem;
}

.footer-enquiry-copy .eyebrow {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
}

.footer-enquiry-copy h2 {
  max-width: 31ch;
  margin: 0;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.footer-enquiry-action,
.footer-office-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.2rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-enquiry-action:hover,
.footer-enquiry-action:focus-visible {
  color: #113277;
  background: #ffffff;
  transform: translateY(-2px);
}

.footer-content-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 1.5fr) minmax(9rem, 0.58fr) minmax(10rem, 0.72fr) minmax(15rem, 0.98fr);
  gap: clamp(2rem, 4vw, 5.3rem);
  padding: clamp(3rem, 5.5vw, 5.4rem) clamp(0.5rem, 0.8vw, 0.75rem) clamp(2.75rem, 4vw, 4.25rem);
}

.footer-brand-column,
.footer-nav-column,
.footer-office-column {
  min-width: 0;
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  color: #ffffff;
  text-decoration: none;
}

.footer-wordmark-mark {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border-radius: 50% 50% 50% 14%;
  color: #08254a;
  background: linear-gradient(135deg, #23d2da, #93e6f1);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.footer-wordmark strong,
.footer-wordmark small {
  display: block;
}

.footer-wordmark strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  line-height: 1.05;
}

.footer-wordmark small {
  margin-top: 0.28rem;
  color: rgba(211, 228, 247, 0.58);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand-column h2 {
  max-width: 18ch;
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.footer-brand-column > p,
.footer-office-column > p {
  max-width: 45ch;
  margin: 0;
  color: rgba(211, 228, 247, 0.7);
  font-size: 0.96rem;
  line-height: 1.75;
}

.footer-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.45rem;
}

.footer-contact-actions a {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(141, 190, 222, 0.16);
  border-radius: 0.8rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-contact-actions a:hover,
.footer-contact-actions a:focus-visible {
  border-color: rgba(67, 210, 222, 0.65);
  background: rgba(42, 194, 214, 0.12);
  transform: translateY(-2px);
}

.footer-contact-actions span {
  color: rgba(211, 228, 247, 0.61);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-actions strong {
  overflow-wrap: anywhere;
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer-nav-kicker {
  margin: 0 0 1.2rem;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.footer-links a {
  width: fit-content;
  color: rgba(211, 228, 247, 0.68);
  font-size: 0.95rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-office-link:hover,
.footer-office-link:focus-visible,
.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #3dd7e5;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateX(3px);
}

.footer-office-column {
  padding-left: clamp(1.25rem, 2.7vw, 2.7rem);
  border-left: 1px solid rgba(163, 203, 234, 0.17);
}

.footer-office-location {
  margin: 0 0 0.95rem !important;
  color: #ffffff !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.32rem !important;
  font-weight: 700;
  line-height: 1.2 !important;
}

.footer-office-link {
  margin-top: 1.35rem;
  padding-right: 0;
  border: 0;
  border-radius: 0;
  color: #76e4ed;
  justify-content: flex-start;
  min-height: auto;
}

.footer-office-link:hover,
.footer-office-link:focus-visible {
  background: transparent;
  transform: translateX(3px);
}

.footer-bottom-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  width: 100%;
  margin: 0;
  padding: 1.4rem 0 1.55rem;
  border-top: 1px solid rgba(163, 203, 234, 0.15);
}

.footer-bottom-line p {
  margin: 0;
  color: rgba(211, 228, 247, 0.56);
  font-size: 0.84rem;
}

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

.footer-bottom-links a {
  color: rgba(211, 228, 247, 0.56);
  font-size: 0.84rem;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .footer-content-grid {
    grid-template-columns: minmax(18rem, 1.4fr) repeat(2, minmax(9rem, 0.7fr));
  }

  .footer-office-column {
    grid-column: 1 / -1;
    padding: 1.7rem 0 0;
    border-top: 1px solid rgba(163, 203, 234, 0.17);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .footer-enquiry-band {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .footer-enquiry-icon {
    width: 4.2rem;
    height: 4.2rem;
  }

  .footer-enquiry-icon svg {
    width: 2.15rem;
    height: 2.15rem;
  }

  .footer-enquiry-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.4rem;
    padding: 2.75rem 0 2.5rem;
  }

  .footer-brand-column,
  .footer-office-column {
    grid-column: 1 / -1;
  }

  .footer-office-column {
    padding-top: 1.8rem;
  }
}

@media (max-width: 430px) {
  .footer-enquiry-band {
    grid-template-columns: 1fr;
  }

  .footer-enquiry-icon {
    width: 3.8rem;
    height: 3.8rem;
  }

  .footer-contact-actions,
  .footer-content-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-column,
  .footer-office-column {
    grid-column: auto;
  }

  .footer-bottom-line {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Consolidated client portfolio - September 2, 2026 */
body[data-page="home"] .alliance-proof-section + .client-trust-section {
  margin-top: clamp(1.5rem, 3vw, 3.25rem);
}

body[data-page="home"] .client-trust-section .client-trust-heading {
  max-width: 58rem;
  margin: 0 auto clamp(1.7rem, 3vw, 2.6rem);
  text-align: center;
}

body[data-page="home"] .client-trust-heading .eyebrow {
  margin-bottom: 0.85rem;
  color: #2675c9;
}

body[data-page="home"] .client-trust-heading h2 {
  max-width: 22ch;
  margin-inline: auto;
  color: #102c5d;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body[data-page="home"] .client-trust-heading > p:last-child {
  max-width: 53ch;
  margin: 1rem auto 0;
  color: #64718a;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.7;
}

body[data-page="home"] .client-sector-strip {
  justify-content: center;
  margin-bottom: clamp(1.4rem, 2.4vw, 2.15rem);
}

body[data-page="home"] .client-logo-wall {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

@media (max-width: 700px) {
  body[data-page="home"] .alliance-proof-section + .client-trust-section {
    margin-top: 1rem;
  }

  body[data-page="home"] .client-trust-section .client-trust-heading {
    text-align: left;
  }

  body[data-page="home"] .client-trust-heading h2,
  body[data-page="home"] .client-trust-heading > p:last-child {
    margin-left: 0;
  }

  body[data-page="home"] .client-sector-strip {
    justify-content: flex-start;
  }
}

/* FAQ accordion motion - September 2, 2026 */
body[data-page="home"] .home-faq-item.is-animating {
  will-change: height;
}

body[data-page="home"] .home-faq-item summary {
  transition: color 180ms ease;
}

body[data-page="home"] .home-faq-item summary::after {
  transition: color 180ms ease, background 180ms ease, transform 220ms ease;
}

body[data-page="home"] .home-faq-item[open] summary::after {
  transform: rotate(180deg);
}

body[data-page="home"] .home-faq-item summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: -4px;
}

body[data-page="home"] .home-faq-answer {
  transform-origin: top;
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .home-faq-item,
  body[data-page="home"] .home-faq-item summary,
  body[data-page="home"] .home-faq-item summary::after {
    transition-duration: 0.01ms;
  }
}

/* Shared footer balance: kept after theme and legacy footer layers. */
.site-footer .footer-mega {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(1.75rem, 3vw, 3rem);
  border: 1px solid rgba(157, 205, 237, 0.13);
  border-radius: clamp(1.5rem, 2.5vw, 2.5rem);
  background: rgba(3, 24, 53, 0.46);
}

.site-footer .footer-top-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2.8rem);
  align-items: stretch;
  padding-bottom: clamp(1.5rem, 2.8vw, 2.75rem);
  border-bottom: 1px solid rgba(157, 205, 237, 0.15);
}

.site-footer .footer-brand-block,
.site-footer .footer-highlight-panel {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  min-width: 0;
  min-height: 0;
  padding: clamp(1.3rem, 2.4vw, 2.1rem);
  border: 1px solid rgba(174, 214, 242, 0.13);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
}

.site-footer .footer-brand-mark {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 0 0.25rem;
  border-radius: 1.15rem;
}

.site-footer .footer-brand-mark img {
  max-width: 3.15rem;
}

.site-footer .footer-brand-block h2,
.site-footer .footer-highlight-panel h3 {
  max-width: 19ch;
  margin: 0;
  color: #ffffff;
  line-height: 1.08;
}

.site-footer .footer-brand-block h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
}

.site-footer .footer-highlight-panel h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.site-footer .footer-brand-copy,
.site-footer .footer-highlight-panel > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: rgba(222, 237, 250, 0.74);
  font-size: 0.94rem;
  line-height: 1.62;
}

.site-footer .footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.site-footer .footer-contact-chip {
  min-height: auto;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-footer .footer-contact-chip-static {
  width: 100%;
}

.site-footer .footer-cta-row {
  margin-top: 0.15rem;
}

.site-footer .footer-cta-row a {
  min-height: 2.6rem;
  padding-inline: 0.95rem;
  font-size: 0.8rem;
}

.site-footer .footer-contact-boxes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.site-footer .footer-contact-box {
  min-height: 0;
  padding: 0.85rem;
  border-radius: 1rem;
}

.site-footer .footer-contact-box span:last-child {
  font-size: 0.8rem;
  line-height: 1.38;
}

.site-footer .footer-contact-icon {
  min-width: 0;
  min-height: 1.5rem;
  padding: 0 0.55rem;
  font-size: 0.62rem;
}

.site-footer .footer-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-footer .footer-service-tags span {
  padding: 0.45rem 0.65rem;
  font-size: 0.68rem;
}

.site-footer .footer-social-row,
.site-footer .footer-mini-actions {
  margin-top: 0.1rem;
}

.site-footer .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem clamp(1.1rem, 2.3vw, 2.5rem);
  padding: 0;
}

.site-footer .footer-links-grid > div {
  gap: 0.55rem;
}

.site-footer .footer-links-grid h3 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
}

.site-footer .footer-links-grid a {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
}

.site-footer > .footer-bottom-line {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
}

@media (max-width: 980px) {
  .site-footer .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-footer .footer-mega {
    padding: 1rem;
    border-radius: 1.4rem;
  }

  .site-footer .footer-top-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 430px) {
  .site-footer .footer-contact-boxes,
  .site-footer .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* Compact homepage hero: every carousel banner follows one visual rhythm. */
@media (min-width: 981px) {
  body[data-page="home"] .hero-home {
    padding: 12px 0 10px;
  }

  body[data-page="home"] .hero-home-shell {
    gap: 12px;
    padding: clamp(16px, 2vw, 24px);
    border-radius: 28px;
  }

  body[data-page="home"] .hero-carousel {
    min-height: 400px;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    min-height: 400px;
    gap: clamp(18px, 2.2vw, 28px);
    padding: clamp(18px, 2.2vw, 26px);
    border-radius: 24px;
  }

  body[data-page="home"] .hero-master-copy,
  body[data-page="home"] .service-hero-copy {
    display: flex;
    align-self: center;
    justify-content: center;
    gap: 8px;
    max-width: 34rem;
  }

  body[data-page="home"] .hero-master-copy .hero-brand-strip,
  body[data-page="home"] .service-hero-copy .hero-brand-strip {
    margin: 0;
  }

  body[data-page="home"] .hero-master-copy .eyebrow,
  body[data-page="home"] .service-hero-tag {
    min-height: 28px;
    padding: 0 11px;
    font-size: 0.7rem;
  }

  body[data-page="home"] .hero-master-copy h1 {
    max-width: 10ch;
    margin: 2px 0 0;
    font-size: clamp(2.25rem, 3.4vw, 3.55rem);
    line-height: 1;
  }

  body[data-page="home"] .hero-master-copy .hero-text,
  body[data-page="home"] .service-hero-copy p {
    margin: 0;
    font-size: 0.91rem;
    line-height: 1.45;
  }

  body[data-page="home"] .hero-actions {
    gap: 10px;
    margin-top: 4px;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .service-hero-copy a {
    min-height: 42px;
    padding: 0 16px;
    margin-top: 4px;
    border-radius: 12px;
  }

  body[data-page="home"] .hero-trust-line {
    gap: 8px;
    margin-top: 4px;
    padding: 7px 10px;
    border-radius: 12px;
  }

  body[data-page="home"] .hero-trust-badge {
    min-width: 0;
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.65rem;
  }

  body[data-page="home"] .hero-trust-line p,
  body[data-page="home"] .hero-rating-strip p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  body[data-page="home"] .hero-rating-strip,
  body[data-page="home"] .service-hero-copy .hero-rating-strip {
    gap: 7px;
    margin: 0;
  }

  body[data-page="home"] .hero-rating-stars {
    font-size: 0.98rem;
  }

  body[data-page="home"] .hero-master-copy .hero-highlights,
  body[data-page="home"] .hero-master-copy .hero-proof-grid {
    display: none;
  }

  body[data-page="home"] .service-hero-copy h2 {
    margin: 0;
    font-size: clamp(1.85rem, 2.5vw, 2.55rem);
    line-height: 1.02;
  }

  body[data-page="home"] .service-proof-row {
    gap: 6px;
  }

  body[data-page="home"] .service-proof-row span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media {
    min-height: 0;
    height: min(340px, 100%);
    max-height: 340px;
    align-self: center;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  body[data-page="home"] .hero-master-photo-shell {
    position: relative;
    inset: 0;
    min-height: 0;
    height: 100%;
    border-radius: inherit;
  }

  body[data-page="home"] .hero-master-badge {
    display: none;
  }

  body[data-page="home"] .service-hero-media-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 14px;
  }

  body[data-page="home"] .service-hero-media-card strong {
    font-size: 0.9rem;
  }

  body[data-page="home"] .service-hero-media-card span {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  body[data-page="home"] .hero-carousel-nav {
    gap: 8px;
    margin-top: 10px;
  }

  body[data-page="home"] .hero-carousel-button {
    min-width: 96px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .hero-carousel {
    min-height: 0;
  }

  body[data-page="home"] .hero-master-banner,
  body[data-page="home"] .service-hero-banner {
    min-height: auto;
    padding: 22px;
  }

  body[data-page="home"] .hero-master-visual,
  body[data-page="home"] .service-hero-media {
    min-height: 260px;
  }
}

/* Visual navigation tiles: service and industry menus retain fast, compact access. */
.nav-submenu .nav-visual-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.5rem 0.6rem;
  border: 1px solid transparent;
}

.nav-submenu .nav-menu-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  color: #1764d8;
  background: linear-gradient(135deg, #edf5ff, #e9fbf7);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.nav-submenu .nav-menu-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-menu-icon--aiRecruitment,
.nav-menu-icon--aiBased,
.nav-menu-icon--it {
  color: #2563eb;
}

.nav-menu-icon--aiStaffing,
.nav-menu-icon--staffing,
.nav-menu-icon--telecom {
  color: #0f9b91;
}

.nav-menu-icon--aiExecutive,
.nav-menu-icon--executiveSearch,
.nav-menu-icon--international {
  color: #7c3aed;
}

.nav-menu-icon--process,
.nav-menu-icon--consultancy,
.nav-menu-icon--rpo,
.nav-menu-icon--gcc {
  color: #2563eb;
}

.nav-menu-icon--testimonials,
.nav-menu-icon--contract,
.nav-menu-icon--logistics {
  color: #ea7a17;
}

.nav-menu-icon--itStaffing,
.nav-menu-icon--bgv,
.nav-menu-icon--healthcare {
  color: #0a9f72;
}

.nav-submenu .nav-visual-link span {
  line-height: 1.25;
}

.nav-submenu .nav-visual-link:hover {
  border-color: rgba(37, 99, 235, 0.12);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(240, 253, 250, 0.78));
}

.nav-submenu .nav-visual-link:hover .nav-menu-icon {
  transform: scale(1.04);
}

.services-dropdown .nav-submenu,
.industries-dropdown .nav-submenu {
  min-width: 470px;
  gap: 0.45rem;
}

@media (max-width: 1024px) {
  .services-dropdown .nav-submenu,
  .industries-dropdown .nav-submenu {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .nav-submenu .nav-visual-link {
    min-height: 54px;
  }
}

/* Final footer packing: balances the two contact panels with the navigation. */
@media (min-width: 981px) {
  .site-footer .footer-mega {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 1.15rem;
    padding: clamp(1.25rem, 2vw, 1.85rem);
  }

  .site-footer .footer-top-band {
    display: contents;
  }

  .site-footer .footer-brand-block,
  .site-footer .footer-highlight-panel {
    align-content: start;
    gap: 0.7rem;
    min-height: 0;
    padding: 1.2rem;
    border-radius: 1.25rem;
  }

  .site-footer .footer-brand-block {
    grid-column: span 3;
  }

  .site-footer .footer-highlight-panel {
    grid-column: span 3;
  }

  .site-footer .footer-brand-mark {
    width: 3.4rem;
    height: 3.4rem;
    margin-bottom: 0;
  }

  .site-footer .footer-brand-mark img {
    max-width: 2.55rem;
  }

  .site-footer .footer-brand-block h2,
  .site-footer .footer-highlight-panel h3 {
    max-width: none;
    font-size: clamp(1.45rem, 1.75vw, 1.95rem);
    line-height: 1.08;
  }

  .site-footer .footer-brand-copy,
  .site-footer .footer-highlight-panel > p:not(.eyebrow) {
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .site-footer .footer-contact-list {
    gap: 0.4rem;
    margin-top: 0.1rem;
  }

  .site-footer .footer-contact-chip {
    padding: 0.45rem 0.55rem;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .site-footer .footer-cta-row a {
    min-height: 2.25rem;
    padding-inline: 0.75rem;
    font-size: 0.72rem;
  }

  .site-footer .footer-contact-boxes {
    gap: 0.45rem;
  }

  .site-footer .footer-contact-box {
    gap: 0.35rem;
    padding: 0.65rem;
    border-radius: 0.85rem;
  }

  .site-footer .footer-contact-box span:last-child {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .site-footer .footer-service-tags {
    gap: 0.35rem;
  }

  .site-footer .footer-service-tags span {
    padding: 0.35rem 0.5rem;
    font-size: 0.62rem;
  }

  .site-footer .footer-social-row img {
    width: 1rem;
    height: 1rem;
  }

  .site-footer .footer-mini-actions {
    gap: 0.5rem 0.8rem;
  }

  .site-footer .footer-mini-actions a {
    font-size: 0.78rem;
  }

  .site-footer .footer-links-grid {
    grid-column: span 6;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
    gap: 1.35rem 1.5rem;
    padding: 0.3rem 0;
  }

  .site-footer .footer-links-grid > div {
    gap: 0.42rem;
  }

  .site-footer .footer-links-grid h3 {
    margin-bottom: 0.2rem;
    font-size: 0.82rem;
  }

  .site-footer .footer-links-grid a {
    font-size: 0.75rem;
    line-height: 1.32;
  }

  .site-footer .footer-links-grid > div:last-child {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.9rem;
    margin-top: 0.1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(157, 205, 237, 0.13);
  }

  .site-footer .footer-links-grid > div:last-child h3 {
    margin: 0 0.35rem 0 0;
  }

  .site-footer .footer-bottom-line {
    margin-top: 0.8rem;
    padding: 1rem 0 0.3rem;
  }
}

/* Headless WordPress article template. */
.wordpress-article-shell {
  max-width: 980px;
  margin: 0 auto;
  padding-top: clamp(2rem, 5vw, 5rem);
}

.wordpress-article-back {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: #1d4ed8;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.wordpress-article {
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 96% 4%, rgba(20, 184, 166, 0.12), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
  box-shadow: 0 28px 70px rgba(11, 31, 58, 0.09);
}

.wordpress-article > h1 {
  max-width: 18ch;
  margin: 0.5rem 0 0;
  color: #102647;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.wordpress-article-date {
  margin: 1.25rem 0 0;
  color: #61718a;
  font-weight: 700;
}

.wordpress-article-image {
  margin: clamp(1.5rem, 3.5vw, 2.75rem) 0;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #eaf0f8;
}

.wordpress-article-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.wordpress-article-content {
  max-width: 46rem;
  color: #33445f;
  font-size: 1.08rem;
  line-height: 1.84;
}

.wordpress-article-content > :first-child {
  margin-top: 0;
}

.wordpress-article-content h2,
.wordpress-article-content h3 {
  margin: 2rem 0 0.8rem;
  color: #102647;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}

.wordpress-article-content h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.wordpress-article-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.wordpress-article-content a {
  color: #1d4ed8;
  font-weight: 700;
}

.wordpress-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.wordpress-article-content blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #14b8a6;
  border-radius: 0 1rem 1rem 0;
  background: rgba(20, 184, 166, 0.08);
  color: #173866;
  font-weight: 700;
}

@media (max-width: 640px) {
  .wordpress-article-shell {
    padding-top: 1.25rem;
  }

  .wordpress-article {
    padding: 1.35rem;
    border-radius: 1.4rem;
  }

  .wordpress-article-content {
    font-size: 1rem;
  }
}

/* Final compact CTA overrides: kept last to supersede legacy CTA layers. */
/* Homepage color rhythm: keeps long-form sections visually distinct without overpowering content. */
body[data-page="home"] main {
  position: relative;
  isolation: isolate;
  padding: clamp(0.4rem, 1vw, 1rem);
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 4% 8%, rgba(37, 99, 235, 0.13), transparent 20rem),
    radial-gradient(circle at 96% 24%, rgba(20, 184, 166, 0.12), transparent 23rem),
    radial-gradient(circle at 18% 72%, rgba(249, 115, 22, 0.08), transparent 20rem),
    linear-gradient(180deg, #f8fbff 0%, #f5f8ff 48%, #f8fbfd 100%);
}

body[data-page="home"] .alliance-proof-section,
body[data-page="home"] .client-trust-section,
body[data-page="home"] .services-overview-section,
body[data-page="home"] .industry-showcase-section,
body[data-page="home"] .testimonial-proof-section,
body[data-page="home"] .feature-layout,
body[data-page="home"] .process-section,
body[data-page="home"] .top-insights-section,
body[data-page="home"] .homepage-faq-section {
  padding: clamp(1.4rem, 2.5vw, 2.5rem);
  border: 1px solid rgba(41, 83, 142, 0.08);
  border-radius: clamp(1.5rem, 2.7vw, 2.3rem);
  box-shadow: 0 22px 52px rgba(11, 31, 58, 0.05);
}

body[data-page="home"] .alliance-proof-section,
body[data-page="home"] .process-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(20, 184, 166, 0.17), transparent 18rem),
    linear-gradient(135deg, rgba(235, 248, 255, 0.94), rgba(242, 252, 250, 0.9)) !important;
}

body[data-page="home"] .client-trust-section,
body[data-page="home"] .feature-layout {
  background:
    radial-gradient(circle at 10% 8%, rgba(124, 58, 237, 0.13), transparent 18rem),
    linear-gradient(135deg, rgba(247, 246, 255, 0.94), rgba(239, 247, 255, 0.9)) !important;
}

body[data-page="home"] .services-overview-section,
body[data-page="home"] .top-insights-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(249, 115, 22, 0.13), transparent 18rem),
    linear-gradient(135deg, rgba(255, 249, 240, 0.92), rgba(242, 249, 255, 0.92)) !important;
}

body[data-page="home"] .industry-showcase-section,
body[data-page="home"] .homepage-faq-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(20, 184, 166, 0.14), transparent 18rem),
    radial-gradient(circle at 94% 86%, rgba(37, 99, 235, 0.11), transparent 19rem),
    linear-gradient(135deg, rgba(242, 252, 250, 0.92), rgba(244, 248, 255, 0.94)) !important;
}

body[data-page="home"] .testimonial-proof-section {
  background:
    radial-gradient(circle at 90% 16%, rgba(251, 191, 36, 0.14), transparent 16rem),
    radial-gradient(circle at 14% 88%, rgba(124, 58, 237, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 251, 243, 0.92), rgba(246, 246, 255, 0.94)) !important;
}

body[data-page="home"] .section .eyebrow {
  color: #1d5fbe;
}

@media (max-width: 640px) {
  body[data-page="home"] main {
    padding: 0.35rem;
    border-radius: 1.5rem;
  }

  body[data-page="home"] .alliance-proof-section,
  body[data-page="home"] .client-trust-section,
  body[data-page="home"] .services-overview-section,
  body[data-page="home"] .industry-showcase-section,
  body[data-page="home"] .testimonial-proof-section,
  body[data-page="home"] .feature-layout,
  body[data-page="home"] .process-section,
  body[data-page="home"] .top-insights-section,
  body[data-page="home"] .homepage-faq-section {
    padding: 1.15rem;
    border-radius: 1.35rem;
  }
}

body[data-page="home"] .cta-section {
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: clamp(3rem, 5.5vw, 5.5rem);
}

body[data-page="home"] .cta-card.cta-card-split {
  padding: clamp(1.4rem, 2.4vw, 2.3rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at 13% 17%, rgba(20, 202, 192, 0.28), transparent 26%),
    radial-gradient(circle at 76% 8%, rgba(255, 112, 96, 0.24), transparent 22%),
    radial-gradient(circle at 96% 88%, rgba(123, 92, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #082342 0%, #102e6d 52%, #3a3f91 100%);
}

body[data-page="home"] .cta-card-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  gap: clamp(1.5rem, 2.6vw, 2.8rem);
  align-items: start;
}

body[data-page="home"] .cta-card-copy {
  min-height: 0;
  padding: clamp(0.3rem, 1vw, 0.8rem) 0;
}

body[data-page="home"] .cta-card-copy .eyebrow {
  margin-bottom: 0.7rem;
  color: #9ceef0;
  font-size: 0.76rem;
}

body[data-page="home"] .cta-card-copy h2 {
  max-width: 15ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 4rem);
  line-height: 1.03;
}

body[data-page="home"] .cta-card-intro {
  max-width: 47ch;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

body[data-page="home"] .cta-benefits {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

body[data-page="home"] .cta-benefits li {
  min-height: 0;
  padding: 0.68rem 0.85rem 0.68rem 2.7rem;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

body[data-page="home"] .cta-benefits li::before {
  left: 0.85rem;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #16d4cc, #4d7cff);
}

body[data-page="home"] .cta-benefits li::after {
  left: 1.27rem;
  top: 50%;
  transform: translateY(-64%) rotate(-45deg);
}

body[data-page="home"] .cta-benefits li:nth-child(2)::before {
  background: linear-gradient(135deg, #ff7e54, #ee5eaa);
}

body[data-page="home"] .cta-benefits li:nth-child(3)::before {
  background: linear-gradient(135deg, #f6bd45, #ff7e54);
}

body[data-page="home"] .cta-lead-form {
  gap: 0.9rem;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: 1.35rem;
}

body[data-page="home"] .cta-form-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

body[data-page="home"] .cta-form-grid {
  gap: 0.7rem;
}

body[data-page="home"] .cta-form-grid label {
  gap: 0.35rem;
}

body[data-page="home"] .cta-form-grid label span {
  font-size: 0.72rem;
}

body[data-page="home"] .cta-form-grid input,
body[data-page="home"] .cta-form-grid textarea {
  padding: 0.68rem 0.8rem;
  border-radius: 0.75rem;
  font-size: 0.84rem;
}

body[data-page="home"] .cta-form-grid textarea {
  min-height: 5.8rem;
}

body[data-page="home"] .cta-form-actions {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}

body[data-page="home"] .cta-form-actions .button-gradient {
  min-height: 2.7rem;
  padding-inline: 1.15rem;
  font-size: 0.82rem;
  background: linear-gradient(135deg, #ff7061, #e958a1);
  box-shadow: 0 12px 24px rgba(233, 88, 161, 0.22);
}

body[data-page="home"] .cta-form-note {
  font-size: 0.75rem;
  line-height: 1.45;
}

@media (max-width: 860px) {
  body[data-page="home"] .cta-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .cta-card-copy h2 {
    max-width: 18ch;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .cta-section {
    margin-bottom: 2.5rem;
  }

  body[data-page="home"] .cta-card.cta-card-split {
    padding: 1.1rem;
    border-radius: 1.5rem;
  }

  body[data-page="home"] .cta-card-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  body[data-page="home"] .cta-form-grid,
  body[data-page="home"] .cta-form-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .cta-form-actions .button-gradient {
    width: 100%;
    justify-self: stretch;
  }
}

/* Unified city recruitment pages */
body.city-page {
  background: #f5f8fc;
}

.city-page main {
  overflow: hidden;
}

.city-page .section {
  max-width: 1240px;
  margin-inline: auto;
}

.city-hero {
  position: relative;
  min-height: clamp(550px, 70vh, 720px);
  display: grid;
  align-items: center;
  margin: 0 calc(var(--page-gutter) * -1);
  padding: clamp(7rem, 13vw, 10rem) max(var(--page-gutter), calc((100vw - 1240px) / 2)) clamp(4rem, 8vw, 7rem);
  color: #fff;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(6, 22, 46, 0.96) 0%, rgba(6, 31, 65, 0.86) 49%, rgba(6, 31, 65, 0.28) 100%), var(--city-hero);
  background-position: center;
  background-size: cover;
}

.city-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  z-index: -1;
  background: linear-gradient(90deg, #1376d8 0 35%, #14b8a6 35% 68%, #f97316 68%);
}

.city-hero-inner {
  width: min(760px, 100%);
}

.city-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}

.city-breadcrumb a { color: #fff; }
.city-kicker { margin: 0 0 1rem; color: #6ee7d8; font-size: .8rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.city-hero h1 { max-width: 13ch; margin: 0; color: #fff; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: .98; letter-spacing: 0; }
.city-hero-inner > p:not(.city-kicker) { max-width: 670px; margin: 1.4rem 0 0; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 1.8vw, 1.28rem); line-height: 1.7; }
.city-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.city-button-light { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.42); color: #fff; backdrop-filter: blur(8px); }
.city-button-light:hover { background: #fff; color: var(--navy); }
.city-hero-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 2.3rem 0 0; padding: 0; list-style: none; }
.city-hero-tags li { padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.22); border-radius: 4px; background: rgba(8,26,52,.52); color: #fff; font-size: .78rem; font-weight: 700; }

.city-signal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: -2rem auto 0;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11,31,58,.12);
}
.city-signal article { min-width: 0; padding: 1.5rem; border-right: 1px solid #e2e9f0; }
.city-signal article:last-child { border-right: 0; }
.city-signal strong, .city-signal span { display: block; }
.city-signal strong { margin-bottom: .45rem; color: var(--navy); font-size: .98rem; }
.city-signal span { color: var(--muted); font-size: .8rem; line-height: 1.55; }

.city-split { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: clamp(2.2rem, 5vw, 5rem); align-items: center; padding-block: clamp(4.5rem, 8vw, 7rem); }
.city-split figure { position: relative; margin: 0; }
.city-split figure::before { content:""; position:absolute; inset: 18px -18px -18px 18px; z-index:-1; background:#dfeefb; border-radius: 6px; }
.city-split img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; box-shadow: 0 24px 55px rgba(11,31,58,.16); }
.city-split figcaption { position: absolute; inset: auto 1rem 1rem; padding: .85rem 1rem; border-left: 4px solid #14b8a6; background: rgba(7,28,56,.92); color: #fff; font-size: .82rem; line-height: 1.5; }
.city-split h2, .city-section-head h2, .city-why h2, .city-commitments h2, .city-faq h2, .city-contact h2, .city-related h2 { margin: .5rem 0 1rem; color: var(--navy); font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 3.8vw, 3.5rem); line-height: 1.08; letter-spacing: 0; }
.city-split > div > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; line-height: 1.78; }
.city-challenges { display: grid; gap: .7rem; margin-top: 1.5rem; }
.city-challenges article { display: grid; grid-template-columns: 2.2rem 1fr; gap: .8rem; align-items: start; padding: .85rem 0; border-top: 1px solid #dce4ec; }
.city-challenges span { color: #1376d8; font-weight: 800; }
.city-challenges p { margin: 0; color: #34465f; line-height: 1.55; }

.city-services { padding-block: clamp(4rem, 7vw, 6.5rem); }
.city-section-head { max-width: 760px; margin-bottom: 2.2rem; }
.city-section-head > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.city-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid #dbe4ed; border-left: 1px solid #dbe4ed; }
.city-service-grid article { min-height: 285px; padding: 1.6rem; border-right: 1px solid #dbe4ed; border-bottom: 1px solid #dbe4ed; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.city-service-grid article:hover { position: relative; z-index: 1; transform: translateY(-4px); box-shadow: 0 18px 38px rgba(11,31,58,.1); }
.city-service-grid article > span { color: #14b8a6; font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.city-service-grid h3 { margin: 2.6rem 0 .8rem; color: var(--navy); font-size: 1.08rem; }
.city-service-grid p { color: var(--muted); font-size: .86rem; line-height: 1.65; }
.city-service-grid a { display: inline-block; margin-top: 1rem; color: #0d62bd; font-size: .8rem; font-weight: 800; }
.city-service-grid b { margin-left: .25rem; }

.city-why { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(2rem,5vw,5rem); padding-block: clamp(4rem,8vw,7rem); }
.city-why > div:first-child > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.city-why-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.city-why-grid article { padding: 1.5rem; border-top: 4px solid #1376d8; background: #fff; box-shadow: 0 15px 38px rgba(11,31,58,.07); }
.city-why-grid article:nth-child(2) { border-color: #14b8a6; }
.city-why-grid article:nth-child(3) { border-color: #f97316; }
.city-why-grid article:nth-child(4) { border-color: #7c3aed; }
.city-why-grid strong { color: #8090a4; font-size: .78rem; }
.city-why-grid h3 { margin: 1.7rem 0 .65rem; color: var(--navy); font-size: 1rem; }
.city-why-grid p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }

.city-process { padding-block: clamp(4rem,7vw,6rem); }
.city-process ol { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; counter-reset: step; }
.city-process li { position: relative; padding: 0 1.5rem 0 0; }
.city-process li:not(:last-child)::after { content:""; position:absolute; top:1.15rem; left:3.3rem; right:1rem; height:1px; background:#c9d6e3; }
.city-process li > span { display:grid; place-items:center; width:2.35rem; height:2.35rem; border:2px solid #1376d8; border-radius:50%; color:#1376d8; background:#f5f8fc; font-size:.7rem; font-weight:800; }
.city-process h3 { margin: 1.6rem 0 .6rem; color:var(--navy); }
.city-process p { color:var(--muted); font-size:.84rem; line-height:1.65; }

.city-industries { padding-block: clamp(4rem,7vw,6.5rem); }
.city-industries > div { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.city-industries article { min-height:180px; padding:1.5rem; border:1px solid #dbe4ed; border-radius:6px; background:#fff; }
.city-industries article span { color:#f97316; font-size:.74rem; font-weight:800; }
.city-industries h3 { margin:1.5rem 0 .6rem; color:var(--navy); font-size:1rem; }
.city-industries article p { margin:0; color:var(--muted); font-size:.82rem; line-height:1.58; }

.city-commitments { max-width:none !important; margin-inline:calc(var(--page-gutter) * -1) !important; padding:clamp(4rem,7vw,6.5rem) max(var(--page-gutter),calc((100vw - 1240px) / 2)); color:#fff; background:#0b1f3a; }
.city-commitments > div:first-child { max-width:720px; }
.city-commitments .eyebrow { color:#5eead4; }
.city-commitments h2 { color:#fff; }
.city-commitments > div:last-child { display:grid; grid-template-columns:repeat(4,1fr); margin-top:2rem; border-top:1px solid rgba(255,255,255,.18); }
.city-commitments article { padding:1.5rem 1.5rem 0 0; }
.city-commitments h3 { color:#fff; font-size:1rem; }
.city-commitments article p { color:rgba(255,255,255,.66); font-size:.82rem; line-height:1.65; }

.city-faq { display:grid; grid-template-columns:minmax(0,.7fr) minmax(0,1.3fr); gap:clamp(2rem,6vw,6rem); padding-block:clamp(4rem,8vw,7rem); }
.city-faq header > p:not(.eyebrow) { color:var(--muted); line-height:1.65; }
.city-faq details { border-bottom:1px solid #d6e0ea; }
.city-faq summary { position:relative; padding:1.25rem 2.2rem 1.25rem 0; color:var(--navy); font-weight:800; cursor:pointer; list-style:none; }
.city-faq summary::-webkit-details-marker { display:none; }
.city-faq summary::after { content:"+"; position:absolute; right:.2rem; top:1.05rem; color:#1376d8; font-size:1.4rem; }
.city-faq details[open] summary::after { content:"-"; }
.city-faq details p { margin:0; padding:0 2rem 1.25rem 0; color:var(--muted); font-size:.9rem; line-height:1.7; }

.city-contact { display:grid; grid-template-columns:minmax(0,.85fr) minmax(360px,1fr); gap:clamp(2rem,6vw,6rem); align-items:start; margin-bottom:clamp(4rem,7vw,6rem); padding:clamp(2rem,5vw,4.5rem); border-radius:8px; background:#e8f3fb; }
.city-contact-copy > p:not(.eyebrow) { color:var(--muted); line-height:1.7; }
.city-contact-copy ul { display:grid; gap:.7rem; margin:2rem 0 0; padding:0; list-style:none; }
.city-contact-copy a { color:#0b5dab; font-weight:800; }
.city-contact form { display:grid; gap:.9rem; padding:clamp(1.4rem,3vw,2.2rem); border-top:5px solid #14b8a6; background:#fff; box-shadow:0 20px 45px rgba(11,31,58,.1); }
.city-form-kicker { margin:0; color:#1376d8; font-size:.73rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.city-contact form h3 { margin:0 0 .5rem; color:var(--navy); font-size:1.45rem; }
.city-contact label { display:grid; gap:.35rem; }
.city-contact label span { color:#394c66; font-size:.76rem; font-weight:800; }
.city-contact input, .city-contact select, .city-contact textarea { width:100%; min-height:46px; padding:.72rem .8rem; border:1px solid #cbd7e3; border-radius:4px; color:var(--text); background:#fff; font:inherit; font-size:.86rem; }
.city-contact textarea { min-height:110px; resize:vertical; }
.city-contact input:focus, .city-contact select:focus, .city-contact textarea:focus { outline:3px solid rgba(19,118,216,.16); border-color:#1376d8; }
.city-form-note { margin:0; color:var(--muted); font-size:.72rem; }
.form-trap { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; }

.city-related { padding-block:1rem 4rem; }
.city-related header { max-width:680px; }
.city-related > div { display:grid; grid-template-columns:repeat(4,1fr); gap:.8rem; margin-top:2rem; }
.city-related a { display:grid; grid-template-columns:1fr auto; gap:.35rem 1rem; min-height:125px; padding:1.2rem; border:1px solid #d9e3ec; border-radius:5px; background:#fff; }
.city-related a span { grid-column:1 / -1; color:var(--muted); font-size:.72rem; }
.city-related a strong { color:var(--navy); }
.city-related a b { color:#1376d8; }

@media (max-width: 980px) {
  .city-signal, .city-service-grid { grid-template-columns:repeat(2,1fr); }
  .city-signal article:nth-child(2) { border-right:0; }
  .city-signal article:nth-child(-n+2) { border-bottom:1px solid #e2e9f0; }
  .city-split, .city-why, .city-faq, .city-contact { grid-template-columns:1fr; }
  .city-process ol, .city-commitments > div:last-child, .city-related > div { grid-template-columns:repeat(2,1fr); gap:1.4rem; }
  .city-industries > div { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 620px) {
  .city-hero { min-height:610px; background-image:linear-gradient(90deg,rgba(6,22,46,.96),rgba(6,31,65,.8)),var(--city-hero); background-position:62% center; }
  .city-hero h1 { font-size:clamp(2.55rem,13vw,3.65rem); }
  .city-actions .button { width:100%; justify-content:center; }
  .city-signal { grid-template-columns:1fr; margin-top:0; border-radius:0; }
  .city-signal article { border-right:0; border-bottom:1px solid #e2e9f0; }
  .city-service-grid, .city-why-grid, .city-process ol, .city-industries > div, .city-commitments > div:last-child, .city-related > div { grid-template-columns:1fr; }
  .city-service-grid article { min-height:240px; }
  .city-process li { display:grid; grid-template-columns:2.8rem 1fr; gap:.6rem; }
  .city-process li::after { display:none; }
  .city-process h3 { margin-top:.2rem; }
  .city-contact { min-width:0; padding:1.15rem; }
  .city-contact form { min-width:0; padding:1.15rem; }
}
