/* Whitehats — blue & white deep-tech theme */
:root {
  --wh-blue-900: #0a1628;
  --wh-blue-800: #0f2744;
  --wh-blue-700: #153a5c;
  --wh-blue-600: #1e5a8a;
  --wh-blue-500: #2563eb;
  --wh-blue-400: #3b82f6;
  --wh-blue-100: #dbeafe;
  --wh-blue-50: #eff6ff;
  --wh-white: #ffffff;
  --wh-surface: #f8fafc;
  --wh-text: #0f172a;
  --wh-muted: #64748b;
  --wh-radius: 1rem;
  --wh-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.15);
  --wh-shadow-sm: 0 10px 30px -8px rgba(37, 99, 235, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--wh-text);
  background: var(--wh-white);
}

.text-muted-custom {
  color: var(--wh-muted) !important;
}

/* Navbar */
.navbar-wh {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%) !important;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.navbar-wh .navbar-brand {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.navbar-wh .navbar-brand-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.navbar-wh .nav-link {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--wh-blue-800) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 0.5rem;
  transition: color 0.15s ease, background 0.15s ease;
}

.navbar-wh .nav-link:hover,
.navbar-wh .nav-link:focus {
  color: var(--wh-blue-500) !important;
  background: rgba(37, 99, 235, 0.06);
}

.navbar-wh .nav-link.active {
  color: var(--wh-blue-600) !important;
  background: rgba(37, 99, 235, 0.08);
}

.navbar-wh .nav-link-news {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar-wh .news-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  font-size: 0.62rem;
  color: #fff;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  animation: wh-news-pulse 1.8s infinite;
}

@keyframes wh-news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-wh .news-flag {
    animation: none;
  }
}

.navbar-wh .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.12em;
}

.navbar-wh .dropdown-menu {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--wh-radius);
  box-shadow: var(--wh-shadow);
  padding: 0.5rem;
  margin-top: 0.5rem !important;
}

.navbar-wh .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.45rem 0.75rem;
  font-weight: 500;
}

.navbar-wh .dropdown-item:hover {
  background: var(--wh-blue-50);
  color: var(--wh-blue-600);
}

/* Social icons in navbar */
.navbar-wh .navbar-social {
  gap: 0.35rem;
}

.navbar-wh .nav-social-btn,
.footer-wh .footer-social .nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  font-size: 1.15rem;
  border-width: 1px;
  border-style: solid;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

/* Brand colors — default + hover */
.navbar-wh .nav-social-btn.nav-social-linkedin,
.footer-wh .footer-social .nav-social-btn.nav-social-linkedin {
  color: #0a66c2;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(10, 102, 194, 0.35);
}

.navbar-wh .nav-social-btn.nav-social-linkedin:hover,
.navbar-wh .nav-social-btn.nav-social-linkedin:focus-visible,
.footer-wh .footer-social .nav-social-btn.nav-social-linkedin:hover,
.footer-wh .footer-social .nav-social-btn.nav-social-linkedin:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #0a66c2 0%, #004182 100%);
  border-color: #0a66c2;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(10, 102, 194, 0.55);
}

.navbar-wh .nav-social-btn.nav-social-x,
.footer-wh .footer-social .nav-social-btn.nav-social-x {
  color: #0f1419;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  border-color: rgba(15, 20, 25, 0.2);
}

.navbar-wh .nav-social-btn.nav-social-x:hover,
.navbar-wh .nav-social-btn.nav-social-x:focus-visible,
.footer-wh .footer-social .nav-social-btn.nav-social-x:hover,
.footer-wh .footer-social .nav-social-btn.nav-social-x:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(15, 23, 42, 0.45);
}

.navbar-wh .nav-social-btn.nav-social-facebook,
.footer-wh .footer-social .nav-social-btn.nav-social-facebook {
  color: #1877f2;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(24, 119, 242, 0.4);
}

.navbar-wh .nav-social-btn.nav-social-facebook:hover,
.navbar-wh .nav-social-btn.nav-social-facebook:focus-visible,
.footer-wh .footer-social .nav-social-btn.nav-social-facebook:hover,
.footer-wh .footer-social .nav-social-btn.nav-social-facebook:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #1877f2 0%, #0c63d4 100%);
  border-color: #1877f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(24, 119, 242, 0.5);
}

.navbar-wh .nav-social-btn.nav-social-instagram,
.footer-wh .footer-social .nav-social-btn.nav-social-instagram {
  color: #e11d48;
  background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
  border-color: rgba(225, 29, 72, 0.35);
}

.navbar-wh .nav-social-btn.nav-social-instagram:hover,
.navbar-wh .nav-social-btn.nav-social-instagram:focus-visible,
.footer-wh .footer-social .nav-social-btn.nav-social-instagram:hover,
.footer-wh .footer-social .nav-social-btn.nav-social-instagram:focus-visible {
  color: #fff;
  background: linear-gradient(
    145deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: #db2777;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(219, 39, 119, 0.5);
}

.navbar-wh .nav-social-btn.nav-social-youtube,
.footer-wh .footer-social .nav-social-btn.nav-social-youtube {
  color: #ff0303;
  background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
  border-color: rgba(255, 0, 0, 0.35);
}

.navbar-wh .nav-social-btn.nav-social-youtube:hover,
.navbar-wh .nav-social-btn.nav-social-youtube:focus-visible,
.footer-wh .footer-social .nav-social-btn.nav-social-youtube:hover,
.footer-wh .footer-social .nav-social-btn.nav-social-youtube:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #ff0000 0%, #b91c1c 100%);
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(220, 38, 38, 0.5);
}

.navbar-wh .navbar-toggler {
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 0.5rem;
  padding: 0.45rem 0.65rem;
}

.navbar-wh .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.2);
}

@media (max-width: 991.98px) {
  .navbar-wh .navbar-collapse {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
  }

  .navbar-wh .navbar-social-wrap {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 0 0.25rem;
    margin-top: 0.25rem;
    border-top: 1px dashed rgba(37, 99, 235, 0.15);
  }
}

.btn-brand {
  background: linear-gradient(135deg, var(--wh-blue-500), var(--wh-blue-600));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 0.65rem;
  box-shadow: var(--wh-shadow-sm);
}

.btn-brand:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-outline-brand {
  border: 2px solid var(--wh-blue-500);
  color: var(--wh-blue-600);
  font-weight: 600;
  border-radius: 0.65rem;
}

.btn-outline-brand:hover {
  background: var(--wh-blue-500);
  color: #fff;
}

/* Hero home */
.hero-home {
  background: linear-gradient(165deg, var(--wh-blue-50) 0%, #ffffff 45%, var(--wh-blue-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero-home--tight-top {
  padding-top: 1rem;
}

@media (min-width: 992px) {
  .hero-home--tight-top {
    padding-top: 1.25rem;
  }
}

.wh-announcements + .hero-home--tight-top {
  margin-top: 0;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--wh-blue-700);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--wh-blue-900);
}

/* Homepage — OEM governance hero */
.hero-home.hero-home--oem {
  background: linear-gradient(148deg, #0a0f1f 0%, #0f172a 24%, #1e3a8a 58%, #1e40af 100%);
  color: #fff;
}

.hero-home.hero-home--oem::before {
  background-image:
    radial-gradient(circle at 18% 28%, rgba(99, 102, 241, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(56, 189, 248, 0.1) 0%, transparent 40%);
}

.home-hero-oem {
  isolation: isolate;
}

.home-hero-oem__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 94%);
  pointer-events: none;
}

.home-hero-oem__glow {
  position: absolute;
  width: min(48vw, 28rem);
  height: min(48vw, 28rem);
  right: -8%;
  top: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.home-hero-oem__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-hero-oem__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #93c5fd;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
}

.home-hero-oem__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bfdbfe;
}

.home-hero-oem__title {
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.home-hero-oem__tagline {
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.home-hero-oem__lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.125rem;
  max-width: 32rem;
  line-height: 1.55;
}

/* Governance OS — minimal hero visual */
.home-hero-oem__os {
  position: relative;
  max-width: 26rem;
  margin-inline: auto;
  padding: 2.5rem 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, rgba(10, 15, 31, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%);
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow:
    0 32px 80px -36px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  overflow: hidden;
}

@media (min-width: 992px) {
  .home-hero-oem__os {
    margin-inline: 0 0 auto;
  }
}

.home-hero-oem__os-glow {
  position: absolute;
  inset: 10% 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 68%);
  pointer-events: none;
}

.home-hero-oem__os-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.home-hero-oem__os-core-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border: 2px solid rgba(191, 219, 254, 0.45);
  box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.12), 0 20px 44px -18px rgba(0, 0, 0, 0.45);
  color: #eff6ff;
  font-size: 1.75rem;
}

.home-hero-oem__os-core-label {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.home-hero-oem__os-core-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.home-hero-oem__os-apps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.home-hero-oem__os-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 3.75rem;
  padding: 0.65rem 0.55rem 0.55rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-hero-oem__os-app i {
  font-size: 1.1rem;
  color: #93c5fd;
}

.home-hero-oem__os-app:hover,
.home-hero-oem__os-app:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.hero-home--oem .home-hero-oem-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.35);
}

.hero-home--oem .home-hero-oem-pill--more {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

.home-hero-oem__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 44rem;
}

.home-hero-oem__flow-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-hero-oem__flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.45rem;
  background: rgba(37, 99, 235, 0.28);
  color: #bfdbfe;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.home-hero-oem__flow-text {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.home-hero-oem__flow-text strong {
  font-weight: 800;
  color: #fff;
}

.home-hero-oem__flow-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.home-hero-oem__audience {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.home-hero-oem__console {
  max-width: 32rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .home-hero-oem__console {
    margin-inline: 0 0 auto;
  }
}

.home-hero-oem__console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-inline: 0.15rem;
}

.home-hero-oem__pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dbeafe;
}

.home-hero-oem__pulse span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55);
  animation: home-hero-oem-pulse 2s ease-out infinite;
}

@keyframes home-hero-oem-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(96, 165, 250, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }
}

.home-hero-oem__console-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.home-hero-oem__diagram {
  position: relative;
  min-height: 17.5rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(10, 15, 31, 0.94) 0%, rgba(30, 58, 138, 0.88) 100%);
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow:
    0 28px 70px -32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.home-hero-oem__diagram-glow {
  position: absolute;
  inset: 18% 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 68%);
  animation: home-hero-oem-spin 32s linear infinite;
  pointer-events: none;
}

@keyframes home-hero-oem-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-hero-oem__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border: 2px solid rgba(191, 219, 254, 0.5);
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.14), 0 18px 40px -16px rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 0.5rem;
}

.home-hero-oem__hub-icon {
  font-size: 1.25rem;
  color: #eff6ff;
  line-height: 1;
}

.home-hero-oem__hub-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.15rem;
}

.home-hero-oem__hub-sub {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(239, 246, 255, 0.78);
}

.home-hero-oem__product {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  min-width: 4.75rem;
  max-width: 5.5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.56rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-hero-oem__product:hover,
.home-hero-oem__product:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.home-hero-oem__product i {
  font-size: 0.95rem;
}

.home-hero-oem__product--grc i {
  color: #93c5fd;
}

.home-hero-oem__product--dspm i {
  color: #5eead4;
}

.home-hero-oem__product--consent i {
  color: #e9d5ff;
}

.home-hero-oem__product--dpdp i {
  color: #c4b5fd;
}

.home-hero-oem__product--reg i {
  color: #6ee7b7;
}

.home-hero-oem__product em {
  font-style: normal;
  font-size: 0.48rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero-oem__product--grc {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.home-hero-oem__product--grc:hover,
.home-hero-oem__product--grc:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.home-hero-oem__product--dspm {
  top: 32%;
  right: 6%;
}

.home-hero-oem__product--consent {
  bottom: 10%;
  right: 14%;
}

.home-hero-oem__product--dpdp {
  bottom: 10%;
  left: 14%;
}

.home-hero-oem__product--reg {
  top: 32%;
  left: 6%;
}

.home-hero-oem__panel {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.4);
}

.home-hero-oem__finding {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.home-hero-oem__finding:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.home-hero-oem__finding-badge {
  align-self: start;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.42rem;
  border-radius: 0.3rem;
}

.home-hero-oem__finding-badge--grc {
  color: #1e40af;
  background: #dbeafe;
}

.home-hero-oem__finding-badge--dspm {
  color: #0f766e;
  background: #ccfbf1;
}

.home-hero-oem__finding-badge--dpdp {
  color: #5b21b6;
  background: #f3e8ff;
}

.home-hero-oem__finding-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.home-hero-oem__finding-meta {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.home-hero-oem__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.home-hero-oem__stat {
  padding: 0.7rem 0.45rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.home-hero-oem__stat-val {
  display: block;
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.home-hero-oem__stat-lbl {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.home-hero-oem__stat--meter {
  padding-bottom: 0.55rem;
}

.home-hero-oem__meter {
  display: block;
  height: 0.28rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.home-hero-oem__meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

@media (max-width: 575.98px) {
  .home-hero-oem__flow-arrow {
    display: none;
  }

  .home-hero-oem__flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .home-hero-oem__diagram {
    min-height: 15.5rem;
  }

  .home-hero-oem__product {
    min-width: 4rem;
    font-size: 0.52rem;
    padding: 0.38rem 0.42rem;
  }

  .home-hero-oem__product--reg {
    left: 4%;
  }

  .home-hero-oem__product--dspm {
    right: 4%;
  }

  .home-hero-oem__product--dpdp {
    left: 8%;
  }

  .home-hero-oem__product--consent {
    right: 8%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-oem__pulse span,
  .home-hero-oem__diagram-glow {
    animation: none;
  }
}

/* Home — product announcements (edit list in index.html) */
.wh-announcements {
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 100%);
  border-bottom: none;
  margin-bottom: 0;
}

.wh-announcement-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #0f2744 0%, #153a5c 50%, #0f2744 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 16px -8px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wh-announcement-strip:hover,
.wh-announcement-strip:focus-visible {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 6px 20px -6px rgba(15, 23, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wh-announcement-strip__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0.5rem 0 0 0.5rem;
  background: linear-gradient(180deg, #e8c872 0%, #c9a227 50%, #a67c00 100%);
}

.wh-announcement-strip__badge {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  color: #0f2744;
  background: linear-gradient(180deg, #f5e6b8 0%, #d4af37 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.wh-announcement-strip__title {
  flex: 1 1 auto;
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.wh-announcement-strip__action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e8c872;
  white-space: nowrap;
  transition: color 0.15s ease, gap 0.15s ease;
}

.wh-announcement-strip:hover .wh-announcement-strip__action {
  color: #f5e6b8;
  gap: 0.3rem;
}

.wh-announcement-strip__action i {
  font-size: 0.85rem;
  transition: transform 0.15s ease;
}

.wh-announcement-strip:hover .wh-announcement-strip__action i {
  transform: translateX(2px);
}

@media (max-width: 575.98px) {
  .wh-announcement-strip {
    padding: 0.5rem 0.75rem;
    gap: 0.35rem 0.5rem;
  }

  .wh-announcement-strip__action {
    width: 100%;
    justify-content: center;
    padding-top: 0.15rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
}

.wh-announcements-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--wh-blue-800);
}

.wh-announcement-item {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--wh-radius);
  padding: 0.85rem 1rem;
  box-shadow: 0 6px 20px -10px rgba(15, 23, 42, 0.12);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wh-announcement-item:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 10px 28px -12px rgba(37, 99, 235, 0.2);
}

.wh-announcement-item a {
  color: inherit;
  text-decoration: none;
}

.wh-announcement-item a:hover .wh-announcement-title {
  color: var(--wh-blue-500);
}

.wh-announcement-title {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--wh-blue-900);
  transition: color 0.15s ease;
}

.wh-announcement-meta {
  font-size: 0.8125rem;
  color: var(--wh-muted);
  margin-top: 0.25rem;
}

.wh-announcement-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
}

.wh-announcement-badge--soon {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.wh-announcement-badge--live {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* Home — news section anchor (sticky nav offset) */
#news {
  scroll-margin-top: 5.75rem;
}

/* Product pages — full announcement block (target: #product-announcement) */
.wh-product-page-announcement {
  scroll-margin-top: 5.75rem;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.65) 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.hero-visual {
  border-radius: 1.25rem;
  background: linear-gradient(145deg, var(--wh-blue-800), var(--wh-blue-600));
  box-shadow: var(--wh-shadow);
  min-height: 280px;
  position: relative;
}

.hero-visual-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 1.25rem;
  opacity: 0.9;
}

/* Homepage — achievements (below hero) */
.section-achievements {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.achievement-copy {
  padding: 1.75rem 1.5rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 48px -22px rgba(15, 23, 42, 0.14);
}

@media (min-width: 992px) {
  .achievement-copy {
    padding: 2rem 2rem;
  }
}

.achievement-copy__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.achievement-copy__title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.achievement-copy__lead {
  font-size: 1.05rem;
  line-height: 1.6;
}

.achievement-copy__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--wh-text);
}

.achievement-copy__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.achievement-copy__check {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, #10b981, #059669);
  box-shadow: 0 6px 16px -6px rgba(5, 150, 105, 0.55);
}

.achievement-video {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.15rem;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.07) 0%, rgba(99, 102, 241, 0.06) 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.achievement-video__frame {
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 22px 50px -24px rgba(15, 23, 42, 0.45);
}

.achievement-video__frame iframe {
  border: 0;
}

.achievement-video__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wh-blue-700);
  text-decoration: none;
  transition: color 0.15s ease;
}

.achievement-video__link:hover,
.achievement-video__link:focus-visible {
  color: var(--wh-blue-500);
}

/* Homepage — global clientele presence */
.section-global-clientele {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef2ff 0%, #ffffff 40%, #ecfeff 100%);
}

.global-clientele-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% -5%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 90%, rgba(6, 182, 212, 0.12), transparent 50%),
    radial-gradient(ellipse 45% 40% at 0% 70%, rgba(245, 158, 11, 0.08), transparent 45%);
  pointer-events: none;
}

.section-global-clientele .container {
  position: relative;
  z-index: 1;
}

.global-clientele-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-blue-700);
  box-shadow: 0 8px 24px -12px rgba(79, 70, 229, 0.35);
}

.global-clientele-header__badge i {
  font-size: 1rem;
  color: var(--wh-blue-600);
}

.global-clientele-header__title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.global-clientele-header__lead {
  max-width: 42rem;
}

.global-clientele-card {
  position: relative;
  padding: 1.65rem 1.45rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px -26px rgba(15, 23, 42, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.global-clientele-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -22px rgba(37, 99, 235, 0.22);
}

.global-clientele-card__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #06b6d4, #f59e0b);
  opacity: 0.95;
}

.global-clientele-card__index {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(15, 23, 42, 0.38);
  display: block;
  margin-bottom: 0.85rem;
}

.global-clientele-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 14px 32px -12px rgba(15, 23, 42, 0.45);
}

.global-clientele-card--apac .global-clientele-card__icon,
.global-clientele-card--india .global-clientele-card__icon {
  background: linear-gradient(145deg, #ea580c, #c2410c);
}

.global-clientele-card--me .global-clientele-card__icon {
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
}

.global-clientele-card--africa .global-clientele-card__icon {
  background: linear-gradient(145deg, #059669, #047857);
}

.global-clientele-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--wh-blue-900);
}

.global-clientele-card__text {
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .global-clientele-card:hover {
    transform: none;
  }
}

/* Cards */
.card-product {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--wh-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  height: 100%;
}

.card-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--wh-shadow);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Homepage — compliance strengths (before product grid) */
.section-compliance-strength {
  position: relative;
  background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 50%, #f8fafc 100%);
}

.section-compliance-strength .container {
  position: relative;
  z-index: 1;
}

.compliance-strength__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.compliance-strength__shell {
  border-radius: 1.35rem;
  padding: 1.5rem 1.15rem 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.09);
  box-shadow: 0 14px 44px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .compliance-strength__shell {
    padding: 1.75rem 1.75rem 1.5rem;
  }
}

/* Homepage — colorful product showcase */
.section-products-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eff6ff 0%, #f8fafc 42%, #f5f3ff 100%);
}

.section-products-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 20%, rgba(99, 102, 241, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 45% at 90% 10%, rgba(6, 182, 212, 0.12), transparent 45%),
    radial-gradient(ellipse 50% 40% at 70% 85%, rgba(16, 185, 129, 0.1), transparent 50%);
  pointer-events: none;
}

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

.pillar-dna-card {
  position: relative;
  height: 100%;
  border-radius: 1rem;
  padding: 1.25rem 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-dna-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -16px rgba(15, 23, 42, 0.16);
}

.pillar-dna-card--automation {
  border-top: 3px solid #f59e0b;
}

.pillar-dna-card--audit {
  border-top: 3px solid #6366f1;
}

.pillar-dna-card--cloud {
  border-top: 3px solid #06b6d4;
}

.pillar-dna-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.pillar-dna-card--automation .pillar-dna-card__icon {
  background: linear-gradient(145deg, #f59e0b, #d97706);
  box-shadow: 0 8px 18px -8px rgba(217, 119, 6, 0.5);
}

.pillar-dna-card--audit .pillar-dna-card__icon {
  background: linear-gradient(145deg, #6366f1, #4f46e5);
  box-shadow: 0 8px 18px -8px rgba(79, 70, 229, 0.4);
}

.pillar-dna-card--cloud .pillar-dna-card__icon {
  background: linear-gradient(145deg, #06b6d4, #0891b2);
  box-shadow: 0 8px 18px -8px rgba(8, 145, 178, 0.4);
}

.pillar-dna-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--wh-blue-900);
}

.pillar-dna-card__text {
  line-height: 1.5;
}

.card-product-color {
  --pc-accent: var(--wh-blue-500);
  --pc-soft: var(--wh-blue-50);
  --pc-deep: var(--wh-blue-700);
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.1rem;
  background: #fff;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-product-color:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.18);
  border-color: var(--pc-accent);
}

.card-product-color__bar {
  height: 4px;
  background: linear-gradient(90deg, var(--pc-accent), var(--pc-accent-end, var(--pc-deep)));
}

.card-product-color__body {
  padding: 1.35rem 1.35rem 1.25rem;
}

@media (min-width: 992px) {
  .card-product-color__body {
    padding: 1.5rem 1.5rem 1.35rem;
  }
}

.card-product-color .product-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-deep);
  background: var(--pc-soft);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.card-product-color .icon-round-lg {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(145deg, var(--pc-accent), var(--pc-accent-end, var(--pc-deep)));
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.35);
}

.card-product-color .product-insight li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--wh-text);
}

.card-product-color .product-insight li:last-child {
  margin-bottom: 0;
}

.card-product-color .product-insight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pc-accent);
}

.card-product-color .product-link {
  color: var(--pc-deep);
  font-weight: 700;
}

.card-product-color .product-link:hover {
  color: var(--pc-accent);
}

.product-card--compliance {
  --pc-accent: #6366f1;
  --pc-accent-end: #4f46e5;
  --pc-soft: #eef2ff;
  --pc-deep: #4338ca;
}

.product-card--dspm {
  --pc-accent: #0891b2;
  --pc-accent-end: #0e7490;
  --pc-soft: #ecfeff;
  --pc-deep: #0e7490;
}

.product-card--consent {
  --pc-accent: #059669;
  --pc-accent-end: #047857;
  --pc-soft: #ecfdf5;
  --pc-deep: #047857;
}

.product-card--itsm {
  --pc-accent: #7c3aed;
  --pc-accent-end: #6d28d9;
  --pc-soft: #f5f3ff;
  --pc-deep: #6d28d9;
}

.product-card--dpdp {
  --pc-accent: #ea580c;
  --pc-accent-end: #c2410c;
  --pc-soft: #fff7ed;
  --pc-deep: #c2410c;
}

.product-card--iregu {
  --pc-accent: #0369a1;
  --pc-accent-end: #0284c7;
  --pc-soft: #f0f9ff;
  --pc-deep: #075985;
}

.icon-round {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: var(--wh-blue-50);
  color: var(--wh-blue-600);
}

.section-light {
  background: var(--wh-surface);
}

.section-white {
  background: #fff;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--wh-blue-900);
}

/* Product page hero */
.hero-product {
  background: linear-gradient(160deg, var(--wh-blue-900) 0%, var(--wh-blue-700) 55%, var(--wh-blue-600) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

.hero-product--compliance {
  background: linear-gradient(148deg, #0a0f1f 0%, #0f172a 28%, #1e3a8a 62%, #2563eb 100%);
}

.hero-product--compliance::after {
  background: radial-gradient(ellipse 88% 58% at 90% 10%, rgba(147, 197, 253, 0.32), transparent 58%);
}

/* ComplianceForesight product page — GRC governance hero */
.grc-hero-governance {
  isolation: isolate;
}

.grc-hero-governance__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(99, 102, 241, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(251, 191, 36, 0.08) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 2.4rem 2.4rem, 2.4rem 2.4rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, transparent 94%);
  pointer-events: none;
}

.grc-hero-governance__glow {
  position: absolute;
  width: min(46vw, 26rem);
  height: min(46vw, 26rem);
  right: -6%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.24) 0%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.grc-hero-governance__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.grc-hero-governance__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fbbf24;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
}

.grc-hero-governance__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.grc-hero-governance__title {
  letter-spacing: -0.03em;
}

.grc-hero-governance__tagline {
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.grc-hero-governance__lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-product--compliance .grc-hero-framework-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.35);
}

.hero-product--compliance .grc-hero-framework-pill--more {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

.grc-hero-governance__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 44rem;
}

.grc-hero-governance__flow-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.grc-hero-governance__flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.45rem;
  background: rgba(99, 102, 241, 0.28);
  color: #c4b5fd;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.grc-hero-governance__flow-text {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.grc-hero-governance__flow-text strong {
  font-weight: 800;
  color: #fff;
}

.grc-hero-governance__flow-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.grc-hero-governance__audience {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.grc-hero-governance__console {
  max-width: 30rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .grc-hero-governance__console {
    margin-inline: 0 0 auto;
  }
}

.grc-hero-governance__console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-inline: 0.15rem;
}

.grc-hero-governance__pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0e7ff;
}

.grc-hero-governance__pulse span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.55);
  animation: grc-hero-pulse 2s ease-out infinite;
}

@keyframes grc-hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(129, 140, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
  }
}

.grc-hero-governance__console-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.grc-hero-governance__diagram {
  position: relative;
  min-height: 16rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(10, 15, 31, 0.94) 0%, rgba(30, 58, 138, 0.88) 100%);
  border: 1px solid rgba(129, 140, 248, 0.28);
  box-shadow:
    0 28px 70px -32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.grc-hero-governance__diagram-glow {
  position: absolute;
  inset: 20% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32) 0%, transparent 68%);
  animation: grc-hero-hub-spin 28s linear infinite;
  pointer-events: none;
}

@keyframes grc-hero-hub-spin {
  to {
    transform: rotate(360deg);
  }
}

.grc-hero-governance__hub {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e3a8a, #4f46e5);
  border: 2px solid rgba(196, 181, 253, 0.5);
  box-shadow: 0 0 0 10px rgba(99, 102, 241, 0.14), 0 18px 40px -16px rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 0.5rem;
}

.grc-hero-governance__hub-icon {
  font-size: 1.35rem;
  color: #eef2ff;
  line-height: 1;
}

.grc-hero-governance__hub-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.grc-hero-governance__hub-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, 0.78);
}

.grc-hero-governance__pillar {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 5.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.64rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.grc-hero-governance__pillar i {
  font-size: 1.05rem;
  color: #fbbf24;
}

.grc-hero-governance__pillar em {
  font-style: normal;
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.grc-hero-governance__pillar--gov {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.grc-hero-governance__pillar--risk {
  bottom: 14%;
  left: 10%;
}

.grc-hero-governance__pillar--comp {
  bottom: 14%;
  right: 10%;
}

.grc-hero-governance__trace {
  position: absolute;
  z-index: 3;
  padding: 0.18rem 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.grc-hero-governance__trace--policy {
  top: 36%;
  left: 22%;
  color: #fef3c7;
  background: rgba(217, 119, 6, 0.35);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.grc-hero-governance__trace--control {
  top: 28%;
  right: 20%;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.32);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.grc-hero-governance__trace--evidence {
  bottom: 38%;
  left: 42%;
  color: #d1fae5;
  background: rgba(5, 150, 105, 0.32);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.grc-hero-governance__panel {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.4);
}

.grc-hero-governance__finding {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.grc-hero-governance__finding:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.grc-hero-governance__finding-badge {
  align-self: start;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.42rem;
  border-radius: 0.3rem;
}

.grc-hero-governance__finding-badge--crit {
  color: #991b1b;
  background: #fee2e2;
}

.grc-hero-governance__finding-badge--high {
  color: #b45309;
  background: #fef3c7;
}

.grc-hero-governance__finding-badge--board {
  color: #3730a3;
  background: #e0e7ff;
}

.grc-hero-governance__finding-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.grc-hero-governance__finding-meta {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.grc-hero-governance__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.grc-hero-governance__stat {
  padding: 0.7rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.grc-hero-governance__stat-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.grc-hero-governance__stat-lbl {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.grc-hero-governance__stat--meter {
  padding-bottom: 0.55rem;
}

.grc-hero-governance__meter {
  display: block;
  height: 0.28rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.grc-hero-governance__meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6366f1, #a78bfa);
}

@media (max-width: 575.98px) {
  .grc-hero-governance__flow-arrow {
    display: none;
  }

  .grc-hero-governance__flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .grc-hero-governance__diagram {
    min-height: 14.5rem;
  }

  .grc-hero-governance__pillar {
    min-width: 4.5rem;
    font-size: 0.58rem;
    padding: 0.45rem 0.5rem;
  }

  .grc-hero-governance__pillar--risk {
    left: 6%;
  }

  .grc-hero-governance__pillar--comp {
    right: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grc-hero-governance__pulse span,
  .grc-hero-governance__diagram-glow {
    animation: none;
  }
}

.hero-product--dspm {
  background: linear-gradient(148deg, #021a1f 0%, #042f2e 32%, #0f766e 68%, #14b8a6 100%);
}

.hero-product--dspm::after {
  background: radial-gradient(ellipse 88% 58% at 90% 10%, rgba(45, 212, 191, 0.28), transparent 58%);
}

/* DSPM product page — data posture hero */
.dspm-hero-posture {
  isolation: isolate;
}

.dspm-hero-posture__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(45, 212, 191, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 2.2rem 2.2rem, 2.2rem 2.2rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 94%);
  pointer-events: none;
}

.dspm-hero-posture__glow {
  position: absolute;
  width: min(44vw, 24rem);
  height: min(44vw, 24rem);
  left: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, transparent 68%);
  filter: blur(3px);
  pointer-events: none;
}

.dspm-hero-posture__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dspm-hero-posture__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #5eead4;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
}

.dspm-hero-posture__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #99f6e4;
}

.dspm-hero-posture__title {
  letter-spacing: -0.03em;
}

.dspm-hero-posture__tagline {
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.dspm-hero-posture__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 36rem;
}

.dspm-hero-posture__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 42rem;
}

.dspm-hero-posture__flow-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dspm-hero-posture__flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.45rem;
  background: rgba(20, 184, 166, 0.24);
  color: #99f6e4;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.dspm-hero-posture__flow-text {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.dspm-hero-posture__flow-text strong {
  font-weight: 800;
  color: #fff;
}

.dspm-hero-posture__flow-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.dspm-hero-posture__audience {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.dspm-hero-posture__console {
  max-width: 30rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .dspm-hero-posture__console {
    margin-inline: 0 0 auto;
  }
}

.dspm-hero-posture__console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-inline: 0.15rem;
}

.dspm-hero-posture__scan {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccfbf1;
}

.dspm-hero-posture__scan span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55);
  animation: dspm-hero-scan-pulse 2s ease-out infinite;
}

@keyframes dspm-hero-scan-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(34, 211, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }
}

.dspm-hero-posture__console-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.dspm-hero-posture__diagram {
  position: relative;
  min-height: 15.5rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(2, 26, 31, 0.92) 0%, rgba(4, 47, 46, 0.88) 100%);
  border: 1px solid rgba(153, 246, 228, 0.2);
  box-shadow:
    0 28px 70px -32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.dspm-hero-posture__diagram-glow {
  position: absolute;
  inset: 18% 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35) 0%, transparent 68%);
  animation: dspm-hero-hub-spin 24s linear infinite;
  pointer-events: none;
}

@keyframes dspm-hero-hub-spin {
  to {
    transform: rotate(360deg);
  }
}

.dspm-hero-posture__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  border: 2px solid rgba(204, 251, 241, 0.45);
  box-shadow: 0 0 0 10px rgba(20, 184, 166, 0.12), 0 18px 40px -16px rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 0.5rem;
}

.dspm-hero-posture__hub-icon {
  font-size: 1.35rem;
  color: #ecfeff;
  line-height: 1;
}

.dspm-hero-posture__hub-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.dspm-hero-posture__hub-sub {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(236, 254, 255, 0.78);
}

.dspm-hero-posture__node {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 4.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.dspm-hero-posture__node i {
  font-size: 1rem;
  color: #5eead4;
}

.dspm-hero-posture__node--cloud {
  top: 10%;
  left: 10%;
}

.dspm-hero-posture__node--saas {
  top: 10%;
  right: 10%;
}

.dspm-hero-posture__node--endpoint {
  bottom: 12%;
  left: 12%;
}

.dspm-hero-posture__node--db {
  bottom: 12%;
  right: 12%;
}

.dspm-hero-posture__sensitivity {
  position: absolute;
  z-index: 3;
  padding: 0.18rem 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dspm-hero-posture__sensitivity--pii {
  top: 38%;
  left: 28%;
  color: #fef3c7;
  background: rgba(217, 119, 6, 0.35);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.dspm-hero-posture__sensitivity--pci {
  top: 22%;
  left: 46%;
  color: #fee2e2;
  background: rgba(220, 38, 38, 0.32);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.dspm-hero-posture__sensitivity--phi {
  bottom: 30%;
  right: 24%;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.32);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.dspm-hero-posture__panel {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.4);
}

.dspm-hero-posture__finding {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.dspm-hero-posture__finding:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dspm-hero-posture__finding-badge {
  align-self: start;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.42rem;
  border-radius: 0.3rem;
}

.dspm-hero-posture__finding-badge--high {
  color: #b91c1c;
  background: #fee2e2;
}

.dspm-hero-posture__finding-badge--med {
  color: #b45309;
  background: #fef3c7;
}

.dspm-hero-posture__finding-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.dspm-hero-posture__finding-meta {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.dspm-hero-posture__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.dspm-hero-posture__stat {
  padding: 0.7rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.dspm-hero-posture__stat-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.dspm-hero-posture__stat-lbl {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  margin-top: 0.2rem;
}

@media (max-width: 575.98px) {
  .dspm-hero-posture__flow-arrow {
    display: none;
  }

  .dspm-hero-posture__flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .dspm-hero-posture__diagram {
    min-height: 14rem;
  }

  .dspm-hero-posture__node {
    min-width: 3.8rem;
    font-size: 0.56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dspm-hero-posture__scan span,
  .dspm-hero-posture__diagram-glow {
    animation: none;
  }
}

.hero-product--iconsento {
  background: linear-gradient(148deg, #1a0a2e 0%, #1e1b4b 28%, #5b21b6 62%, #7c3aed 100%);
}

.hero-product--iconsento::after {
  background: radial-gradient(ellipse 88% 58% at 90% 10%, rgba(216, 180, 254, 0.28), transparent 58%);
}

/* iConsentO product page — consent & DPDP hero */
.ico-hero-consent {
  isolation: isolate;
}

.ico-hero-consent__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(244, 114, 182, 0.08) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 2.3rem 2.3rem, 2.3rem 2.3rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, transparent 94%);
  pointer-events: none;
}

.ico-hero-consent__glow {
  position: absolute;
  width: min(44vw, 25rem);
  height: min(44vw, 25rem);
  right: -6%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.24) 0%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.ico-hero-consent__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ico-hero-consent__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e9d5ff;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
}

.ico-hero-consent__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e9d5ff;
}

.ico-hero-consent__title {
  letter-spacing: -0.03em;
}

.ico-hero-consent__tagline {
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.ico-hero-consent__lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-product--iconsento .ico-hero-consent-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.35);
}

.hero-product--iconsento .ico-hero-consent-pill--more {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

.ico-hero-consent__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 44rem;
}

.ico-hero-consent__flow-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ico-hero-consent__flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.45rem;
  background: rgba(124, 58, 237, 0.28);
  color: #e9d5ff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ico-hero-consent__flow-text {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.ico-hero-consent__flow-text strong {
  font-weight: 800;
  color: #fff;
}

.ico-hero-consent__flow-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.ico-hero-consent__audience {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.ico-hero-consent__console {
  max-width: 30rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .ico-hero-consent__console {
    margin-inline: 0 0 auto;
  }
}

.ico-hero-consent__console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-inline: 0.15rem;
}

.ico-hero-consent__pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f3e8ff;
}

.ico-hero-consent__pulse span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 0 0 rgba(192, 132, 252, 0.55);
  animation: ico-hero-pulse 2s ease-out infinite;
}

@keyframes ico-hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 132, 252, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(192, 132, 252, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 132, 252, 0);
  }
}

.ico-hero-consent__console-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.ico-hero-consent__diagram {
  position: relative;
  min-height: 16rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(26, 10, 46, 0.94) 0%, rgba(91, 33, 182, 0.88) 100%);
  border: 1px solid rgba(192, 132, 252, 0.28);
  box-shadow:
    0 28px 70px -32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ico-hero-consent__diagram-glow {
  position: absolute;
  inset: 20% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.32) 0%, transparent 68%);
  animation: ico-hero-hub-spin 28s linear infinite;
  pointer-events: none;
}

@keyframes ico-hero-hub-spin {
  to {
    transform: rotate(360deg);
  }
}

.ico-hero-consent__hub {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #5b21b6, #7c3aed);
  border: 2px solid rgba(233, 213, 255, 0.5);
  box-shadow: 0 0 0 10px rgba(124, 58, 237, 0.14), 0 18px 40px -16px rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 0.5rem;
}

.ico-hero-consent__hub-icon {
  font-size: 1.35rem;
  color: #faf5ff;
  line-height: 1;
}

.ico-hero-consent__hub-label {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.ico-hero-consent__hub-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 245, 255, 0.78);
}

.ico-hero-consent__actor {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 5.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.64rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.ico-hero-consent__actor i {
  font-size: 1.05rem;
  color: #e9d5ff;
}

.ico-hero-consent__actor em {
  font-style: normal;
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.ico-hero-consent__actor--subject {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.ico-hero-consent__actor--web {
  bottom: 14%;
  left: 10%;
}

.ico-hero-consent__actor--stake {
  bottom: 14%;
  right: 10%;
}

.ico-hero-consent__trace {
  position: absolute;
  z-index: 3;
  padding: 0.18rem 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ico-hero-consent__trace--notice {
  top: 34%;
  left: 20%;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.32);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.ico-hero-consent__trace--consent {
  top: 26%;
  right: 18%;
  color: #d1fae5;
  background: rgba(5, 150, 105, 0.32);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.ico-hero-consent__trace--receipt {
  bottom: 36%;
  left: 42%;
  color: #fef3c7;
  background: rgba(217, 119, 6, 0.32);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.ico-hero-consent__panel {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.4);
}

.ico-hero-consent__finding {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.ico-hero-consent__finding:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ico-hero-consent__finding-badge {
  align-self: start;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.42rem;
  border-radius: 0.3rem;
}

.ico-hero-consent__finding-badge--dpdp {
  color: #5b21b6;
  background: #f3e8ff;
}

.ico-hero-consent__finding-badge--high {
  color: #b45309;
  background: #fef3c7;
}

.ico-hero-consent__finding-badge--withdraw {
  color: #0f766e;
  background: #ccfbf1;
}

.ico-hero-consent__finding-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.ico-hero-consent__finding-meta {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.ico-hero-consent__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.ico-hero-consent__stat {
  padding: 0.7rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.ico-hero-consent__stat-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.ico-hero-consent__stat-lbl {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.ico-hero-consent__stat--meter {
  padding-bottom: 0.55rem;
}

.ico-hero-consent__meter {
  display: block;
  height: 0.28rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.ico-hero-consent__meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #c084fc);
}

@media (max-width: 575.98px) {
  .ico-hero-consent__flow-arrow {
    display: none;
  }

  .ico-hero-consent__flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .ico-hero-consent__diagram {
    min-height: 14.5rem;
  }

  .ico-hero-consent__actor {
    min-width: 4.5rem;
    font-size: 0.58rem;
    padding: 0.45rem 0.5rem;
  }

  .ico-hero-consent__actor--web {
    left: 6%;
  }

  .ico-hero-consent__actor--stake {
    right: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ico-hero-consent__pulse span,
  .ico-hero-consent__diagram-glow {
    animation: none;
  }
}

.hero-product--itsm {
  background: linear-gradient(155deg, #0c4a6e 0%, #0369a1 45%, #0ea5e9 100%);
}

.hero-product--itsm::after {
  background: radial-gradient(ellipse 85% 55% at 92% 8%, rgba(125, 211, 252, 0.35), transparent 58%);
}

.hero-product--onedpdp {
  background: linear-gradient(148deg, #0f0a2e 0%, #1e1b4b 30%, #3730a3 68%, #6366f1 100%);
}

.hero-product--onedpdp::after {
  background: radial-gradient(ellipse 88% 58% at 12% 88%, rgba(251, 191, 36, 0.16), transparent 55%);
}

/* OneDPDP product page — DPDP privacy hero */
.dpdp-hero-privacy {
  isolation: isolate;
}

.dpdp-hero-privacy__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 32%, rgba(99, 102, 241, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(251, 191, 36, 0.07) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 2.3rem 2.3rem, 2.3rem 2.3rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, transparent 94%);
  pointer-events: none;
}

.dpdp-hero-privacy__glow {
  position: absolute;
  width: min(44vw, 25rem);
  height: min(44vw, 25rem);
  left: -8%;
  bottom: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.dpdp-hero-privacy__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dpdp-hero-privacy__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fbbf24;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
}

.dpdp-hero-privacy__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7d2fe;
}

.dpdp-hero-privacy__title {
  letter-spacing: -0.03em;
}

.dpdp-hero-privacy__tagline {
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.dpdp-hero-privacy__lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-product--onedpdp .dpdp-hero-module-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e1b4b;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.35);
}

.hero-product--onedpdp .dpdp-hero-module-pill--more {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

.dpdp-hero-privacy__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 44rem;
}

.dpdp-hero-privacy__flow-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dpdp-hero-privacy__flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.45rem;
  background: rgba(99, 102, 241, 0.28);
  color: #c7d2fe;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.dpdp-hero-privacy__flow-text {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.dpdp-hero-privacy__flow-text strong {
  font-weight: 800;
  color: #fff;
}

.dpdp-hero-privacy__flow-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.dpdp-hero-privacy__audience {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.dpdp-hero-privacy__console {
  max-width: 30rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .dpdp-hero-privacy__console {
    margin-inline: 0 0 auto;
  }
}

.dpdp-hero-privacy__console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-inline: 0.15rem;
}

.dpdp-hero-privacy__pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0e7ff;
}

.dpdp-hero-privacy__pulse span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #a5b4fc;
  box-shadow: 0 0 0 0 rgba(165, 180, 252, 0.55);
  animation: dpdp-hero-pulse 2s ease-out infinite;
}

@keyframes dpdp-hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(165, 180, 252, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(165, 180, 252, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(165, 180, 252, 0);
  }
}

.dpdp-hero-privacy__console-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.dpdp-hero-privacy__diagram {
  position: relative;
  min-height: 16rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(15, 10, 46, 0.94) 0%, rgba(55, 48, 163, 0.88) 100%);
  border: 1px solid rgba(165, 180, 252, 0.28);
  box-shadow:
    0 28px 70px -32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.dpdp-hero-privacy__diagram-glow {
  position: absolute;
  inset: 20% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32) 0%, transparent 68%);
  animation: dpdp-hero-hub-spin 28s linear infinite;
  pointer-events: none;
}

@keyframes dpdp-hero-hub-spin {
  to {
    transform: rotate(360deg);
  }
}

.dpdp-hero-privacy__hub {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #3730a3, #6366f1);
  border: 2px solid rgba(199, 210, 254, 0.5);
  box-shadow: 0 0 0 10px rgba(99, 102, 241, 0.14), 0 18px 40px -16px rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 0.5rem;
}

.dpdp-hero-privacy__hub-icon {
  font-size: 1.35rem;
  color: #eef2ff;
  line-height: 1;
}

.dpdp-hero-privacy__hub-label {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.dpdp-hero-privacy__hub-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, 0.78);
}

.dpdp-hero-privacy__actor {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 5.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.64rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.dpdp-hero-privacy__actor i {
  font-size: 1.05rem;
  color: #fbbf24;
}

.dpdp-hero-privacy__actor em {
  font-style: normal;
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.dpdp-hero-privacy__actor--principal {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.dpdp-hero-privacy__actor--fiduciary {
  bottom: 14%;
  left: 10%;
}

.dpdp-hero-privacy__actor--processor {
  bottom: 14%;
  right: 10%;
}

.dpdp-hero-privacy__trace {
  position: absolute;
  z-index: 3;
  padding: 0.18rem 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dpdp-hero-privacy__trace--notice {
  top: 34%;
  left: 20%;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.32);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.dpdp-hero-privacy__trace--consent {
  top: 26%;
  right: 18%;
  color: #d1fae5;
  background: rgba(5, 150, 105, 0.32);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.dpdp-hero-privacy__trace--evidence {
  bottom: 36%;
  left: 42%;
  color: #fef3c7;
  background: rgba(217, 119, 6, 0.32);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.dpdp-hero-privacy__panel {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.4);
}

.dpdp-hero-privacy__finding {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.dpdp-hero-privacy__finding:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dpdp-hero-privacy__finding-badge {
  align-self: start;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.42rem;
  border-radius: 0.3rem;
}

.dpdp-hero-privacy__finding-badge--dsar {
  color: #3730a3;
  background: #e0e7ff;
}

.dpdp-hero-privacy__finding-badge--high {
  color: #b45309;
  background: #fef3c7;
}

.dpdp-hero-privacy__finding-badge--tprm {
  color: #0f766e;
  background: #ccfbf1;
}

.dpdp-hero-privacy__finding-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.dpdp-hero-privacy__finding-meta {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.dpdp-hero-privacy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.dpdp-hero-privacy__stat {
  padding: 0.7rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.dpdp-hero-privacy__stat-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.dpdp-hero-privacy__stat-lbl {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.dpdp-hero-privacy__stat--meter {
  padding-bottom: 0.55rem;
}

.dpdp-hero-privacy__meter {
  display: block;
  height: 0.28rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.dpdp-hero-privacy__meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6366f1, #a78bfa);
}

@media (max-width: 575.98px) {
  .dpdp-hero-privacy__flow-arrow {
    display: none;
  }

  .dpdp-hero-privacy__flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .dpdp-hero-privacy__diagram {
    min-height: 14.5rem;
  }

  .dpdp-hero-privacy__actor {
    min-width: 4.5rem;
    font-size: 0.58rem;
    padding: 0.45rem 0.5rem;
  }

  .dpdp-hero-privacy__actor--fiduciary {
    left: 6%;
  }

  .dpdp-hero-privacy__actor--processor {
    right: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dpdp-hero-privacy__pulse span,
  .dpdp-hero-privacy__diagram-glow {
    animation: none;
  }
}

.hero-product--iregu {
  background: linear-gradient(148deg, #0c1222 0%, #0f2f3a 38%, #134e4a 72%, #0d9488 100%);
}

.hero-product--iregu::after {
  background: radial-gradient(ellipse 90% 60% at 88% 12%, rgba(94, 234, 212, 0.22), transparent 58%);
}

/* iRegu product page — regulatory hero */
.iregu-hero-regulatory {
  isolation: isolate;
}

.iregu-hero-regulatory__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 92%);
  pointer-events: none;
}

.iregu-hero-regulatory__glow {
  position: absolute;
  width: min(42vw, 22rem);
  height: min(42vw, 22rem);
  right: -4%;
  bottom: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35) 0%, transparent 68%);
  filter: blur(2px);
  pointer-events: none;
}

.iregu-hero-regulatory__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.iregu-hero-regulatory__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #99f6e4;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
}

.iregu-hero-regulatory__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #99f6e4;
}

.iregu-hero-regulatory__title {
  letter-spacing: -0.03em;
}

.iregu-hero-regulatory__tagline {
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.iregu-hero-regulatory__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 36rem;
}

.iregu-hero-regulatory__regulators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
}

.iregu-hero-regulatory__regulators-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  width: 100%;
}

@media (min-width: 576px) {
  .iregu-hero-regulatory__regulators-label {
    width: auto;
    margin-right: 0.25rem;
  }
}

.iregu-hero-regulatory__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(153, 246, 228, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.iregu-hero-regulatory__chip i {
  font-size: 0.82rem;
  color: #5eead4;
}

.iregu-hero-regulatory__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 40rem;
}

.iregu-hero-regulatory__flow-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.iregu-hero-regulatory__flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.45rem;
  background: rgba(20, 184, 166, 0.22);
  color: #99f6e4;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.iregu-hero-regulatory__flow-text {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.iregu-hero-regulatory__flow-text strong {
  font-weight: 800;
  color: #fff;
}

.iregu-hero-regulatory__flow-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.iregu-hero-regulatory__audience {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.02em;
}

.iregu-hero-regulatory__console {
  max-width: 28rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .iregu-hero-regulatory__console {
    margin-inline: 0 0 auto;
  }
}

.iregu-hero-regulatory__console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-inline: 0.15rem;
}

.iregu-hero-regulatory__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccfbf1;
}

.iregu-hero-regulatory__live span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: iregu-hero-pulse 2s ease-out infinite;
}

@keyframes iregu-hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.iregu-hero-regulatory__console-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.iregu-hero-regulatory__console .lp-iregu-mock {
  box-shadow:
    0 28px 70px -28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.iregu-hero-regulatory__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.iregu-hero-regulatory__stat {
  padding: 0.75rem 0.65rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.iregu-hero-regulatory__stat-val {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.iregu-hero-regulatory__stat-val--sm {
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.iregu-hero-regulatory__stat-lbl {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.iregu-hero-regulatory__stat--meter {
  grid-column: span 1;
}

.iregu-hero-regulatory__meter {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-block: 0.35rem;
}

.iregu-hero-regulatory__meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, #5eead4);
}

@media (max-width: 575.98px) {
  .iregu-hero-regulatory__flow-arrow {
    display: none;
  }

  .iregu-hero-regulatory__flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

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

  .iregu-hero-regulatory__stat--meter {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iregu-hero-regulatory__live span {
    animation: none;
  }
}

/* iRegu product page — regional coverage cards */
.iregu-regional-coverage {
  background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 55%, #f8fafc 100%);
  border-block: 1px solid rgba(13, 148, 136, 0.1);
}

.iregu-regional-card {
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 48px -28px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.iregu-regional-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px -26px rgba(15, 23, 42, 0.22);
}

.iregu-regional-card--india {
  border-top: 3px solid #ea580c;
}

.iregu-regional-card--me {
  border-top: 3px solid #2563eb;
}

.iregu-regional-card--apac {
  border-top: 3px solid #0d9488;
}

.iregu-regional-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.iregu-regional-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.iregu-regional-card--india .iregu-regional-card__icon {
  background: linear-gradient(145deg, #ea580c, #c2410c);
}

.iregu-regional-card--me .iregu-regional-card__icon {
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
}

.iregu-regional-card--apac .iregu-regional-card__icon {
  background: linear-gradient(145deg, #0f766e, #14b8a6);
}

.iregu-regional-card__title {
  letter-spacing: -0.02em;
  color: var(--wh-blue-900);
}

.iregu-regional-card__subtitle {
  color: var(--wh-muted);
}

.iregu-regional-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.iregu-regional-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #134e4a;
  background: #f0fdfa;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 999px;
}

.iregu-regional-card__chip i {
  font-size: 0.82rem;
  color: #0d9488;
}

.iregu-regional-card--india .iregu-regional-card__chip {
  color: #9a3412;
  background: #fff7ed;
  border-color: rgba(234, 88, 12, 0.2);
}

.iregu-regional-card--india .iregu-regional-card__chip i {
  color: #ea580c;
}

.iregu-regional-card--me .iregu-regional-card__chip {
  color: #1e3a8a;
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.2);
}

.iregu-regional-card--me .iregu-regional-card__chip i {
  color: #2563eb;
}

@media (prefers-reduced-motion: reduce) {
  .iregu-regional-card:hover {
    transform: none;
  }
}

.hero-product-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 22rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .hero-product-visual {
    margin-inline: 0 0 auto;
    align-items: flex-end;
  }
}

.hero-product-image-ring {
  width: min(100%, 17.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.hero-product-image-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-product .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-product--dspm .dspm-hero-compliance-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #042f2e;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.35);
}

.hero-product--dspm .dspm-hero-compliance-pill--more {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

/* DSPM Data Foresight — product page detail sections */
.dspm-page-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
}

/* DataForesight.ai — external brand link (dataforesight.ai) */
.df-site-link {
  font-weight: inherit;
}

.df-site-link--hero {
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding-bottom: 0.05em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-product--dspm .df-site-link--hero:hover,
.lp-hero-marketing .df-site-link--hero:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.58);
}

.df-site-link--inline {
  color: var(--wh-blue-600);
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.35);
  text-underline-offset: 3px;
}

.df-site-link--inline:hover {
  color: var(--wh-blue-500);
}

.df-site-link--on-dark {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(153, 246, 228, 0.45);
  text-underline-offset: 3px;
}

.dspm-section-video .df-site-link--on-dark:hover {
  color: #ecfeff;
  text-decoration-color: rgba(153, 246, 228, 0.75);
}

.product-card--dspm .df-site-link--card {
  position: relative;
  z-index: 2;
  color: var(--pc-deep);
  text-decoration: underline;
  text-decoration-color: rgba(8, 145, 178, 0.4);
  text-underline-offset: 3px;
}

.product-card--dspm .df-site-link--card:hover {
  color: var(--pc-accent);
  text-decoration-color: currentColor;
}

.df-site-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

.dspm-cap-card .dspm-cap-card__tag {
  letter-spacing: 0.02em;
}

/* PII & sensitive data types — Data Foresight (dspm-data-foresight.html) */
.dspm-section-pii {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #ecfdf5 0%, #f0fdfa 22%, #f8fafc 55%, #eef2ff 100%);
}

.dspm-section-pii::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 30%, rgba(37, 99, 235, 0.08), transparent 50%),
    radial-gradient(ellipse 45% 40% at 50% 95%, rgba(99, 102, 241, 0.07), transparent 48%);
  pointer-events: none;
}

.dspm-section-pii::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}

.dspm-section-pii .container {
  position: relative;
  z-index: 1;
}

.dspm-section-pii .section-title {
  color: var(--wh-blue-900);
}

.dspm-pii-board {
  max-width: 72rem;
  margin-inline: auto;
  padding: 1.75rem 1.35rem 1.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 28px 64px -32px rgba(13, 148, 136, 0.22),
    0 0 0 1px rgba(13, 148, 136, 0.1);
}

@media (min-width: 768px) {
  .dspm-pii-board {
    padding: 2rem 2rem 1.65rem;
  }
}

.dspm-pii-cluster {
  position: relative;
  height: 100%;
  padding: 1.4rem 1.25rem 1.35rem;
  border-radius: 1.1rem;
  background: linear-gradient(175deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 14px 36px -22px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.dspm-pii-cluster::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 0 0 6px 6px;
  opacity: 0.98;
}

.dspm-pii-cluster--identity::before {
  background: linear-gradient(90deg, #0d9488, #14b8a6, #5eead4);
  box-shadow: 0 4px 14px -4px rgba(13, 148, 136, 0.5);
}

.dspm-pii-cluster--financial::before {
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
  box-shadow: 0 4px 14px -4px rgba(37, 99, 235, 0.45);
}

.dspm-pii-cluster--secrets::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc);
  box-shadow: 0 4px 14px -4px rgba(124, 58, 237, 0.42);
}

.dspm-pii-cluster:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 22px 48px -26px rgba(13, 148, 136, 0.28);
}

.dspm-pii-cluster--financial:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 22px 48px -26px rgba(37, 99, 235, 0.22);
}

.dspm-pii-cluster--secrets:hover {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 22px 48px -26px rgba(124, 58, 237, 0.22);
}

.dspm-pii-cluster__head {
  margin-bottom: 1.1rem;
}

.dspm-pii-cluster__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.75rem;
  border-radius: 0.9rem;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.55);
}

.dspm-pii-cluster--financial .dspm-pii-cluster__icon {
  background: linear-gradient(145deg, #1d4ed8, #3b82f6);
  box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.5);
}

.dspm-pii-cluster--secrets .dspm-pii-cluster__icon {
  background: linear-gradient(145deg, #6d28d9, #a855f7);
  box-shadow: 0 8px 20px -8px rgba(124, 58, 237, 0.48);
}

.dspm-pii-cluster__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--wh-blue-900);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.dspm-pii-cluster__hint {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--wh-muted);
  margin-bottom: 0;
}

.dspm-pii-cluster__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
}

.dspm-pii-cluster__chips li {
  display: inline-block;
}

.dspm-pii-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dspm-pii-chip:hover {
  transform: translateY(-1px);
}

.dspm-pii-chip--id {
  color: #0f766e;
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 4px 12px -6px rgba(13, 148, 136, 0.35);
}

.dspm-pii-chip--fin {
  color: #1e40af;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 4px 12px -6px rgba(37, 99, 235, 0.3);
}

.dspm-pii-chip--secret {
  color: #5b21b6;
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 4px 12px -6px rgba(124, 58, 237, 0.32);
}

.dspm-pii-chip--custom {
  color: var(--wh-blue-800);
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px dashed rgba(37, 99, 235, 0.35);
  box-shadow: 0 6px 18px -10px rgba(15, 23, 42, 0.15);
}

.dspm-pii-chip--muted {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.1);
  color: var(--wh-muted);
}

.dspm-pii-board__footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.dspm-pii-board__footer-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-muted);
}

.dspm-pii-board__footer-note {
  max-width: 32rem;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .dspm-pii-cluster,
  .dspm-pii-chip {
    transition: none;
  }

  .dspm-pii-cluster:hover,
  .dspm-pii-chip:hover {
    transform: none;
  }
}

/* Coverage — data estate (DSPM) */
.dspm-section-where {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, #f8fafc 0%, #f1f5f9 40%, #ecfeff 100%);
}

.dspm-section-where::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 48% at 12% 25%, rgba(13, 148, 136, 0.1), transparent 54%),
    radial-gradient(ellipse 50% 42% at 88% 70%, rgba(37, 99, 235, 0.07), transparent 50%);
  pointer-events: none;
}

.dspm-section-where .container {
  position: relative;
  z-index: 1;
}

.dspm-section-where .section-title {
  color: var(--wh-blue-900);
}

.dspm-where-board {
  max-width: 72rem;
  margin-inline: auto;
  padding: 1.5rem 1.25rem 1.4rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 22px 56px -30px rgba(13, 148, 136, 0.18);
}

@media (min-width: 768px) {
  .dspm-where-board {
    padding: 1.85rem 1.75rem 1.75rem;
  }
}

.dspm-where-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  min-height: 7.5rem;
  padding: 1.1rem 0.65rem;
  border-radius: 1.05rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 28px -16px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dspm-where-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 18px 44px -22px rgba(13, 148, 136, 0.28);
}

.dspm-where-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.55);
}

.dspm-where-tile--2 .dspm-where-tile__icon {
  background: linear-gradient(145deg, #2563eb, #3b82f6);
  box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.45);
}

.dspm-where-tile--3 .dspm-where-tile__icon {
  background: linear-gradient(145deg, #0e7490, #06b6d4);
  box-shadow: 0 8px 20px -8px rgba(14, 116, 144, 0.45);
}

.dspm-where-tile--4 .dspm-where-tile__icon {
  background: linear-gradient(145deg, #7c3aed, #a855f7);
  box-shadow: 0 8px 20px -8px rgba(124, 58, 237, 0.42);
}

.dspm-where-tile--5 .dspm-where-tile__icon {
  background: linear-gradient(145deg, #059669, #10b981);
  box-shadow: 0 8px 20px -8px rgba(5, 150, 105, 0.45);
}

.dspm-where-tile--6 .dspm-where-tile__icon {
  background: linear-gradient(145deg, #c2410c, #ea580c);
  box-shadow: 0 8px 20px -8px rgba(234, 88, 12, 0.42);
}

.dspm-where-tile__label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--wh-blue-900);
}

/* Formats & pipelines (DSPM) */
.dspm-section-files {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.dspm-section-files .container {
  position: relative;
  z-index: 1;
}

.dspm-files-card {
  padding: 1.65rem 1.5rem 1.6rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 20px 50px -28px rgba(15, 23, 42, 0.14);
}

.dspm-files-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.dspm-files-card__mark {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(145deg, #2563eb, #6366f1);
  box-shadow: 0 10px 24px -10px rgba(37, 99, 235, 0.45);
}

.dspm-files-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
  margin-bottom: 0;
  line-height: 1.2;
}

.dspm-files-card__lead {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.dspm-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--wh-text);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
}

.dspm-checklist__item:last-child {
  margin-bottom: 0;
}

.dspm-checklist__check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  box-shadow: 0 4px 10px -4px rgba(13, 148, 136, 0.5);
}

.dspm-pipeline-panel {
  position: relative;
  overflow: hidden;
  padding: 1.65rem 1.5rem 1.6rem;
  border-radius: 1.2rem;
  background: linear-gradient(155deg, #ecfdf5 0%, #f0fdfa 38%, #ffffff 100%);
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 56px -28px rgba(13, 148, 136, 0.28);
}

.dspm-pipeline-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(13, 148, 136, 0.12), transparent 65%);
  pointer-events: none;
}

.dspm-pipeline-panel__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dspm-pipeline-panel__mark {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  box-shadow: 0 10px 24px -10px rgba(13, 148, 136, 0.5);
}

.dspm-pipeline-panel__title {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
  margin-bottom: 0;
  line-height: 1.2;
}

.dspm-pipeline-panel__lead {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.dspm-pipeline-steps {
  position: relative;
  z-index: 1;
}

.dspm-pipeline-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--wh-muted);
  border-bottom: 1px dashed rgba(13, 148, 136, 0.2);
}

.dspm-pipeline-steps__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dspm-pipeline-steps__dot {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  box-shadow: 0 4px 12px -4px rgba(13, 148, 136, 0.45);
}

/* Workflow integrations (DSPM) */
.dspm-section-integrations {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #f0fdfa 0%, #ecfeff 35%, #f8fafc 100%);
}

.dspm-section-integrations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(13, 148, 136, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 95% 85%, rgba(37, 99, 235, 0.08), transparent 48%);
  pointer-events: none;
}

.dspm-section-integrations .container {
  position: relative;
  z-index: 1;
}

.dspm-section-integrations .section-title {
  color: var(--wh-blue-900);
}

.dspm-integ-board {
  max-width: 72rem;
  margin-inline: auto;
}

.dspm-integ-card {
  position: relative;
  height: 100%;
  padding: 1.65rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 40px -22px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.dspm-integ-card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  opacity: 0.95;
}

.dspm-integ-card--1::before {
  background: linear-gradient(90deg, #0052cc, #2684ff);
}

.dspm-integ-card--2::before {
  background: linear-gradient(90deg, #62d84e, #81b5a1);
}

.dspm-integ-card--3::before {
  background: linear-gradient(90deg, #2563eb, #6366f1);
}

.dspm-integ-card--4::before {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.dspm-integ-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 26px 52px -26px rgba(13, 148, 136, 0.3);
}

.dspm-integ-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.85rem;
  border-radius: 1.05rem;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  box-shadow: 0 12px 28px -14px rgba(13, 148, 136, 0.45);
}

.dspm-integ-card--1 .dspm-integ-card__icon-wrap {
  background: linear-gradient(145deg, #0052cc, #2684ff);
  box-shadow: 0 12px 28px -14px rgba(0, 82, 204, 0.4);
}

.dspm-integ-card--2 .dspm-integ-card__icon-wrap {
  background: linear-gradient(145deg, #047857, #34d399);
  box-shadow: 0 12px 28px -14px rgba(4, 120, 87, 0.38);
}

.dspm-integ-card--3 .dspm-integ-card__icon-wrap {
  background: linear-gradient(145deg, #1d4ed8, #6366f1);
  box-shadow: 0 12px 28px -14px rgba(37, 99, 235, 0.42);
}

.dspm-integ-card--4 .dspm-integ-card__icon-wrap {
  background: linear-gradient(145deg, #0f766e, #2dd4bf);
  box-shadow: 0 12px 28px -14px rgba(15, 118, 110, 0.4);
}

.dspm-integ-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--wh-blue-900);
  line-height: 1.25;
}

.dspm-integ-card__hint {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--wh-muted);
}

.dspm-integ-card__link {
  color: inherit;
  text-decoration: none;
}

.dspm-integ-card__link:hover {
  color: var(--wh-blue-600);
}

.dspm-integ-card__link:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.5);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.dspm-ai-card {
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 10px 32px -16px rgba(15, 23, 42, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.dspm-ai-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 18px 44px -20px rgba(37, 99, 235, 0.18);
}

.dspm-ai-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #0f766e);
  box-shadow: 0 8px 22px -10px rgba(13, 148, 136, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .dspm-where-tile,
  .dspm-integ-card,
  .dspm-ai-card--platform {
    transition: none;
  }

  .dspm-where-tile:hover,
  .dspm-integ-card:hover,
  .dspm-ai-card--platform:hover {
    transform: none;
  }
}

.video-wrap {
  border-radius: var(--wh-radius);
  overflow: hidden;
  box-shadow: var(--wh-shadow);
  background: #0f172a;
}

.video-wrap iframe {
  display: block;
}

/* DSPM — platform intelligence (AI assistant / identity / executive) */
.dspm-section-platform-ai {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #ecfdf5 0%, #f0fdfa 18%, #f8fafc 55%, #eef2ff 100%);
}

.dspm-section-platform-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 48% at 12% 12%, rgba(13, 148, 136, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 92% 18%, rgba(6, 182, 212, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 42% at 70% 95%, rgba(99, 102, 241, 0.08), transparent 48%);
  pointer-events: none;
}

.dspm-section-platform-ai::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.45;
  pointer-events: none;
}

.dspm-section-platform-ai .container {
  position: relative;
  z-index: 1;
}

.dspm-platform-ai-board {
  padding: 1.75rem 1.35rem 2rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 28px 72px -36px rgba(13, 148, 136, 0.28),
    0 0 0 1px rgba(13, 148, 136, 0.08);
}

@media (min-width: 768px) {
  .dspm-platform-ai-board {
    padding: 2.35rem 2.15rem 2.5rem;
  }
}

@media (min-width: 1200px) {
  .dspm-platform-ai-board {
    padding: 2.65rem 2.75rem 2.85rem;
  }
}

.dspm-platform-ai-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.14), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(13, 148, 136, 0.28);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px -14px rgba(13, 148, 136, 0.45);
}

@media (min-width: 992px) {
  .dspm-platform-ai-eyebrow {
    justify-content: flex-start;
  }
}

.dspm-platform-ai__title {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--wh-blue-900);
}

.dspm-platform-ai__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--wh-muted);
  max-width: 38rem;
}

@media (min-width: 992px) {
  .dspm-platform-ai__lead {
    margin-left: 0;
    margin-right: auto;
  }
}

.dspm-ai-card--platform {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.14);
  box-shadow:
    0 12px 36px -22px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.dspm-ai-card--platform::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #0d9488, #14b8a6, #06b6d4);
}

.dspm-ai-card--platform:hover {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow:
    0 18px 48px -24px rgba(13, 148, 136, 0.22),
    0 0 0 1px rgba(255, 255, 255, 1) inset;
  transform: translateY(-2px);
}

/* Case studies — product pages */
.section-case-studies {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef2ff 0%, #f1f5f9 32%, #f8fafc 68%, #ecfeff 100%);
}

.section-case-studies::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 50% at 50% -12%, rgba(37, 99, 235, 0.14), transparent 58%),
    radial-gradient(ellipse 60% 48% at 100% 35%, rgba(6, 182, 212, 0.11), transparent 52%),
    radial-gradient(ellipse 55% 42% at 0% 78%, rgba(99, 102, 241, 0.12), transparent 50%);
  pointer-events: none;
}

.section-case-studies::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2) 72%, transparent 100%);
  pointer-events: none;
}

.case-studies-header {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.case-studies-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
  margin-bottom: 0.5rem;
}

.case-studies-header__title {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--wh-blue-900);
  margin-bottom: 0.65rem;
}

.case-studies-header__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--wh-muted);
  margin-bottom: 0;
}

.case-studies-grid {
  position: relative;
  z-index: 1;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.2rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 18px 46px -26px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(148, 163, 184, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.case-card::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -25%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.07), transparent 68%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.case-card:hover::after {
  opacity: 1;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 32px 64px -28px rgba(37, 99, 235, 0.28),
    0 0 0 1px rgba(37, 99, 235, 0.08);
}

.case-card__accent {
  flex-shrink: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6, #60a5fa);
  box-shadow: 0 4px 16px -4px rgba(37, 99, 235, 0.45);
}

.case-studies-grid > div:nth-child(2) .case-card__accent {
  background: linear-gradient(90deg, #0e7490, #14b8a6, #5eead4);
  box-shadow: 0 4px 16px -4px rgba(13, 148, 136, 0.4);
}

.case-studies-grid > div:nth-child(3) .case-card__accent {
  background: linear-gradient(90deg, #4338ca, #6366f1, #a5b4fc);
  box-shadow: 0 4px 16px -4px rgba(79, 70, 229, 0.38);
}

.case-card__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.4rem 1.35rem;
  min-height: 0;
}

@media (min-width: 768px) {
  .case-card__inner {
    padding: 1.65rem 1.6rem 1.5rem;
  }
}

.case-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.85rem;
  margin-bottom: 1rem;
}

.case-card__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--wh-blue-600);
  background: linear-gradient(145deg, #eff6ff, #fff);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 20px -10px rgba(37, 99, 235, 0.45);
  flex-shrink: 0;
}

.case-studies-grid > div:nth-child(2) .case-card__icon-wrap {
  color: #0f766e;
  background: linear-gradient(145deg, #ecfdf5, #fff);
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 20px -10px rgba(13, 148, 136, 0.4);
}

.case-studies-grid > div:nth-child(3) .case-card__icon-wrap {
  color: #4f46e5;
  background: linear-gradient(145deg, #eef2ff, #fff);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 20px -10px rgba(79, 70, 229, 0.35);
}

.case-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wh-blue-800);
  background: rgba(37, 99, 235, 0.1);
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  line-height: 1.25;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.case-studies-grid > div:nth-child(2) .case-card__badge {
  color: #115e59;
  background: rgba(13, 148, 136, 0.12);
  border-color: rgba(13, 148, 136, 0.15);
}

.case-studies-grid > div:nth-child(3) .case-card__badge {
  color: #3730a3;
  background: rgba(79, 70, 229, 0.11);
  border-color: rgba(79, 70, 229, 0.14);
}

.case-card__title {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.32;
  color: var(--wh-blue-900);
  margin-bottom: 0.6rem;
}

.case-card__excerpt {
  flex: 1 1 auto;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--wh-muted);
  margin-bottom: 0;
}

.case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  width: 100%;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wh-blue-600);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.case-card__cta:hover {
  color: var(--wh-blue-500);
  gap: 0.6rem;
}

.case-card__cta .bi {
  font-size: 0.88em;
  transition: transform 0.2s ease;
}

.case-card:hover .case-card__cta .bi {
  transform: translate(3px, -3px);
}

.case-card__cta:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

/* Rich case cards (e.g. dspm-data-foresight.html) — icon bullet lists */
.case-card--rich .case-card__inner {
  padding-bottom: 1.5rem;
}

.case-card__icon-wrap--lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.1rem;
  font-size: 1.45rem;
}

.case-card__highlights {
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.case-card__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--wh-muted);
}

.case-card__highlight-icon {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.06rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--wh-blue-600);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.case-studies-grid > div:nth-child(2) .case-card__highlight-icon {
  color: #0f766e;
  background: rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.16);
}

.case-studies-grid > div:nth-child(3) .case-card__highlight-icon {
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.09);
  border-color: rgba(79, 70, 229, 0.14);
}

.case-card__inline-link {
  color: var(--wh-blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.case-card__inline-link:hover {
  color: var(--wh-blue-500);
}

.section-case-studies--dspm .case-studies-header__eyebrow {
  color: #0369a1;
}

/* iConsentO — case studies strip (products/iconsento.html) */
.section-case-studies--iconsento {
  background: linear-gradient(165deg, #faf5ff 0%, #eef2ff 28%, #f8fafc 62%, #f5f3ff 100%);
}

.section-case-studies--iconsento::before {
  background:
    radial-gradient(ellipse 82% 52% at 50% -10%, rgba(124, 58, 237, 0.16), transparent 58%),
    radial-gradient(ellipse 58% 46% at 100% 32%, rgba(99, 102, 241, 0.12), transparent 52%),
    radial-gradient(ellipse 52% 44% at 0% 76%, rgba(167, 139, 250, 0.14), transparent 50%);
}

.section-case-studies--iconsento .case-studies-header__eyebrow {
  color: #6d28d9;
}

/* iConsentO case study detail pages — hero accents on violet gradient */
.hero-product--iconsento.case-study-hero .case-study-hero-kpi__icon {
  background: rgba(124, 58, 237, 0.42);
}

.hero-product--iconsento.case-study-hero .case-study-hero-panel__title {
  color: rgba(216, 180, 254, 0.92);
}

.hero-product--iconsento.case-study-hero .case-study-hero__eyebrow {
  color: rgba(196, 181, 253, 0.95);
}

.footer-wh {
  background: var(--wh-blue-900);
  color: rgba(255, 255, 255, 0.85);
}

.footer-wh a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-wh a:hover {
  color: #fff;
}

.footer-wh .footer-social-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.footer-wh .footer-social {
  gap: 0.4rem;
}

.navbar-wh .nav-social-btn.nav-social-blog,
.footer-wh .footer-social .nav-social-btn.nav-social-blog {
  color: var(--wh-blue-600);
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(37, 99, 235, 0.35);
}

.navbar-wh .nav-social-btn.nav-social-blog:hover,
.navbar-wh .nav-social-btn.nav-social-blog:focus-visible,
.footer-wh .footer-social .nav-social-btn.nav-social-blog:hover,
.footer-wh .footer-social .nav-social-btn.nav-social-blog:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, var(--wh-blue-500) 0%, var(--wh-blue-800) 100%);
  border-color: var(--wh-blue-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(37, 99, 235, 0.5);
}

/* Global clients / regional cards */
.location-card {
  border-radius: var(--wh-radius);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #fff;
  height: 100%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-card:hover {
  box-shadow: var(--wh-shadow-sm);
  border-color: rgba(37, 99, 235, 0.22);
}

.location-pin {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wh-blue-50);
  color: var(--wh-blue-600);
  font-size: 1.2rem;
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wh-blue-50);
  color: var(--wh-blue-600);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Contact section — home */
.section-contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 35%, #f0fdf4 70%, #f8fafc 100%);
}

.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 88% 25%, rgba(6, 182, 212, 0.1), transparent 50%),
    radial-gradient(ellipse 55% 40% at 40% 95%, rgba(16, 185, 129, 0.08), transparent 48%);
  pointer-events: none;
}

.section-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  pointer-events: none;
}

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

.section-contact-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.contact-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wh-blue-800);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 4px 14px -6px rgba(15, 23, 42, 0.1);
}

.contact-meta-chip i {
  font-size: 1rem;
  color: var(--wh-blue-500);
}

.contact-tile {
  --tile-accent-a: #2563eb;
  --tile-accent-b: #4f46e5;
  position: relative;
  height: 100%;
  border-radius: 1.15rem;
  padding: 1.5rem 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px -18px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -20px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.2);
}

.contact-tile::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--tile-accent-a), var(--tile-accent-b));
  opacity: 0.95;
}

.contact-tile--email {
  --tile-accent-a: #2563eb;
  --tile-accent-b: #6366f1;
}

.contact-tile--solutions {
  --tile-accent-a: #7c3aed;
  --tile-accent-b: #db2777;
}

.contact-tile__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -12px rgba(15, 23, 42, 0.45);
}

.contact-tile--email .contact-tile__icon {
  background: linear-gradient(145deg, #2563eb, #4f46e5);
}

.contact-tile--solutions .contact-tile__icon {
  background: linear-gradient(145deg, #7c3aed, #db2777);
}

.contact-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--wh-blue-600);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.15s ease, gap 0.15s ease;
}

.contact-tile__link:hover,
.contact-tile__link:focus-visible {
  color: var(--wh-blue-500);
}

.contact-tile__link i {
  font-size: 0.95rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.contact-tile__link:hover i,
.contact-tile__link:focus-visible i {
  transform: translate(2px, -2px);
}

.contact-tile__note {
  font-size: 0.78rem;
  color: var(--wh-muted);
  margin-top: 0.65rem;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.contact-tile__note i {
  margin-top: 0.1rem;
  flex-shrink: 0;
  color: var(--wh-blue-400);
}

.contact-cta-panel {
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--wh-blue-50) 55%, #ecfdf5 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 16px 48px -20px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-cta-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.08), transparent 65%);
  pointer-events: none;
}

.contact-cta-panel .row {
  position: relative;
  z-index: 1;
}

.contact-cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(145deg, var(--wh-blue-500), var(--wh-blue-700));
  box-shadow: 0 12px 28px -10px rgba(37, 99, 235, 0.55);
}

@media (min-width: 992px) {
  .contact-cta-icon {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-tile,
  .contact-tile__link i,
  .grc-cap-card,
  .grc-int-card,
  .grc-deploy-card,
  .case-card {
    transition: none;
  }

  .contact-tile:hover,
  .grc-cap-card:hover,
  .grc-int-card:hover,
  .grc-deploy-card:hover,
  .case-card:hover {
    transform: none;
  }

  .case-card::after {
    transition: none;
  }

  .case-card:hover::after {
    opacity: 0;
  }
}

/* ComplianceForesight GRC — modules, integrations, deployment (products/compliance-foresight.html) */
.grc-cap-card {
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.grc-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -18px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.18);
}

.grc-cap-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.9rem;
  box-shadow: 0 10px 22px -12px rgba(15, 23, 42, 0.4);
}

.grc-cap-card--a .grc-cap-card__icon {
  background: linear-gradient(145deg, #2563eb, #4f46e5);
}

.grc-cap-card--b .grc-cap-card__icon {
  background: linear-gradient(145deg, #0891b2, #2563eb);
}

.grc-cap-card--c .grc-cap-card__icon {
  background: linear-gradient(145deg, #059669, #0d9488);
}

.grc-cap-card--d .grc-cap-card__icon {
  background: linear-gradient(145deg, #7c3aed, #db2777);
}

.grc-cap-card h3 {
  color: var(--wh-blue-900);
}

/* ComplianceForesight — Management View (executive insights band) */
.section-grc-management {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 42%, #312e81 78%, #1e1b4b 100%);
  color: #fff;
}

.section-grc-management__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 20%, rgba(99, 102, 241, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 10%, rgba(56, 189, 248, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 95%, rgba(251, 191, 36, 0.12), transparent 48%);
  pointer-events: none;
}

.section-grc-management__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.section-grc-management .container {
  z-index: 1;
}

.section-grc-management__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.95);
}

.section-grc-management__title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 28px rgba(99, 102, 241, 0.45);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .section-grc-management__title {
    background: linear-gradient(120deg, #ffffff 0%, #e0e7ff 40%, #fde68a 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
  }
}

.section-grc-management__lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  margin-inline: auto;
}

.grc-mgmt-card {
  position: relative;
  border-radius: 1.2rem;
  padding: 1.5rem 1.35rem 1.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.55);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.grc-mgmt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.45);
  box-shadow: 0 28px 60px -24px rgba(79, 70, 229, 0.45);
}

.grc-mgmt-card__glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 1.2rem 1.2rem 0 0;
  background: linear-gradient(90deg, #6366f1, #38bdf8, #fbbf24);
  opacity: 0.9;
}

.grc-mgmt-card__icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.5);
}

.grc-mgmt-card__icon--board {
  background: linear-gradient(145deg, #6366f1, #4f46e5);
}

.grc-mgmt-card__icon--overview {
  background: linear-gradient(145deg, #0ea5e9, #2563eb);
}

.grc-mgmt-card__icon--summary {
  background: linear-gradient(145deg, #14b8a6, #059669);
}

.grc-mgmt-card__icon--frameworks {
  background: linear-gradient(145deg, #a855f7, #db2777);
}

.grc-mgmt-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.grc-mgmt-card__text {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.btn-grc-mgmt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  color: #1e3a8a;
  background: linear-gradient(180deg, #fff 0%, #e0e7ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  box-shadow: 0 12px 36px -16px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-grc-mgmt-cta:hover,
.btn-grc-mgmt-cta:focus-visible {
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -14px rgba(99, 102, 241, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .grc-mgmt-card:hover,
  .btn-grc-mgmt-cta:hover,
  .btn-grc-mgmt-cta:focus-visible {
    transform: none;
  }
}

/* Integrations band — ComplianceForesight */
.section-grc-integrations {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #f0f9ff 0%, #f8fafc 28%, #eef2ff 58%, #f8fafc 100%);
}

.section-grc-integrations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 45% at 12% 18%, rgba(37, 99, 235, 0.11), transparent 52%),
    radial-gradient(ellipse 55% 40% at 88% 12%, rgba(99, 102, 241, 0.1), transparent 48%),
    radial-gradient(ellipse 50% 38% at 70% 88%, rgba(13, 148, 136, 0.09), transparent 50%);
  pointer-events: none;
}

.section-grc-integrations::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.4;
  pointer-events: none;
}

.section-grc-integrations .container {
  position: relative;
  z-index: 1;
}

.section-grc-integrations__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.grc-int-group-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wh-blue-700);
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 4px 16px -8px rgba(15, 23, 42, 0.12);
}

.grc-int-group-label i {
  font-size: 1rem;
  color: var(--wh-blue-500);
}

.grc-int-card {
  --int-accent-a: #2563eb;
  --int-accent-b: #6366f1;
  position: relative;
  height: 100%;
  padding: 1.5rem 1.35rem 1.45rem;
  border-radius: 1.15rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 36px -18px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.grc-int-card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--int-accent-a), var(--int-accent-b));
  opacity: 0.95;
}

.grc-int-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px -22px rgba(37, 99, 235, 0.28), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.2);
}

.grc-int-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(15, 23, 42, 0.45);
  background: linear-gradient(145deg, var(--int-accent-a), var(--int-accent-b));
}

.grc-int-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wh-blue-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.grc-int-card__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--wh-muted);
  margin-bottom: 0;
}

.grc-int-card--siem {
  --int-accent-a: #1d4ed8;
  --int-accent-b: #6366f1;
}

.grc-int-card--dspm {
  --int-accent-a: #0e7490;
  --int-accent-b: #2563eb;
}

.grc-int-card--itsm {
  --int-accent-a: #0369a1;
  --int-accent-b: #0ea5e9;
}

.grc-int-card--vm {
  --int-accent-a: #b45309;
  --int-accent-b: #ea580c;
}

.grc-int-card--appsec {
  --int-accent-a: #6d28d9;
  --int-accent-b: #db2777;
}

.grc-int-card--ldap {
  --int-accent-a: #1e40af;
  --int-accent-b: #4338ca;
}

.grc-int-card--email {
  --int-accent-a: #0f766e;
  --int-accent-b: #059669;
}

.grc-int-card--cloud {
  --int-accent-a: #0284c7;
  --int-accent-b: #06b6d4;
}

/* Deployment modes — ComplianceForesight */
.section-grc-deployment {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, #f8fafc 0%, #f1f5f9 35%, #eef2ff 70%, #f8fafc 100%);
}

.section-grc-deployment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 20% 15%, rgba(37, 99, 235, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(13, 148, 136, 0.08), transparent 50%);
  pointer-events: none;
}

.section-grc-deployment .container {
  position: relative;
  z-index: 1;
}

.section-grc-deployment__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.grc-deploy-card {
  --deploy-accent-a: #1e40af;
  --deploy-accent-b: #2563eb;
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  padding: 1.75rem 1.6rem 1.65rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 16px 48px -24px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.grc-deploy-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deploy-accent-a), var(--deploy-accent-b));
  opacity: 0.98;
}

.grc-deploy-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px -28px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.22);
}

.grc-deploy-card--onprem {
  --deploy-accent-a: #1e3a8a;
  --deploy-accent-b: #3b82f6;
}

.grc-deploy-card--saas {
  --deploy-accent-a: #0f766e;
  --deploy-accent-b: #2dd4bf;
}

.grc-deploy-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-blue-700);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.grc-deploy-card__tag--accent {
  color: #0f766e;
  background: rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.22);
}

.grc-deploy-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.grc-deploy-card__icon {
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 1.05rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(145deg, var(--deploy-accent-a), var(--deploy-accent-b));
  box-shadow: 0 12px 28px -12px rgba(15, 23, 42, 0.4);
}

.grc-deploy-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
  margin-bottom: 0.25rem;
}

.grc-deploy-card__subtitle {
  font-size: 0.9rem;
  color: var(--wh-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

.grc-deploy-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.grc-deploy-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--wh-muted);
}

.grc-deploy-card__list li + li {
  margin-top: 0.75rem;
}

.grc-deploy-card__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  background: linear-gradient(145deg, var(--deploy-accent-a), var(--deploy-accent-b));
}

.grc-deploy-card--saas .grc-deploy-card__check {
  background: linear-gradient(145deg, #0d9488, #14b8a6);
}

/* Product video — ComplianceForesight */
.section-grc-video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 42%, #0f172a 100%);
}

.section-grc-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(37, 99, 235, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(20, 184, 166, 0.12), transparent 50%);
  pointer-events: none;
}

.section-grc-video .container {
  position: relative;
  z-index: 1;
}

.section-grc-video__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.95);
}

.section-grc-video .section-title {
  color: #fff;
}

.section-grc-video .lead {
  color: rgba(226, 232, 240, 0.92) !important;
}

.grc-video-shell {
  position: relative;
  padding: 3px;
  border-radius: 1.35rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(99, 102, 241, 0.85), rgba(20, 184, 166, 0.75));
  box-shadow:
    0 28px 64px -24px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.grc-video-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.grc-video-shell__inner {
  border-radius: calc(1.35rem - 3px);
  overflow: hidden;
  background: #020617;
}

.video-wrap--grc {
  border-radius: calc(1.35rem - 3px);
  overflow: hidden;
  box-shadow: none;
  background: #020617;
}

.video-wrap--grc iframe {
  border: 0;
}

.grc-video-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.85);
}

.grc-video-meta i {
  color: rgba(147, 197, 253, 0.95);
  font-size: 1.05rem;
}

.grc-video-sep {
  color: rgba(148, 163, 184, 0.55);
}

/* Product video — DSPM Data Foresight */
.dspm-section-video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(185deg, #042f2e 0%, #0f172a 38%, #134e4a 100%);
}

.dspm-section-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 60% at 50% -15%, rgba(20, 184, 166, 0.35), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 85%, rgba(6, 182, 212, 0.14), transparent 52%),
    radial-gradient(ellipse 45% 40% at 0% 60%, rgba(45, 212, 191, 0.1), transparent 48%);
  pointer-events: none;
}

.dspm-section-video .container {
  position: relative;
  z-index: 1;
}

.dspm-section-video__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(153, 246, 228, 0.95);
}

.dspm-section-video .section-title {
  color: #fff;
}

.dspm-section-video__lead {
  color: rgba(226, 232, 240, 0.92) !important;
}

.dspm-section-video__code {
  font-size: 0.88em;
  padding: 0.15rem 0.4rem;
  border-radius: 0.35rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: #99f6e4;
}

.dspm-video-shell {
  position: relative;
  padding: 3px;
  border-radius: 1.35rem;
  background: linear-gradient(
    135deg,
    rgba(13, 148, 136, 0.95),
    rgba(20, 184, 166, 0.88),
    rgba(6, 182, 212, 0.82)
  );
  box-shadow:
    0 28px 64px -24px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.dspm-video-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.dspm-video-shell__inner {
  border-radius: calc(1.35rem - 3px);
  overflow: hidden;
  background: #020617;
}

.video-wrap--dspm {
  border-radius: calc(1.35rem - 3px);
  overflow: hidden;
  box-shadow: none;
  background: #020617;
}

.video-wrap--dspm iframe {
  border: 0;
}

.dspm-video-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.88);
}

.dspm-video-meta i {
  color: rgba(153, 246, 228, 0.95);
  font-size: 1.05rem;
}

.dspm-video-sep {
  color: rgba(148, 163, 184, 0.5);
}

.dspm-video-btn-yt {
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  border: none;
  box-shadow: 0 10px 28px -12px rgba(20, 184, 166, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.dspm-video-btn-yt:hover {
  color: #fff !important;
  filter: brightness(1.06);
  box-shadow: 0 14px 32px -10px rgba(45, 212, 191, 0.55);
  transform: translateY(-1px);
}

.dspm-video-btn-yt:focus-visible {
  outline: 2px solid rgba(153, 246, 228, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .dspm-video-btn-yt {
    transition: none;
  }

  .dspm-video-btn-yt:hover {
    transform: none;
  }
}

/* Product video — ITSM Platform */
.itsm-section-video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(188deg, #0c4a6e 0%, #082f49 44%, #0e7490 100%);
}

.itsm-section-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 92% 58% at 50% -12%, rgba(56, 189, 248, 0.34), transparent 56%),
    radial-gradient(ellipse 52% 46% at 100% 88%, rgba(14, 165, 233, 0.16), transparent 52%),
    radial-gradient(ellipse 48% 42% at 0% 62%, rgba(125, 211, 252, 0.11), transparent 48%);
  pointer-events: none;
}

.itsm-section-video .container {
  position: relative;
  z-index: 1;
}

.itsm-section-video__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.96);
}

.itsm-section-video__title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.12;
}

.itsm-section-video__lead {
  color: rgba(226, 232, 240, 0.92) !important;
}

.itsm-section-video__code {
  font-size: 0.88em;
  padding: 0.15rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #7dd3fc;
}

.itsm-video-shell {
  position: relative;
  padding: 3px;
  border-radius: 1.35rem;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.95),
    rgba(14, 165, 233, 0.9),
    rgba(6, 182, 212, 0.85)
  );
  box-shadow:
    0 28px 64px -24px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.itsm-video-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.itsm-video-shell__inner {
  border-radius: calc(1.35rem - 3px);
  overflow: hidden;
  background: #020617;
}

.video-wrap--itsm {
  border-radius: calc(1.35rem - 3px);
  overflow: hidden;
  box-shadow: none;
  background: #020617;
}

.video-wrap--itsm iframe {
  border: 0;
}

.itsm-video-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.88);
}

.itsm-video-meta i {
  color: rgba(125, 211, 252, 0.96);
  font-size: 1.05rem;
}

.itsm-video-sep {
  color: rgba(148, 163, 184, 0.5);
}

.itsm-video-btn-yt {
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(145deg, #0284c7, #0ea5e9);
  border: none;
  box-shadow: 0 10px 28px -12px rgba(14, 165, 233, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.itsm-video-btn-yt:hover {
  color: #fff !important;
  filter: brightness(1.06);
  box-shadow: 0 14px 32px -10px rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
}

.itsm-video-btn-yt:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .itsm-video-btn-yt {
    transition: none;
  }

  .itsm-video-btn-yt:hover {
    transform: none;
  }
}

/* Homepage — blog showcase */
.section-blog-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f8fafc 0%, #ffffff 42%, #eff6ff 100%);
}

.blog-showcase-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(37, 99, 235, 0.08), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 75%, rgba(99, 102, 241, 0.07), transparent 50%);
  pointer-events: none;
}

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

.blog-showcase-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.blog-showcase-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.blog-showcase-lead {
  max-width: 38rem;
}

.btn-blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-weight: 700;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--wh-blue-600) 0%, #4f46e5 100%);
  border: none;
  box-shadow: 0 10px 28px -10px rgba(37, 99, 235, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-blog-cta:hover,
.btn-blog-cta:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(79, 70, 229, 0.45);
}

.blog-feature-card {
  position: relative;
  height: 100%;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 44px -22px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px -24px rgba(37, 99, 235, 0.22);
}

.blog-feature-card__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  opacity: 0.95;
}

.blog-feature-card--grc .blog-feature-card__accent {
  background: linear-gradient(90deg, #6366f1, #4f46e5);
}

.blog-feature-card--dspm .blog-feature-card__accent {
  background: linear-gradient(90deg, #0891b2, #0e7490);
}

.blog-feature-card--privacy .blog-feature-card__accent {
  background: linear-gradient(90deg, #059669, #047857);
}

.blog-feature-card__inner {
  padding: 1.5rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-feature-card__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.blog-feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.blog-feature-card--grc .blog-feature-card__icon {
  background: linear-gradient(145deg, #6366f1, #4f46e5);
  box-shadow: 0 8px 20px -8px rgba(79, 70, 229, 0.55);
}

.blog-feature-card--dspm .blog-feature-card__icon {
  background: linear-gradient(145deg, #0891b2, #0e7490);
  box-shadow: 0 8px 20px -8px rgba(14, 116, 144, 0.45);
}

.blog-feature-card--privacy .blog-feature-card__icon {
  background: linear-gradient(145deg, #059669, #047857);
  box-shadow: 0 8px 20px -8px rgba(4, 120, 87, 0.45);
}

.blog-feature-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

.blog-feature-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--wh-blue-900);
  margin-bottom: 0.65rem;
}

.blog-feature-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}

.blog-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wh-blue-600);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.15s ease, gap 0.15s ease;
}

.blog-feature-card__link:hover,
.blog-feature-card__link:focus-visible {
  color: var(--wh-blue-500);
}

.blog-feature-card__link i {
  transition: transform 0.2s ease;
}

.blog-feature-card:hover .blog-feature-card__link i {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .blog-feature-card:hover {
    transform: none;
  }

  .blog-feature-card:hover .blog-feature-card__link i {
    transform: none;
  }

  .btn-blog-cta:hover,
  .btn-blog-cta:focus-visible {
    transform: none;
  }
}

/* Homepage — journey / YouTube */
.section-journey-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f1f5f9 0%, #e8eef5 38%, #f8fafc 100%);
}

.journey-showcase-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -15%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(220, 38, 38, 0.06), transparent 45%);
  pointer-events: none;
}

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

.journey-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-blue-700);
  box-shadow: 0 6px 20px -10px rgba(37, 99, 235, 0.35);
}

.journey-showcase-badge i {
  font-size: 1.1rem;
  color: var(--wh-blue-600);
}

.journey-showcase-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.journey-showcase-lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.journey-showcase-panel {
  position: relative;
  padding: 1rem 1rem 0;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.98) 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow:
    0 24px 60px -28px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.journey-showcase-panel__corners {
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.15rem;
  pointer-events: none;
  border: 1px solid rgba(37, 99, 235, 0.08);
  opacity: 0.85;
}

.journey-showcase-video {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.45);
  background: #0f172a;
}

.journey-showcase-video iframe {
  border: 0;
}

.journey-showcase-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  justify-content: space-between;
  padding: 1.35rem 1.25rem 1.5rem;
}

@media (max-width: 575.98px) {
  .journey-showcase-actions__copy {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .journey-showcase-actions__btns {
    justify-content: center;
    width: 100%;
  }
}

@media (min-width: 576px) {
  .journey-showcase-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.journey-showcase-actions__copy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.journey-showcase-actions__yt {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(145deg, #dc2626, #b91c1c);
  box-shadow: 0 8px 20px -8px rgba(220, 38, 38, 0.55);
}

.journey-showcase-actions__text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--wh-muted);
  padding-top: 0.15rem;
}

.journey-showcase-actions__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

@media (min-width: 576px) {
  .journey-showcase-actions__btns {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.btn-journey-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  color: var(--wh-blue-700);
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-journey-outline:hover,
.btn-journey-outline:focus-visible {
  color: var(--wh-blue-600);
  background: var(--wh-blue-50);
  border-color: rgba(37, 99, 235, 0.35);
}

.btn-journey-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.15rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  border: none;
  background: linear-gradient(135deg, var(--wh-blue-600), var(--wh-blue-800));
  box-shadow: 0 8px 22px -10px rgba(37, 99, 235, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-journey-primary:hover,
.btn-journey-primary:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(37, 99, 235, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .btn-journey-primary:hover,
  .btn-journey-primary:focus-visible {
    transform: none;
  }
}

.media-showcase-card {
  border-radius: var(--wh-radius);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #fff;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--wh-shadow);
}

/* Value pillars — rich gradient band (home “Why”, product highlights, media grid) */
.section-pillars {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    #f8fafc 0%,
    #eef2ff 18%,
    #e0f2fe 42%,
    #ecfdf5 68%,
    #f8fafc 100%
  );
}

.section-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% 20%, rgba(99, 102, 241, 0.14), transparent 52%),
    radial-gradient(ellipse 70% 50% at 90% 15%, rgba(6, 182, 212, 0.12), transparent 48%),
    radial-gradient(ellipse 55% 45% at 75% 85%, rgba(16, 185, 129, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(37, 99, 235, 0.08), transparent 45%);
  pointer-events: none;
}

.section-pillars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  pointer-events: none;
}

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

.section-pillars-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
  margin-bottom: 0;
}

.section-pillars-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
  line-height: 1.15;
}

.section-pillars-lead {
  font-size: 1.1rem;
  line-height: 1.65;
}

.section-pillars--compact::after {
  opacity: 0.32;
}

.section-pillars--media::before {
  opacity: 1;
}

.section-pillars--news::before {
  opacity: 1;
}

.news-showcase-card {
  border-radius: var(--wh-radius);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #fff;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--wh-shadow);
}

.section-pillars .news-showcase-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px -16px rgba(15, 23, 42, 0.12);
}

.section-pillars .news-showcase-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 20px 48px -14px rgba(37, 99, 235, 0.18);
}

.section-pillars .media-showcase-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px -16px rgba(15, 23, 42, 0.12);
}

.section-pillars .media-showcase-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 20px 48px -14px rgba(37, 99, 235, 0.18);
}

.pillar-card {
  position: relative;
  border-radius: 1.15rem;
  padding: 1.65rem 1.5rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.18);
}

.pillar-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.35);
}

.pillar-card--accent-a .pillar-card__icon {
  background: linear-gradient(145deg, #2563eb, #4f46e5);
}

.pillar-card--accent-b .pillar-card__icon {
  background: linear-gradient(145deg, #0891b2, #6366f1);
}

.pillar-card--accent-c .pillar-card__icon {
  background: linear-gradient(145deg, #059669, #0d9488);
}

.pillar-card--accent-d .pillar-card__icon {
  background: linear-gradient(145deg, #7c3aed, #2563eb);
}

.pillar-card--accent-e .pillar-card__icon {
  background: linear-gradient(145deg, #ea580c, #dc2626);
}

.pillar-card h2,
.pillar-card h3 {
  color: var(--wh-blue-900);
}

@media (min-width: 768px) {
  .pillar-card {
    padding: 1.85rem 1.65rem;
  }
}

/* ITSM product page — capability sections */
#capabilities,
#asset-discovery,
#compliance-tracking,
#service-management,
#sbom-software,
#software-inventory,
#workflows,
#ai-recommendations,
#demo {
  scroll-margin-top: 5.5rem;
}

.itsm-jump {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 249, 255, 0.96) 100%);
  border-bottom: 1px solid rgba(3, 105, 161, 0.12);
}

.itsm-jump__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.itsm-jump__inner::-webkit-scrollbar {
  height: 4px;
}

.itsm-jump__inner::-webkit-scrollbar-thumb {
  background: rgba(3, 105, 161, 0.25);
  border-radius: 4px;
}

.itsm-jump__link {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: var(--wh-blue-800);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(3, 105, 161, 0.15);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.itsm-jump__link:hover,
.itsm-jump__link:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  border-color: transparent;
}

.itsm-section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0369a1;
  margin-bottom: 0.35rem;
}

.itsm-section-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.itsm-discovery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .itsm-discovery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.itsm-discovery-card {
  position: relative;
  border-radius: 1.15rem;
  padding: 1.75rem 1.6rem;
  height: 100%;
  background: linear-gradient(165deg, #fff 0%, #f0f9ff 100%);
  border: 1px solid rgba(3, 105, 161, 0.14);
  box-shadow: 0 10px 36px -18px rgba(12, 74, 110, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.itsm-discovery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -16px rgba(3, 105, 161, 0.28);
}

.itsm-discovery-card--agent {
  border-top: 4px solid #0369a1;
}

.itsm-discovery-card--agentless {
  border-top: 4px solid #0ea5e9;
}

.itsm-discovery-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px -8px rgba(12, 74, 110, 0.45);
}

.itsm-discovery-card--agent .itsm-discovery-card__icon {
  background: linear-gradient(145deg, #0369a1, #0284c7);
}

.itsm-discovery-card--agentless .itsm-discovery-card__icon {
  background: linear-gradient(145deg, #0ea5e9, #38bdf8);
}

.itsm-discovery-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.itsm-discovery-card__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--wh-muted, #64748b);
  line-height: 1.5;
}

.itsm-discovery-card__list li:last-child {
  margin-bottom: 0;
}

.itsm-discovery-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.itsm-compliance-board {
  border-radius: 1.2rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(125deg, #f8fafc 0%, #e0f2fe 45%, #ecfeff 100%);
  border: 1px solid rgba(3, 105, 161, 0.12);
  box-shadow: 0 12px 40px -20px rgba(12, 74, 110, 0.2);
}

.itsm-compliance-board__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-start;
}

.itsm-compliance-stat {
  flex: 1 1 140px;
  min-width: 120px;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(3, 105, 161, 0.1);
}

.itsm-compliance-stat__val {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
  line-height: 1.1;
}

.itsm-compliance-stat__lbl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0369a1;
  margin-top: 0.25rem;
}

.itsm-sm-card {
  border-radius: 1.1rem;
  padding: 1.65rem 1.5rem;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(3, 105, 161, 0.1);
  box-shadow: 0 8px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.itsm-sm-card:hover {
  transform: translateY(-5px);
  border-color: rgba(3, 105, 161, 0.22);
  box-shadow: 0 16px 40px -12px rgba(3, 105, 161, 0.18);
}

.itsm-sm-card__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.95rem;
}

.itsm-sm-card--svc .itsm-sm-card__icon {
  background: linear-gradient(145deg, #2563eb, #4f46e5);
}

.itsm-sm-card--chg .itsm-sm-card__icon {
  background: linear-gradient(145deg, #d97706, #ea580c);
}

.itsm-sm-card--inc .itsm-sm-card__icon {
  background: linear-gradient(145deg, #dc2626, #be123c);
}

.itsm-bento {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .itsm-bento {
    grid-template-columns: 1fr 1fr;
  }
}

.itsm-bento__tile {
  border-radius: 1.1rem;
  padding: 1.6rem 1.45rem;
  height: 100%;
  border: 1px solid rgba(3, 105, 161, 0.11);
  position: relative;
  overflow: hidden;
}

.itsm-bento__tile--sbom {
  background: linear-gradient(155deg, #fff 0%, #eff6ff 55%, #e0f2fe 100%);
}

.itsm-bento__tile--cbom {
  background: linear-gradient(155deg, #fff 0%, #f5f3ff 50%, #ede9fe 100%);
}

.itsm-bento__tile--software {
  grid-column: 1 / -1;
  background: linear-gradient(155deg, #f8fafc 0%, #f0fdfa 50%, #ecfeff 100%);
}

/* ITSM — Inventory / “Track software everywhere” showcase */
.itsm-inv-showcase {
  padding: 2rem 1.65rem 1.75rem !important;
  background: linear-gradient(128deg, #f8fafc 0%, #ecfdf5 28%, #e0f2fe 58%, #f5f3ff 100%) !important;
  border: 1px solid rgba(13, 148, 136, 0.22) !important;
  box-shadow:
    0 24px 56px -28px rgba(13, 148, 136, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.itsm-inv-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 100% 0%, rgba(45, 212, 191, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(99, 102, 241, 0.12), transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.itsm-inv-showcase > .row {
  position: relative;
  z-index: 1;
}

.itsm-inv-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.itsm-inv-features li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--wh-muted);
}

.itsm-inv-features__icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #0f766e;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.18), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(13, 148, 136, 0.15);
  box-shadow: 0 4px 12px -4px rgba(13, 148, 136, 0.35);
}

.itsm-inv-diagram {
  position: relative;
  min-height: 240px;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(240, 253, 250, 0.75));
  border: 1px solid rgba(13, 148, 136, 0.14);
  box-shadow: 0 12px 36px -16px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.itsm-inv-diagram__glow {
  position: absolute;
  z-index: 0;
  inset: -40%;
  background: conic-gradient(
    from 200deg at 50% 45%,
    rgba(45, 212, 191, 0.12),
    rgba(99, 102, 241, 0.1),
    rgba(14, 165, 233, 0.1),
    rgba(45, 212, 191, 0.12)
  );
  animation: itsm-inv-spin 28s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .itsm-inv-diagram__glow {
    animation: none;
  }
}

@keyframes itsm-inv-spin {
  to {
    transform: rotate(360deg);
  }
}

.itsm-inv-diagram__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  background: linear-gradient(145deg, #0d9488, #0ea5e9);
  color: #fff;
  box-shadow:
    0 16px 40px -12px rgba(13, 148, 136, 0.55),
    0 0 0 6px rgba(255, 255, 255, 0.5);
}

.itsm-inv-diagram__hub-icon {
  font-size: 1.65rem;
  line-height: 1;
  opacity: 0.95;
}

.itsm-inv-diagram__hub-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 5.5rem;
}

.itsm-inv-diagram__node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.65rem;
  min-width: 5.5rem;
  border-radius: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wh-blue-900);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(3, 105, 161, 0.12);
  box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.15);
}

.itsm-inv-diagram__node i {
  font-size: 1.15rem;
  color: #0891b2;
}

.itsm-inv-diagram__node--1 {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.itsm-inv-diagram__node--2 {
  bottom: 10%;
  left: 8%;
}

.itsm-inv-diagram__node--3 {
  bottom: 10%;
  right: 8%;
}

.itsm-inv-diagram__node--4 {
  top: 42%;
  right: 5%;
}

@media (min-width: 992px) {
  .itsm-inv-diagram {
    min-height: 260px;
  }

  .itsm-inv-diagram__node--4 {
    top: 38%;
  }
}

.itsm-inv-foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(13, 148, 136, 0.14);
}

.itsm-inv-foot__chips {
  margin-top: 0 !important;
}

.itsm-bento__chip--inv {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(13, 148, 136, 0.18);
  color: #0f766e;
  font-weight: 700;
}

.itsm-bento__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.itsm-bento__tile--sbom .itsm-bento__tag {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.12);
}

.itsm-bento__tile--cbom .itsm-bento__tag {
  color: #6d28d9;
  background: rgba(109, 40, 217, 0.12);
}

.itsm-bento__tile--software .itsm-bento__tag {
  color: #0f766e;
  background: rgba(13, 148, 136, 0.12);
}

.itsm-bento__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.itsm-bento__chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(3, 105, 161, 0.12);
  color: var(--wh-blue-900);
}

.itsm-flow-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .itsm-flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.itsm-flow-card {
  border-radius: 1.1rem;
  padding: 1.55rem 1.4rem;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid #0ea5e9;
  box-shadow: 0 6px 24px -12px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.itsm-flow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -14px rgba(3, 105, 161, 0.2);
}

.itsm-flow-card:nth-child(2) {
  border-left-color: #6366f1;
}

.itsm-flow-card:nth-child(3) {
  border-left-color: #14b8a6;
}

.itsm-flow-card__icon {
  font-size: 1.5rem;
  color: #0369a1;
  margin-bottom: 0.65rem;
}

.itsm-ai-panel {
  border-radius: 1.25rem;
  padding: 2.25rem 1.85rem;
  color: #fff;
  background: linear-gradient(135deg, #0c4a6e 0%, #0e7490 48%, #155e75 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(12, 74, 110, 0.55);
}

.itsm-ai-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(56, 189, 248, 0.35), transparent 55%);
  pointer-events: none;
}

.itsm-ai-panel__inner {
  position: relative;
  z-index: 1;
}

.itsm-ai-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.itsm-ai-panel__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.96;
}

.itsm-ai-panel__list li:last-child {
  margin-bottom: 0;
}

.itsm-ai-panel__list i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #7dd3fc;
}

@media (prefers-reduced-motion: reduce) {
  .itsm-discovery-card:hover,
  .itsm-sm-card:hover,
  .itsm-flow-card:hover {
    transform: none;
  }
}

/* Extra vertical spacing (Bootstrap stops at 5) */
@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* Marketing landing pages — /landing/*.html */
.lp-nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(12px);
}

.lp-nav .navbar-brand-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.lp-hero-marketing {
  position: relative;
}

.lp-hero-marketing .lp-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
}

.lp-hero-marketing .lp-headline {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.lp-hero-marketing .lp-sub {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.lp-glass-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: calc(var(--wh-radius) + 4px);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.lp-glass-panel .list-unstyled li {
  color: rgba(255, 255, 255, 0.92);
}

.lp-value-card {
  border-radius: calc(var(--wh-radius) + 2px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #fff;
  padding: 1.5rem 1.35rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 40px -24px rgba(15, 23, 42, 0.12);
}

.lp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(37, 99, 235, 0.18);
}

.lp-value-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--wh-blue-600);
  background: var(--wh-blue-50);
  margin-bottom: 1rem;
}

/* DataForesight landing — “Built for real enterprise data estates” */
.lp-df-estates {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f0fdfa 0%, #f8fafc 35%, #eef2ff 70%, #f1f5f9 100%);
}

.lp-df-estates__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 12% 15%, rgba(13, 148, 136, 0.18), transparent 58%),
    radial-gradient(ellipse 60% 48% at 88% 25%, rgba(99, 102, 241, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 42% at 45% 100%, rgba(6, 182, 212, 0.1), transparent 50%);
}

.lp-df-estates__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 15%, transparent 72%);
}

.lp-df-estates .container {
  z-index: 1;
}

.lp-df-estates__intro {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .lp-df-estates__intro {
    margin-bottom: 3rem;
  }
}

.lp-df-estates__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0f766e;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow: 0 8px 28px -14px rgba(13, 148, 136, 0.35);
}

.lp-df-estates__title {
  font-size: clamp(1.45rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: #0f172a;
}

.lp-df-estates__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--wh-muted);
  max-width: 38rem;
  margin-inline: auto;
}

.lp-df-estates__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1.5rem;
}

.lp-df-estates__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #134e4a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 32px -18px rgba(15, 23, 42, 0.12);
}

.lp-df-estates__chip i {
  font-size: 0.95rem;
  color: #0d9488;
}

.lp-df-estate-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.14) !important;
  background: linear-gradient(165deg, #ffffff 0%, rgba(240, 253, 250, 0.65) 100%) !important;
  box-shadow: 0 18px 48px -28px rgba(13, 148, 136, 0.14) !important;
}

.lp-df-estate-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: calc(var(--wh-radius) + 2px) calc(var(--wh-radius) + 2px) 0 0;
}

.lp-df-estate-card--a::before {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.lp-df-estate-card--b::before {
  background: linear-gradient(90deg, #0891b2, #2563eb);
}

.lp-df-estate-card--c::before {
  background: linear-gradient(90deg, #6366f1, #7c3aed);
}

.lp-df-estate-card--a .lp-value-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  box-shadow: 0 10px 24px -12px rgba(13, 148, 136, 0.45);
}

.lp-df-estate-card--b .lp-value-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #0891b2, #2563eb);
  box-shadow: 0 10px 24px -12px rgba(8, 145, 178, 0.4);
}

.lp-df-estate-card--c .lp-value-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #6366f1, #7c3aed);
  box-shadow: 0 10px 24px -12px rgba(99, 102, 241, 0.4);
}

.lp-df-estate-card__heading {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lp-df-estate-card:hover {
  border-color: rgba(13, 148, 136, 0.28) !important;
  box-shadow: 0 26px 56px -30px rgba(13, 148, 136, 0.22) !important;
}

@media (prefers-reduced-motion: reduce) {
  .lp-value-card.lp-df-estate-card:hover {
    transform: none;
  }
}

.lp-trust-strip {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-muted);
  text-align: center;
}

.lp-cta-band {
  background: linear-gradient(135deg, var(--wh-blue-900) 0%, #1e3a8a 55%, var(--wh-blue-700) 100%);
  color: #fff;
  border-radius: calc(var(--wh-radius) + 6px);
  padding: 2.5rem 1.75rem;
  box-shadow: 0 28px 70px -36px rgba(37, 99, 235, 0.45);
}

.lp-seo-block {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--wh-muted);
  max-width: 48rem;
  margin-inline: auto;
}

.lp-seo-block strong {
  color: var(--wh-text);
  font-weight: 600;
}

/* DataForesight landing — “About this page” */
.lp-df-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #f8fafc 0%, #ecfdf5 28%, #f1f5f9 58%, #eef2ff 100%);
}

.lp-df-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 35%, rgba(99, 102, 241, 0.1), transparent 50%),
    radial-gradient(ellipse 45% 40% at 50% 95%, rgba(6, 182, 212, 0.08), transparent 48%);
  pointer-events: none;
}

.lp-df-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08) 70%, transparent 100%);
  pointer-events: none;
}

.lp-df-about .container {
  position: relative;
  z-index: 1;
}

.lp-df-about-shell {
  max-width: 52rem;
}

.lp-df-about-card {
  position: relative;
  border-radius: 1.35rem;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(13, 148, 136, 0.45),
    rgba(6, 182, 212, 0.35) 42%,
    rgba(99, 102, 241, 0.35)
  );
  box-shadow:
    0 28px 72px -36px rgba(13, 148, 136, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.lp-df-about-card__rail {
  display: none;
}

@media (min-width: 768px) {
  .lp-df-about-card {
    display: grid;
    grid-template-columns: 5px 1fr;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
      0 28px 72px -36px rgba(15, 23, 42, 0.12),
      0 0 0 1px rgba(255, 255, 255, 1) inset;
  }

  .lp-df-about-card__rail {
    display: block;
    border-radius: 1.35rem 0 0 1.35rem;
    background: linear-gradient(180deg, #0d9488 0%, #14b8a6 38%, #06b6d4 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.2);
  }
}

.lp-df-about-card__inner {
  border-radius: calc(1.35rem - 1px);
  padding: 1.65rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .lp-df-about-card__inner {
    border-radius: 0 1.35rem 1.35rem 0;
    border: none;
    padding: 2rem 2rem 1.85rem 1.85rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 992px) {
  .lp-df-about-card__inner {
    padding: 2.35rem 2.5rem 2.15rem 2.15rem;
  }
}

.lp-df-about-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.lp-df-about-card__pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.22);
}

.lp-df-about-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.lp-df-about-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #0f766e);
  box-shadow: 0 12px 28px -14px rgba(13, 148, 136, 0.55);
}

.lp-df-about-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--wh-blue-900);
  margin: 0 0 0.35rem;
}

.lp-df-about-card__subtitle {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--wh-muted);
  margin: 0;
  max-width: 28rem;
}

.lp-df-about-card__prose {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--wh-muted);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.lp-df-about-card__prose strong {
  color: var(--wh-blue-900);
  font-weight: 600;
}

.lp-df-about-card__brand {
  font-weight: 700;
  color: var(--wh-blue-900);
}

.lp-df-about-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (min-width: 576px) {
  .lp-df-about-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.lp-df-about-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.65rem 1.15rem;
  border-radius: 0.65rem;
  color: #fff;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px -12px rgba(13, 148, 136, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-df-about-card__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(13, 148, 136, 0.5);
}

.lp-df-about-card__cta--ghost {
  color: var(--wh-blue-700);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.12);
}

.lp-df-about-card__cta--ghost:hover {
  color: var(--wh-blue-600);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(37, 99, 235, 0.2);
}

.lp-df-about-card__cta:focus-visible {
  outline: 2px solid rgba(13, 148, 136, 0.65);
  outline-offset: 3px;
}

.lp-df-about-card__cta--ghost:focus-visible {
  outline-color: rgba(37, 99, 235, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .lp-df-about-card__cta:hover,
  .lp-df-about-card__cta--ghost:hover {
    transform: none;
  }
}

/* iRegu landing — “About this page” (inherits lp-df-about-card; section tint) */
.lp-iregu-about.lp-df-about {
  background: linear-gradient(168deg, #f0fdfa 0%, #ecfdf5 30%, #f8fafc 62%, #f1f5f9 100%);
}

.lp-iregu-about.lp-df-about::before {
  background:
    radial-gradient(ellipse 74% 54% at 16% 20%, rgba(13, 148, 136, 0.17), transparent 56%),
    radial-gradient(ellipse 50% 44% at 90% 28%, rgba(19, 78, 74, 0.09), transparent 52%),
    radial-gradient(ellipse 44% 40% at 48% 94%, rgba(6, 182, 212, 0.08), transparent 48%);
}

/* ITSM landing — “About this page” (sky / cyan palette — itsm.html) */
.lp-itsm-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #f0f9ff 0%, #f8fafc 32%, #ecfeff 58%, #eef2ff 100%);
}

.lp-itsm-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 52% at 14% 18%, rgba(14, 165, 233, 0.16), transparent 56%),
    radial-gradient(ellipse 54% 46% at 92% 30%, rgba(56, 189, 248, 0.12), transparent 52%),
    radial-gradient(ellipse 46% 42% at 48% 92%, rgba(99, 102, 241, 0.08), transparent 48%);
  pointer-events: none;
}

.lp-itsm-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08) 70%, transparent 100%);
  pointer-events: none;
}

.lp-itsm-about .container {
  position: relative;
  z-index: 1;
}

.lp-itsm-about-shell {
  max-width: 52rem;
}

.lp-itsm-about-card {
  position: relative;
  border-radius: 1.35rem;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(3, 105, 161, 0.42),
    rgba(14, 165, 233, 0.35) 45%,
    rgba(99, 102, 241, 0.32)
  );
  box-shadow:
    0 28px 72px -36px rgba(3, 105, 161, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.lp-itsm-about-card__rail {
  display: none;
}

@media (min-width: 768px) {
  .lp-itsm-about-card {
    display: grid;
    grid-template-columns: 5px 1fr;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.99) 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
      0 28px 72px -36px rgba(15, 23, 42, 0.12),
      0 0 0 1px rgba(255, 255, 255, 1) inset;
  }

  .lp-itsm-about-card__rail {
    display: block;
    border-radius: 1.35rem 0 0 1.35rem;
    background: linear-gradient(180deg, #0369a1 0%, #0ea5e9 45%, #06b6d4 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.22);
  }
}

.lp-itsm-about-card__inner {
  border-radius: calc(1.35rem - 1px);
  padding: 1.65rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .lp-itsm-about-card__inner {
    border-radius: 0 1.35rem 1.35rem 0;
    border: none;
    padding: 2rem 2rem 1.85rem 1.85rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 992px) {
  .lp-itsm-about-card__inner {
    padding: 2.35rem 2.5rem 2.15rem 2.15rem;
  }
}

.lp-itsm-about-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.lp-itsm-about-card__pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(3, 105, 161, 0.1);
  border: 1px solid rgba(3, 105, 161, 0.2);
}

.lp-itsm-about-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.lp-itsm-about-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(145deg, #0284c7, #0369a1);
  box-shadow: 0 12px 28px -14px rgba(3, 105, 161, 0.55);
}

.lp-itsm-about-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--wh-blue-900);
  margin: 0 0 0.35rem;
}

.lp-itsm-about-card__subtitle {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--wh-muted);
  margin: 0;
  max-width: 28rem;
}

.lp-itsm-about-card__prose {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--wh-muted);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.lp-itsm-about-card__prose strong {
  color: var(--wh-blue-900);
  font-weight: 600;
}

.lp-itsm-about-card__brand {
  font-weight: 700;
  color: var(--wh-blue-900);
}

.lp-itsm-about-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (min-width: 576px) {
  .lp-itsm-about-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.lp-itsm-about-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.65rem 1.15rem;
  border-radius: 0.65rem;
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px -12px rgba(14, 165, 233, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-itsm-about-card__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(2, 132, 199, 0.45);
}

.lp-itsm-about-card__cta--ghost {
  color: var(--wh-blue-700);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(3, 105, 161, 0.2);
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.12);
}

.lp-itsm-about-card__cta--ghost:hover {
  color: #0369a1;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(3, 105, 161, 0.2);
}

.lp-itsm-about-card__cta:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.65);
  outline-offset: 3px;
}

.lp-itsm-about-card__cta--ghost:focus-visible {
  outline-color: rgba(3, 105, 161, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .lp-itsm-about-card__cta:hover,
  .lp-itsm-about-card__cta--ghost:hover {
    transform: none;
  }
}

/* ITSM landing — Agents & agentless, modules (itsm.html) */
.lp-itsm-discovery__eyebrow,
.lp-itsm-modules__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0369a1;
}

.lp-itsm-discovery-card {
  position: relative;
  border-radius: 1.15rem;
  padding: 1.75rem 1.6rem;
  height: 100%;
  background: linear-gradient(165deg, #fff 0%, #f0f9ff 100%);
  border: 1px solid rgba(3, 105, 161, 0.14);
  box-shadow: 0 12px 40px -22px rgba(12, 74, 110, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-itsm-discovery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -20px rgba(3, 105, 161, 0.28);
}

.lp-itsm-discovery-card--agent {
  border-top: 4px solid #0369a1;
}

.lp-itsm-discovery-card--agentless {
  border-top: 4px solid #0ea5e9;
}

.lp-itsm-discovery-card__icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px -10px rgba(12, 74, 110, 0.45);
}

.lp-itsm-discovery-card--agent .lp-itsm-discovery-card__icon {
  background: linear-gradient(145deg, #0369a1, #0284c7);
}

.lp-itsm-discovery-card--agentless .lp-itsm-discovery-card__icon {
  background: linear-gradient(145deg, #0ea5e9, #38bdf8);
}

.lp-itsm-discovery-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-itsm-discovery-card__list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--wh-muted);
}

.lp-itsm-discovery-card__list li:last-child {
  margin-bottom: 0;
}

.lp-itsm-discovery-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.lp-itsm-module {
  border-radius: 1.1rem;
  padding: 1.6rem 1.45rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(3, 105, 161, 0.1);
  border-left-width: 4px;
  box-shadow: 0 8px 28px -16px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-itsm-module:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -18px rgba(3, 105, 161, 0.18);
}

.lp-itsm-module--sla {
  border-left-color: #d97706;
}

.lp-itsm-module--notify {
  border-left-color: #7c3aed;
}

.lp-itsm-module--flow {
  border-left-color: #0d9488;
}

.lp-itsm-module__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.9rem;
}

.lp-itsm-module--sla .lp-itsm-module__icon {
  background: linear-gradient(145deg, #ea580c, #d97706);
}

.lp-itsm-module--notify .lp-itsm-module__icon {
  background: linear-gradient(145deg, #7c3aed, #6366f1);
}

.lp-itsm-module--flow .lp-itsm-module__icon {
  background: linear-gradient(145deg, #0d9488, #14b8a6);
}

.lp-itsm-module__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-itsm-module__bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--wh-muted);
}

.lp-itsm-module__bullets li:last-child {
  margin-bottom: 0;
}

.lp-itsm-module__bullets li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #0369a1;
}

@media (prefers-reduced-motion: reduce) {
  .lp-itsm-discovery-card:hover,
  .lp-itsm-module:hover {
    transform: none;
  }
}

/* DataForesight.ai landing — capability bento (dspm-data-foresight.html) */
.lp-df-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, #042f2e 0%, #0f172a 38%, #134e4a 72%, #0f172a 100%);
}

.lp-df-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(45, 212, 191, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 42% at 100% 40%, rgba(6, 182, 212, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 38% at 0% 75%, rgba(99, 102, 241, 0.1), transparent 50%);
  pointer-events: none;
}

.lp-df-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}

.lp-df-showcase .container {
  position: relative;
  z-index: 1;
}

.lp-df-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(153, 246, 228, 0.92);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.25);
  border: 1px solid rgba(45, 212, 191, 0.35);
  box-shadow: 0 12px 40px -18px rgba(13, 148, 136, 0.55);
}

.lp-df-showcase__title {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  max-width: 40rem;
  margin-inline: auto;
}

.lp-df-showcase__lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
  max-width: 38rem;
}

.lp-df-bento {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lp-df-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .lp-df-bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(0, auto);
    gap: 1.35rem;
  }

  .lp-df-tile--stores {
    grid-column: 1 / span 7;
    grid-row: 1;
  }

  .lp-df-tile--ai {
    grid-column: 8 / span 5;
    grid-row: 1;
  }

  .lp-df-tile--assistant {
    grid-column: 1 / span 6;
    grid-row: 2;
  }

  .lp-df-tile--discover {
    grid-column: 7 / span 6;
    grid-row: 2;
  }
}

.lp-df-tile {
  position: relative;
  border-radius: 1.25rem;
  padding: 2px;
  background: linear-gradient(
    145deg,
    rgba(45, 212, 191, 0.55),
    rgba(6, 182, 212, 0.35) 45%,
    rgba(99, 102, 241, 0.35)
  );
  box-shadow:
    0 28px 64px -32px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.lp-df-tile:hover {
  transform: translateY(-5px);
  box-shadow:
    0 36px 72px -32px rgba(13, 148, 136, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.lp-df-tile__inner {
  height: 100%;
  border-radius: calc(1.25rem - 2px);
  padding: 1.5rem 1.4rem 1.45rem;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .lp-df-tile__inner {
    padding: 1.65rem 1.5rem 1.5rem;
  }
}

.lp-df-tile--stores .lp-df-tile__inner {
  background: linear-gradient(168deg, rgba(6, 78, 59, 0.55) 0%, rgba(15, 23, 42, 0.9) 48%, rgba(15, 23, 42, 0.88) 100%);
}

.lp-df-tile--ai .lp-df-tile__inner {
  background: linear-gradient(168deg, rgba(30, 58, 138, 0.35) 0%, rgba(15, 23, 42, 0.92) 45%, rgba(15, 23, 42, 0.88) 100%);
}

.lp-df-tile--assistant .lp-df-tile__inner {
  background: linear-gradient(168deg, rgba(88, 28, 135, 0.32) 0%, rgba(15, 23, 42, 0.92) 48%, rgba(15, 23, 42, 0.88) 100%);
}

.lp-df-tile--discover .lp-df-tile__inner {
  background: linear-gradient(168deg, rgba(14, 116, 144, 0.4) 0%, rgba(15, 23, 42, 0.92) 48%, rgba(15, 23, 42, 0.88) 100%);
}

.lp-df-tile__head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.lp-df-tile__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.95), rgba(6, 182, 212, 0.85));
  box-shadow: 0 12px 28px -12px rgba(13, 148, 136, 0.65);
}

.lp-df-tile--ai .lp-df-tile__icon {
  background: linear-gradient(145deg, #6366f1, #4f46e5);
  box-shadow: 0 12px 28px -12px rgba(79, 70, 229, 0.55);
}

.lp-df-tile--assistant .lp-df-tile__icon {
  background: linear-gradient(145deg, #a855f7, #7c3aed);
  box-shadow: 0 12px 28px -12px rgba(124, 58, 237, 0.5);
}

.lp-df-tile--discover .lp-df-tile__icon {
  background: linear-gradient(145deg, #06b6d4, #0891b2);
  box-shadow: 0 12px 28px -12px rgba(8, 145, 178, 0.55);
}

.lp-df-tile__title {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  padding-top: 0.15rem;
}

.lp-df-tile__text {
  font-size: 0.94rem;
  line-height: 1.58;
  color: rgba(226, 232, 240, 0.9);
}

.lp-df-tile__bullets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp-df-tile__bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(167, 243, 208, 0.92);
}

.lp-df-tile__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #2dd4bf, #22d3ee);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .lp-df-tile {
    transition: none;
  }

  .lp-df-tile:hover {
    transform: none;
  }
}

/* ComplianceForesight landing — modules, integrations, FAQ bands */
.lp-cf-band {
  position: relative;
  overflow: hidden;
}

.lp-cf-band--modules {
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 35%, #f1f5f9 100%);
}

.lp-cf-band--integrations {
  background: linear-gradient(165deg, #eff6ff 0%, #f8fafc 45%, #eef2ff 100%);
}

.lp-cf-band--faq {
  background: #fff;
}

.lp-cf-band--about {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f1f5f9 100%);
}

.lp-cf-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 0%, rgba(37, 99, 235, 0.09), transparent 55%);
  pointer-events: none;
}

.lp-cf-band > .container {
  position: relative;
  z-index: 1;
}

.lp-cf-band__bg--soft {
  background:
    radial-gradient(ellipse 65% 50% at 85% 15%, rgba(99, 102, 241, 0.12), transparent 52%),
    radial-gradient(ellipse 55% 45% at 10% 80%, rgba(14, 165, 233, 0.08), transparent 50%);
}

.lp-cf-band__bg--about {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(37, 99, 235, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(99, 102, 241, 0.06), transparent 50%);
}

/* ComplianceForesight landing — “About this solution” */
.lp-cf-about-card {
  display: flex;
  align-items: stretch;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 16px 48px -28px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.lp-cf-about-card__rail {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #2563eb 0%, #4f46e5 45%, #0891b2 100%);
}

.lp-cf-about-card__inner {
  flex: 1;
  min-width: 0;
  padding: 1.5rem 1.35rem 1.6rem;
}

@media (min-width: 768px) {
  .lp-cf-about-card__inner {
    padding: 1.75rem 2rem 1.85rem;
  }
}

.lp-cf-about-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lp-cf-about-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wh-blue-800);
  text-decoration: none;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lp-cf-about-chip i {
  font-size: 0.95rem;
  color: var(--wh-blue-600);
}

.lp-cf-about-chip:hover {
  color: var(--wh-blue-700);
  background: #fff;
  border-color: rgba(37, 99, 235, 0.32);
}

.lp-cf-about-chip:focus-visible {
  outline: 2px solid var(--wh-blue-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lp-cf-about-chip {
    transition: none;
  }
}

.lp-cf-about-prose {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--wh-muted);
  text-align: left;
}

.lp-cf-about-prose strong {
  color: var(--wh-text);
  font-weight: 600;
}

.lp-cf-about-prose a {
  color: var(--wh-blue-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.lp-cf-about-prose a:hover {
  color: var(--wh-blue-600);
}

.lp-cf-about-prose a:focus-visible {
  outline: 2px solid var(--wh-blue-500);
  outline-offset: 2px;
  border-radius: 2px;
}

.lp-cf-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.lp-cf-kicker__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-blue-800);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  box-shadow: 0 6px 20px -10px rgba(37, 99, 235, 0.25);
}

.lp-cf-kicker__dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--wh-blue-400);
  opacity: 0.8;
}

.lp-cf-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.lp-cf-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.lp-cf-lead {
  max-width: 40rem;
}

.lp-module-card {
  position: relative;
  border-radius: 1.15rem;
  padding: 1.35rem 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px -22px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.lp-module-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 1.15rem 1.15rem 0 0;
  opacity: 0.95;
}

.lp-module-card--a::before {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
}

.lp-module-card--b::before {
  background: linear-gradient(90deg, #0891b2, #2563eb);
}

.lp-module-card--c::before {
  background: linear-gradient(90deg, #059669, #0d9488);
}

.lp-module-card--d::before {
  background: linear-gradient(90deg, #7c3aed, #db2777);
}

.lp-module-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 22px 50px -24px rgba(37, 99, 235, 0.2);
}

.lp-module-card__index {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(15, 23, 42, 0.28);
}

.lp-module-card__icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(15, 23, 42, 0.35);
}

.lp-module-card--a .lp-module-card__icon {
  background: linear-gradient(145deg, #2563eb, #4f46e5);
}

.lp-module-card--b .lp-module-card__icon {
  background: linear-gradient(145deg, #0891b2, #2563eb);
}

.lp-module-card--c .lp-module-card__icon {
  background: linear-gradient(145deg, #059669, #0d9488);
}

.lp-module-card--d .lp-module-card__icon {
  background: linear-gradient(145deg, #7c3aed, #db2777);
}

.lp-module-card__title {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--wh-blue-900);
  line-height: 1.3;
}

.lp-module-card__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--wh-muted);
  margin: 0;
}

.btn-lp-cf-primary {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  color: #fff;
  text-decoration: none;
  border: none;
  background: linear-gradient(135deg, var(--wh-blue-600) 0%, #4f46e5 100%);
  box-shadow: 0 12px 32px -14px rgba(79, 70, 229, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-lp-cf-primary:hover,
.btn-lp-cf-primary:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.45);
}

.btn-lp-cf-outline {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  color: var(--wh-blue-700);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-lp-cf-outline:hover,
.btn-lp-cf-outline:focus-visible {
  color: var(--wh-blue-600);
  background: var(--wh-blue-50);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.lp-int-panel {
  border-radius: 1.25rem;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 16px 48px -28px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-int-panel:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 24px 56px -28px rgba(37, 99, 235, 0.18);
}

.lp-int-panel--sec .lp-int-panel__head {
  background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 55%, #0891b2 100%);
}

.lp-int-panel--idm .lp-int-panel__head {
  background: linear-gradient(120deg, #4f46e5 0%, #6366f1 50%, #8b5cf6 100%);
}

.lp-int-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.15rem;
  color: #fff;
}

.lp-int-panel__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lp-int-panel__title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
  color: #fff;
}

.lp-int-panel__sub {
  font-size: 0.82rem;
  line-height: 1.45;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.92);
}

.lp-int-panel__list {
  padding: 1.25rem 1.35rem 1.35rem;
}

.lp-int-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.55rem;
  color: var(--wh-text);
}

.lp-int-panel__list li:last-child {
  margin-bottom: 0;
}

.lp-int-panel__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(145deg, var(--wh-blue-500), var(--wh-blue-700));
}

.lp-int-panel__note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 1.35rem 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--wh-muted);
}

.lp-int-panel__note i {
  font-size: 1.1rem;
  color: var(--wh-blue-600);
  margin-top: 0.1rem;
}

.lp-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-faq-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 28px -18px rgba(15, 23, 42, 0.1);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-faq-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 16px 40px -22px rgba(37, 99, 235, 0.15);
}

.lp-faq-card__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--wh-blue-700);
  background: linear-gradient(145deg, #eff6ff, #e0e7ff);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.lp-faq-card__body {
  flex: 1;
  min-width: 0;
}

.lp-faq-card__q {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--wh-blue-900);
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.lp-faq-card__qi {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--wh-blue-500);
  font-size: 1.1rem;
}

.lp-faq-card__a {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--wh-muted);
}

@media (max-width: 575.98px) {
  .lp-faq-card {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-faq-card__num {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-module-card:hover,
  .btn-lp-cf-primary:hover,
  .btn-lp-cf-primary:focus-visible,
  .btn-lp-cf-outline:hover,
  .btn-lp-cf-outline:focus-visible {
    transform: none;
  }
}

.letter-spacing {
  letter-spacing: 0.1em;
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* ——— iConsentO — product & landing (iconsento) ——— */
.hero-product--iconsento .ico-hero-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #faf5ff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
}

.hero-product--iconsento .ico-hero-pill--solid {
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}

.ico-page-section {
  position: relative;
}

.ico-page-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
  margin-bottom: 0.5rem;
}

.ico-feature-card {
  height: 100%;
  border-radius: 1.2rem;
  padding: 1.65rem 1.5rem;
  background: linear-gradient(165deg, #fff 0%, #faf5ff 55%, #f5f3ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 18px 48px -28px rgba(91, 33, 182, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ico-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -30px rgba(91, 33, 182, 0.25);
}

.ico-feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 1.1rem;
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
  box-shadow: 0 12px 28px -14px rgba(109, 40, 217, 0.55);
}

.ico-feature-card--cookie .ico-feature-card__icon {
  background: linear-gradient(145deg, #ea580c, #c2410c);
  box-shadow: 0 12px 28px -14px rgba(234, 88, 12, 0.45);
}

.ico-feature-card--user .ico-feature-card__icon {
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  box-shadow: 0 12px 28px -14px rgba(37, 99, 235, 0.45);
}

.ico-feature-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--wh-blue-900);
  margin-bottom: 0.5rem;
}

.ico-feature-card__text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--wh-muted);
  margin-bottom: 0;
}

.ico-stake-card {
  height: 100%;
  border-radius: 1.1rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 12px 36px -24px rgba(15, 23, 42, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ico-stake-card:hover {
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 18px 44px -26px rgba(124, 58, 237, 0.2);
}

.ico-stake-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(145deg, #8b5cf6, #7c3aed);
  margin-bottom: 0.85rem;
}

.ico-stake-card__title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--wh-blue-900);
  margin-bottom: 0.35rem;
}

.ico-stake-card__text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--wh-muted);
  margin: 0;
}

.ico-effortless {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, #f5f3ff 0%, #eef2ff 40%, #f8fafc 100%);
}

.ico-effortless::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 10%, rgba(124, 58, 237, 0.12), transparent 55%);
  pointer-events: none;
}

.ico-effortless .container {
  position: relative;
  z-index: 1;
}

.ico-video-shell {
  position: relative;
  padding: 3px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(99, 102, 241, 0.75), rgba(6, 182, 212, 0.65));
  box-shadow: 0 24px 60px -32px rgba(79, 70, 229, 0.35);
}

.ico-video-shell__inner {
  border-radius: calc(1.25rem - 3px);
  overflow: hidden;
  background: #0f172a;
}

.ico-video-shell .video-wrap {
  border-radius: calc(1.25rem - 3px);
  box-shadow: none;
}

.ico-band-parent {
  background: linear-gradient(155deg, #1e1b4b 0%, #4c1d95 45%, #6d28d9 100%);
  color: #fff;
}

.ico-band-parent__card {
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

/* iConsentO — Verticals / industries showcase */
.ico-verticals {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, #f5f3ff 0%, #eef2ff 28%, #faf5ff 55%, #f8fafc 100%);
}

.ico-verticals::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 12% 15%, rgba(124, 58, 237, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 25%, rgba(99, 102, 241, 0.1), transparent 52%),
    radial-gradient(ellipse 50% 42% at 50% 95%, rgba(167, 139, 250, 0.08), transparent 50%);
  pointer-events: none;
}

.ico-verticals::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 15%, transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}

.ico-verticals .container {
  position: relative;
  z-index: 1;
}

.ico-verticals__header {
  max-width: 38rem;
}

.ico-verticals__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b21b6;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(237, 233, 254, 0.9));
  border: 1px solid rgba(124, 58, 237, 0.28);
  box-shadow: 0 10px 28px -16px rgba(91, 33, 182, 0.35);
  margin-bottom: 1rem;
}

.ico-verticals__title {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--wh-blue-900);
  margin-bottom: 0.75rem;
}

.ico-verticals__lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--wh-muted);
  margin: 0;
}

.ico-verticals__board {
  border-radius: 1.45rem;
  padding: 1.35rem 1.15rem 1.45rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 28px 72px -40px rgba(91, 33, 182, 0.35),
    0 0 0 1px rgba(124, 58, 237, 0.08);
}

@media (min-width: 768px) {
  .ico-verticals__board {
    padding: 1.65rem 1.5rem 1.75rem;
  }
}

.ico-verticals__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .ico-verticals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .ico-verticals__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.ico-verticals__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 1.05rem;
  background: linear-gradient(165deg, #fff 0%, #fafaff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 32px -22px rgba(15, 23, 42, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.ico-verticals__tile::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 1.05rem 1.05rem 0 0;
  background: var(--ico-v-accent, linear-gradient(90deg, #7c3aed, #6366f1));
}

.ico-verticals__tile--1 {
  --ico-v-accent: linear-gradient(90deg, #64748b, #475569);
}

.ico-verticals__tile--2 {
  --ico-v-accent: linear-gradient(90deg, #e11d48, #be123c);
}

.ico-verticals__tile--3 {
  --ico-v-accent: linear-gradient(90deg, #eab308, #ca8a04);
}

.ico-verticals__tile--4 {
  --ico-v-accent: linear-gradient(90deg, #0ea5e9, #0284c7);
}

.ico-verticals__tile--5 {
  --ico-v-accent: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.ico-verticals__tile--6 {
  --ico-v-accent: linear-gradient(90deg, #7c3aed, #6d28d9);
}

.ico-verticals__tile--7 {
  --ico-v-accent: linear-gradient(90deg, #059669, #047857);
}

.ico-verticals__tile--8 {
  --ico-v-accent: linear-gradient(90deg, #d946ef, #c026d3);
}

.ico-verticals__tile--9 {
  --ico-v-accent: linear-gradient(90deg, #f97316, #ea580c);
}

.ico-verticals__tile:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 20px 44px -24px rgba(91, 33, 182, 0.28);
}

.ico-verticals__tile-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
  box-shadow: 0 10px 22px -12px rgba(109, 40, 217, 0.55);
}

.ico-verticals__tile--1 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #64748b, #475569);
}

.ico-verticals__tile--2 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #f43f5e, #e11d48);
}

.ico-verticals__tile--3 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #eab308, #ca8a04);
}

.ico-verticals__tile--4 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #38bdf8, #0ea5e9);
}

.ico-verticals__tile--5 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #3b82f6, #2563eb);
}

.ico-verticals__tile--6 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #8b5cf6, #7c3aed);
}

.ico-verticals__tile--7 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #10b981, #059669);
}

.ico-verticals__tile--8 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #e879f9, #d946ef);
}

.ico-verticals__tile--9 .ico-verticals__tile-icon {
  background: linear-gradient(145deg, #fb923c, #f97316);
}

.ico-verticals__tile-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--wh-blue-900);
  margin: 0;
}

@media (min-width: 992px) {
  .ico-verticals__tile-label {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ico-verticals__tile:hover {
    transform: none;
  }
}

.ico-notice-panel {
  border-radius: 1.35rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 20px 50px -30px rgba(15, 23, 42, 0.12);
}

.ico-onedpdp {
  border-radius: 1.35rem;
  padding: 2.25rem 1.85rem;
  background: linear-gradient(135deg, #312e81 0%, #4338ca 48%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 28px 64px -36px rgba(67, 56, 202, 0.45);
}

.ico-onedpdp a.btn-light {
  color: #4338ca !important;
}

@media (prefers-reduced-motion: reduce) {
  .ico-feature-card:hover {
    transform: none;
  }
}

/* iConsentO landing — lp-ico-* */
.lp-ico-talk {
  background: linear-gradient(180deg, #faf5ff 0%, #fff 45%, #f8fafc 100%);
}

.lp-ico-talk-card {
  height: 100%;
  border-radius: 1.15rem;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 16px 44px -28px rgba(91, 33, 182, 0.18);
}

.lp-ico-talk-card__icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
  margin-bottom: 1rem;
}

.lp-ico-contact-band {
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #059669 0%, #047857 50%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 24px 56px -32px rgba(5, 150, 105, 0.4);
}

.lp-ico-contact-band .btn-light {
  color: #047857 !important;
  font-weight: 700;
}

.lp-ico-contact-band .btn-outline-light {
  border-width: 2px;
  font-weight: 700;
}

.lp-ico-contact-band__icons {
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.95;
}

.lp-ico-contact-band__icons .bi-whatsapp {
  color: rgba(255, 255, 255, 0.98);
}

.lp-ico-contact-band__icons .bi-envelope {
  color: rgba(255, 255, 255, 0.92);
}

.lp-ico-contact-band .btn-link.text-white:hover {
  color: #fff !important;
  opacity: 0.92;
}

/* HubSpot embed — contact modal (reusable) */
.hubspot-contact-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
}

.hubspot-contact-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: min(92vh, 720px);
  overflow: auto;
  margin: auto;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.hubspot-contact-modal__title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.hubspot-contact-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  font-size: 1.5rem;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.35rem;
}

.hubspot-contact-modal__close:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
}

.hubspot-contact-modal__close:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

.hubspot-contact-modal__embed {
  min-height: 120px;
}

/* iConsentO landing — industries block reuses .ico-verticals; landing-only footer line */
.lp-ico-verticals .ico-verticals__board {
  padding-bottom: 1.35rem;
}

.lp-ico-verticals__more {
  max-width: 32rem;
  margin-inline: auto;
  line-height: 1.55;
}

/* iConsentO landing — “About this page” */
.lp-ico-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #faf5ff 0%, #f5f3ff 30%, #f8fafc 62%, #eef2ff 100%);
}

.lp-ico-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 18% 18%, rgba(124, 58, 237, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 28%, rgba(99, 102, 241, 0.11), transparent 52%),
    radial-gradient(ellipse 48% 40% at 45% 92%, rgba(167, 139, 250, 0.1), transparent 50%);
  pointer-events: none;
}

.lp-ico-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08) 72%, transparent 100%);
  pointer-events: none;
}

.lp-ico-about .container {
  position: relative;
  z-index: 1;
}

.lp-ico-about-shell {
  max-width: 52rem;
}

.lp-ico-about-card {
  position: relative;
  border-radius: 1.35rem;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.42),
    rgba(99, 102, 241, 0.32) 45%,
    rgba(167, 139, 250, 0.35)
  );
  box-shadow:
    0 28px 72px -36px rgba(91, 33, 182, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.lp-ico-about-card__rail {
  display: none;
}

@media (min-width: 768px) {
  .lp-ico-about-card {
    display: grid;
    grid-template-columns: 5px 1fr;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 245, 255, 0.99) 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
      0 28px 72px -36px rgba(91, 33, 182, 0.14),
      0 0 0 1px rgba(255, 255, 255, 1) inset;
  }

  .lp-ico-about-card__rail {
    display: block;
    border-radius: 1.35rem 0 0 1.35rem;
    background: linear-gradient(180deg, #7c3aed 0%, #6d28d9 42%, #a855f7 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.2);
  }
}

.lp-ico-about-card__inner {
  border-radius: calc(1.35rem - 1px);
  padding: 1.65rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .lp-ico-about-card__inner {
    border-radius: 0 1.35rem 1.35rem 0;
    border: none;
    padding: 2rem 2rem 1.85rem 1.85rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 992px) {
  .lp-ico-about-card__inner {
    padding: 2.35rem 2.5rem 2.15rem 2.15rem;
  }
}

.lp-ico-about-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.lp-ico-about-card__pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6d28d9;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.22);
}

.lp-ico-about-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.lp-ico-about-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(145deg, #8b5cf6, #7c3aed);
  box-shadow: 0 12px 28px -14px rgba(109, 40, 217, 0.55);
}

.lp-ico-about-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--wh-blue-900);
  margin: 0 0 0.35rem;
}

.lp-ico-about-card__subtitle {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--wh-muted);
  margin: 0;
  max-width: 30rem;
}

.lp-ico-about-card__prose {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--wh-muted);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.lp-ico-about-card__prose strong {
  color: var(--wh-blue-900);
  font-weight: 600;
}

.lp-ico-about-card__link {
  font-weight: 600;
  color: var(--wh-blue-600);
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.35);
  text-underline-offset: 3px;
}

.lp-ico-about-card__link:hover {
  color: #7c3aed;
  text-decoration-color: rgba(124, 58, 237, 0.45);
}

.lp-ico-about-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (min-width: 576px) {
  .lp-ico-about-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.lp-ico-about-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.65rem 1.15rem;
  border-radius: 0.65rem;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px -12px rgba(109, 40, 217, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-ico-about-card__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(109, 40, 217, 0.5);
}

.lp-ico-about-card__cta--ghost {
  color: var(--wh-blue-700);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.22);
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.1);
}

.lp-ico-about-card__cta--ghost:hover {
  color: #6d28d9;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(124, 58, 237, 0.22);
}

.lp-ico-about-card__cta:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.65);
  outline-offset: 3px;
}

.lp-ico-about-card__cta--ghost:focus-visible {
  outline-color: rgba(124, 58, 237, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .lp-ico-about-card__cta:hover,
  .lp-ico-about-card__cta--ghost:hover {
    transform: none;
  }
}

/* OneDPDP landing — “About this page” */
.lp-odp-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #f8fafc 0%, #eef2ff 24%, #f5f3ff 52%, #fafafa 100%);
}

.lp-odp-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 52% at 12% 18%, rgba(99, 102, 241, 0.14), transparent 56%),
    radial-gradient(ellipse 58% 46% at 92% 30%, rgba(251, 191, 36, 0.1), transparent 52%),
    radial-gradient(ellipse 48% 42% at 48% 92%, rgba(67, 56, 202, 0.08), transparent 50%);
  pointer-events: none;
}

.lp-odp-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.06) 72%, transparent 100%);
  pointer-events: none;
}

.lp-odp-about .container {
  position: relative;
  z-index: 1;
}

.lp-odp-about-shell {
  max-width: 52rem;
}

.lp-odp-about-card {
  position: relative;
  border-radius: 1.35rem;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(67, 56, 202, 0.42),
    rgba(99, 102, 241, 0.32) 44%,
    rgba(251, 191, 36, 0.28)
  );
  box-shadow:
    0 28px 72px -36px rgba(49, 46, 129, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.lp-odp-about-card__rail {
  display: none;
}

@media (min-width: 768px) {
  .lp-odp-about-card {
    display: grid;
    grid-template-columns: 5px 1fr;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(238, 242, 255, 0.98) 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
      0 28px 72px -36px rgba(15, 23, 42, 0.12),
      0 0 0 1px rgba(255, 255, 255, 1) inset;
  }

  .lp-odp-about-card__rail {
    display: block;
    border-radius: 1.35rem 0 0 1.35rem;
    background: linear-gradient(180deg, #312e81 0%, #4f46e5 45%, #f59e0b 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.22);
  }
}

.lp-odp-about-card__inner {
  border-radius: calc(1.35rem - 1px);
  padding: 1.65rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .lp-odp-about-card__inner {
    border-radius: 0 1.35rem 1.35rem 0;
    border: none;
    padding: 2rem 2rem 1.85rem 1.85rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (min-width: 992px) {
  .lp-odp-about-card__inner {
    padding: 2.35rem 2.5rem 2.15rem 2.15rem;
  }
}

.lp-odp-about-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.lp-odp-about-card__pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4338ca;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.lp-odp-about-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.lp-odp-about-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(145deg, #4f46e5, #6366f1);
  box-shadow: 0 12px 28px -14px rgba(79, 70, 229, 0.55);
}

.lp-odp-about-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--wh-blue-900);
  margin: 0 0 0.35rem;
}

.lp-odp-about-card__subtitle {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--wh-muted);
  margin: 0;
  max-width: 32rem;
}

.lp-odp-about-card__prose {
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--wh-muted);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.lp-odp-about-card__prose strong {
  color: var(--wh-blue-900);
  font-weight: 600;
}

.lp-odp-about-card__link {
  font-weight: 600;
  color: var(--wh-blue-600);
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.35);
  text-underline-offset: 3px;
}

.lp-odp-about-card__link:hover {
  color: #4338ca;
  text-decoration-color: rgba(67, 56, 202, 0.45);
}

.lp-odp-about-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (min-width: 576px) {
  .lp-odp-about-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.lp-odp-about-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.65rem 1.15rem;
  border-radius: 0.65rem;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px -12px rgba(79, 70, 229, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-odp-about-card__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(67, 56, 202, 0.5);
}

.lp-odp-about-card__cta--ghost {
  color: var(--wh-blue-800);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(99, 102, 241, 0.28);
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.1);
}

.lp-odp-about-card__cta--ghost:hover {
  color: #4338ca;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(99, 102, 241, 0.22);
}

.lp-odp-about-card__cta:focus-visible {
  outline: 2px solid rgba(79, 70, 229, 0.65);
  outline-offset: 3px;
}

.lp-odp-about-card__cta--ghost:focus-visible {
  outline-color: rgba(99, 102, 241, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .lp-odp-about-card__cta:hover,
  .lp-odp-about-card__cta--ghost:hover {
    transform: none;
  }
}

/* iConsentO landing — stakeholder consent (employees, vendors, partners, users) */
.lp-ico-stakeholders {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #faf5ff 38%, #fff 100%);
}

.lp-ico-stakeholders::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 12% 8%, rgba(124, 58, 237, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 20%, rgba(99, 102, 241, 0.08), transparent 50%);
  pointer-events: none;
}

.lp-ico-stakeholders .container {
  position: relative;
  z-index: 1;
}

.lp-ico-stakeholders__header {
  max-width: 42rem;
}

.lp-ico-stakeholders__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d28d9;
  margin-bottom: 0.65rem;
}

.lp-ico-stakeholders__title {
  font-size: clamp(1.45rem, 2.5vw + 0.85rem, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.lp-ico-stakeholders__lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 0;
}

.lp-ico-stake-card {
  position: relative;
  border-radius: 1.2rem;
  padding: 1.45rem 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    0 18px 48px -32px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.lp-ico-stake-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.15rem;
  right: 1.15rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  opacity: 0.95;
}

.lp-ico-stake-card--employees::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.lp-ico-stake-card--vendors::before {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.lp-ico-stake-card--partners::before {
  background: linear-gradient(90deg, #4f46e5, #6366f1);
}

.lp-ico-stake-card--users::before {
  background: linear-gradient(90deg, #c026d3, #e879f9);
}

.lp-ico-stake-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow:
    0 26px 56px -28px rgba(91, 33, 182, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

.lp-ico-stake-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 10px 22px -12px rgba(15, 23, 42, 0.35);
}

.lp-ico-stake-card--employees .lp-ico-stake-card__icon {
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
}

.lp-ico-stake-card--vendors .lp-ico-stake-card__icon {
  background: linear-gradient(145deg, #0f766e, #0d9488);
}

.lp-ico-stake-card--partners .lp-ico-stake-card__icon {
  background: linear-gradient(145deg, #4f46e5, #4338ca);
}

.lp-ico-stake-card--users .lp-ico-stake-card__icon {
  background: linear-gradient(145deg, #a21caf, #c026d3);
}

.lp-ico-stake-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 0.45rem;
}

.lp-ico-stake-card__hint {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 0;
}

.lp-ico-stakeholders__ribbon {
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 245, 255, 0.98) 100%);
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 20px 50px -34px rgba(91, 33, 182, 0.2);
}

.lp-ico-stakeholders__ribbon .col-md-4 {
  position: relative;
}

@media (min-width: 768px) {
  .lp-ico-stakeholders__ribbon .col-md-4:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 1px;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(148, 163, 184, 0.45) 18%,
      rgba(148, 163, 184, 0.45) 82%,
      transparent
    );
  }
}

.lp-ico-stakeholders__ribbon-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.18);
}

@media (min-width: 768px) {
  .lp-ico-stakeholders__ribbon .col-md-4 {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    align-items: start;
  }

  .lp-ico-stakeholders__ribbon-icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
}

.lp-ico-stakeholders__ribbon strong.text-primary {
  color: #5b21b6 !important;
}

@media (prefers-reduced-motion: reduce) {
  .lp-ico-stake-card:hover {
    transform: none;
  }
}

/* iRegu campaign landing — /landing/iregu.html */
.lp-iregu-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0f766e;
}

.lp-iregu-regulators {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
  border-block: 1px solid rgba(13, 148, 136, 0.12);
}

.lp-iregu-regulators__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 1.1rem 0;
}

.lp-iregu-regulators__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wh-muted);
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-iregu-regulators__inner {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem 0.85rem;
  }

  .lp-iregu-regulators__label {
    width: auto;
    text-align: left;
    margin-right: 0.35rem;
  }
}

.lp-iregu-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #134e4a;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: 999px;
  box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.15);
}

.lp-iregu-chip i {
  font-size: 0.85rem;
  color: #0d9488;
}

.lp-iregu-value .lp-value-card__icon {
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  box-shadow: 0 10px 26px -14px rgba(13, 148, 136, 0.5);
}

.lp-iregu-value--ai .lp-value-card__icon {
  background: linear-gradient(145deg, #7c3aed, #6366f1);
  box-shadow: 0 10px 26px -14px rgba(99, 102, 241, 0.45);
}

.lp-iregu-value--live .lp-value-card__icon {
  background: linear-gradient(145deg, #0891b2, #06b6d4);
  box-shadow: 0 10px 26px -14px rgba(8, 145, 178, 0.45);
}

.lp-iregu-value--tasks .lp-value-card__icon {
  background: linear-gradient(145deg, #d97706, #f59e0b);
  box-shadow: 0 10px 26px -14px rgba(217, 119, 6, 0.45);
}

.lp-iregu-value--track .lp-value-card__icon {
  background: linear-gradient(145deg, #059669, #10b981);
  box-shadow: 0 10px 26px -14px rgba(5, 150, 105, 0.45);
}

.lp-iregu-value--workflow .lp-value-card__icon {
  background: linear-gradient(145deg, #2563eb, #3b82f6);
  box-shadow: 0 10px 26px -14px rgba(37, 99, 235, 0.45);
}

.lp-iregu-value--docs .lp-value-card__icon {
  background: linear-gradient(145deg, #e11d48, #f43f5e);
  box-shadow: 0 10px 26px -14px rgba(225, 29, 72, 0.4);
}

.lp-iregu-band {
  position: relative;
  overflow: hidden;
}

.lp-iregu-band--mesh {
  background: linear-gradient(165deg, #f0fdfa 0%, #f8fafc 40%, #f1f5f9 100%);
}

.lp-iregu-band--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 10% 15%, rgba(13, 148, 136, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 42% at 92% 20%, rgba(6, 182, 212, 0.1), transparent 50%);
}

.lp-iregu-band--mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 10%, transparent 72%);
}

.lp-iregu-band .container {
  position: relative;
  z-index: 1;
}

.lp-iregu-ai-card {
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(155deg, #134e4a 0%, #115e59 42%, #0f766e 100%);
  color: #fff;
  border: 1px solid rgba(167, 243, 208, 0.25);
  box-shadow: 0 28px 70px -36px rgba(19, 78, 74, 0.55);
}

.lp-iregu-ai-card__glow {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.35), transparent 68%);
  top: -3rem;
  right: -2rem;
  pointer-events: none;
}

.lp-iregu-ai-card {
  position: relative;
  overflow: hidden;
}

.lp-iregu-ai-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-iregu-ai-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.lp-iregu-ai-list li:last-child {
  margin-bottom: 0;
}

.lp-iregu-ai-list i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #5eead4;
}

.lp-iregu-mock {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px -32px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.lp-iregu-mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.lp-iregu-mock__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #cbd5e1;
}

.lp-iregu-mock__dot:nth-child(1) {
  background: #fb7185;
}

.lp-iregu-mock__dot:nth-child(2) {
  background: #fbbf24;
}

.lp-iregu-mock__dot:nth-child(3) {
  background: #34d399;
}

.lp-iregu-mock__url {
  flex: 1;
  margin-left: 0.5rem;
  font-size: 0.68rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #64748b;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.35rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.lp-iregu-feed {
  padding: 1rem 1rem 1.15rem;
  max-height: 17rem;
  overflow: auto;
}

.lp-iregu-feed-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.lp-iregu-feed-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp-iregu-feed-item__badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 0.3rem;
  align-self: start;
}

.lp-iregu-feed-item__badge--new {
  color: #047857;
  background: #d1fae5;
}

.lp-iregu-feed-item__badge--chg {
  color: #b45309;
  background: #fef3c7;
}

.lp-iregu-feed-item__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.15rem;
}

.lp-iregu-feed-item__meta {
  font-size: 0.68rem;
  color: var(--wh-muted);
}

.lp-iregu-bento {
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .lp-iregu-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .lp-iregu-bento__wide {
    grid-column: span 2;
  }
}

.lp-iregu-bento-card {
  border-radius: calc(var(--wh-radius) + 4px);
  border: 1px solid rgba(13, 148, 136, 0.14);
  background: linear-gradient(165deg, #fff 0%, rgba(240, 253, 250, 0.5) 100%);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 18px 48px -30px rgba(13, 148, 136, 0.18);
  height: 100%;
}

.lp-iregu-bento-card h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lp-iregu-task-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  font-size: 0.82rem;
}

.lp-iregu-task-row:last-child {
  border-bottom: none;
}

.lp-iregu-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.lp-iregu-avatar--a {
  background: linear-gradient(145deg, #0d9488, #14b8a6);
}

.lp-iregu-avatar--b {
  background: linear-gradient(145deg, #0891b2, #2563eb);
}

.lp-iregu-avatar--c {
  background: linear-gradient(145deg, #6366f1, #7c3aed);
}

.lp-iregu-meter {
  height: 0.45rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-top: 0.65rem;
}

.lp-iregu-meter__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
  width: 78%;
}

.lp-iregu-notify-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.lp-iregu-notify {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.lp-iregu-notify i {
  color: #0d9488;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lp-iregu-diff {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-iregu-diff {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-iregu-diff-col {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
  background: #fff;
}

.lp-iregu-diff-col__head {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  background: #f8fafc;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  color: var(--wh-muted);
}

.lp-iregu-diff-col__body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.55;
  padding: 0.75rem 0.85rem;
  color: #334155;
}

.lp-iregu-diff-line {
  display: block;
  padding: 0.1rem 0.35rem;
  margin: 0 -0.35rem 0.2rem;
  border-radius: 0.25rem;
}

.lp-iregu-diff-line:last-child {
  margin-bottom: 0;
}

.lp-iregu-diff-line--rem {
  background: rgba(254, 202, 202, 0.55);
}

.lp-iregu-diff-line--add {
  background: rgba(187, 247, 208, 0.65);
}

.lp-iregu-api {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--wh-radius) + 8px);
  background: linear-gradient(155deg, #0f172a 0%, #134e4a 48%, #115e59 100%);
  color: #e2e8f0;
  padding: 2.25rem 1.5rem;
  border: 1px solid rgba(167, 243, 208, 0.15);
  box-shadow: 0 32px 80px -40px rgba(15, 23, 42, 0.55);
}

.lp-iregu-api::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 100% 0%, rgba(45, 212, 191, 0.12), transparent 55%);
}

.lp-iregu-api .container {
  position: relative;
  z-index: 1;
}

.lp-iregu-api__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-iregu-api__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.85);
  max-width: 40rem;
}

.lp-iregu-api-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-iregu-api-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-iregu-api-card {
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 1.1rem 1rem;
  backdrop-filter: blur(8px);
}

.lp-iregu-api-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 0.65rem;
}

.lp-iregu-api-endpoint {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.65;
  color: #cbd5e1;
  word-break: break-all;
}

.lp-iregu-api-endpoint span {
  display: inline-block;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: #67e8f9;
  margin-right: 0.35rem;
}

.lp-iregu-api-footnote {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.55);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lp-value-card.lp-iregu-value:hover {
    transform: none;
  }
}

/* Product video — iRegu (/products/iregu.html) — teal RegTech palette */
.section-iregu-video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #042f2e 0%, #0f766e 38%, #134e4a 72%, #0c4a6e 100%);
}

.section-iregu-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 50% at 50% -22%, rgba(45, 212, 191, 0.38), transparent 58%),
    radial-gradient(ellipse 50% 42% at 100% 88%, rgba(56, 189, 248, 0.14), transparent 52%),
    radial-gradient(ellipse 48% 40% at 0% 45%, rgba(167, 243, 208, 0.16), transparent 50%);
  pointer-events: none;
}

.section-iregu-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
  pointer-events: none;
}

.section-iregu-video .container {
  position: relative;
  z-index: 1;
}

.section-iregu-video__eyebrow {
  margin-bottom: 0;
}

.section-iregu-video__eyebrow-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(153, 246, 232, 0.95);
}

.section-iregu-video__eyebrow-inner::before,
.section-iregu-video__eyebrow-inner::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(1.25rem, 4vw, 2.25rem);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.95), transparent);
}

.section-iregu-video .section-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.section-iregu-video__lead {
  color: rgba(226, 232, 240, 0.92) !important;
  max-width: 42rem;
}

.section-iregu-video__code {
  font-size: 0.88em;
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #99f6e4;
}

.iregu-video-tags {
  justify-content: center;
}

.iregu-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(240, 253, 250, 0.95);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(45, 212, 191, 0.28);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.iregu-video-tag i {
  font-size: 0.85rem;
  color: rgba(94, 234, 212, 0.95);
}

.iregu-video-shell {
  position: relative;
  padding: 3px;
  border-radius: 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(45, 212, 191, 0.95),
    rgba(13, 148, 136, 0.88),
    rgba(14, 165, 233, 0.45)
  );
  box-shadow:
    0 32px 72px -28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.iregu-video-shell__inner {
  position: relative;
  border-radius: calc(1.4rem - 3px);
  overflow: hidden;
  background: #020617;
}

.iregu-video-corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  z-index: 2;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.iregu-video-corner--tl {
  top: 0.65rem;
  left: 0.65rem;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 0.5rem;
}

.iregu-video-corner--br {
  bottom: 0.65rem;
  right: 0.65rem;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 0.5rem;
}

.video-wrap--iregu {
  border-radius: calc(1.4rem - 3px);
  overflow: hidden;
  box-shadow: none;
  background: #020617;
}

.video-wrap--iregu iframe {
  border: 0;
}

.iregu-video-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
}

.iregu-video-meta i {
  color: rgba(94, 234, 212, 0.95);
  font-size: 1.1rem;
}

.iregu-video-sep {
  color: rgba(148, 163, 184, 0.45);
}

.iregu-video-btn-yt {
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  border: none;
  box-shadow: 0 12px 32px -14px rgba(13, 148, 136, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.iregu-video-btn-yt:hover {
  color: #fff !important;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(20, 184, 166, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .iregu-video-btn-yt:hover {
    transform: none;
  }
}

/* Homepage + OneDPDP landing — DPDP compliance spotlight & hub bento */
.section-dpdp-compliance {
  position: relative;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4ff 48%, #ffffff 100%);
  overflow: hidden;
}

.section-dpdp-compliance::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 50% at 10% 20%, rgba(99, 102, 241, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(37, 99, 235, 0.07), transparent 50%);
  pointer-events: none;
}

.section-dpdp-compliance .container {
  position: relative;
  z-index: 1;
}

.dpdp-compliance-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4338ca;
}

.dpdp-compliance-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.dpdp-compliance-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.95rem;
  line-height: 1.5;
}

.dpdp-compliance-list li:last-child {
  border-bottom: 0;
}

.dpdp-compliance-list__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.12), rgba(37, 99, 235, 0.08));
  color: #4338ca;
  font-size: 1.05rem;
}

.dpdp-compliance-panel {
  position: relative;
  border-radius: 1.35rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.55), rgba(37, 99, 235, 0.35), rgba(251, 191, 36, 0.35));
  box-shadow: 0 24px 60px -28px rgba(49, 46, 129, 0.45);
}

.dpdp-compliance-panel__glow {
  position: absolute;
  inset: -1px;
  border-radius: 1.35rem;
  background: radial-gradient(ellipse 80% 60% at 30% 0%, rgba(251, 191, 36, 0.25), transparent 55%);
  pointer-events: none;
}

.dpdp-compliance-panel__inner {
  position: relative;
  border-radius: calc(1.35rem - 1px);
  padding: 1.75rem 1.5rem;
  background: linear-gradient(155deg, #312e81 0%, #4338ca 42%, #4f46e5 100%);
}

@media (min-width: 992px) {
  .dpdp-compliance-panel__inner {
    padding: 2rem 1.85rem;
  }
}

.section-one-dpdp-hub {
  position: relative;
}

.onedpdp-hub-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.onedpdp-hub-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wh-blue-900);
}

.onedpdp-bento-tile {
  position: relative;
  height: 100%;
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 44px -26px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.onedpdp-bento-tile:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 26px 50px -24px rgba(37, 99, 235, 0.22);
  border-color: rgba(37, 99, 235, 0.18);
}

.onedpdp-bento-tile__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  background: var(--wh-blue-50);
  color: var(--wh-blue-600);
}

.onedpdp-bento-tile--hero {
  background: linear-gradient(165deg, #ffffff 0%, #eef2ff 55%, #e0e7ff 100%);
  border-color: rgba(67, 56, 202, 0.2);
}

.onedpdp-bento-tile--hero .onedpdp-bento-tile__icon {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.2), rgba(37, 99, 235, 0.12));
  color: #4338ca;
}

.onedpdp-bento-tile--dspm .onedpdp-bento-tile__icon {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
}

.onedpdp-bento-tile--consent .onedpdp-bento-tile__icon {
  background: rgba(168, 85, 247, 0.12);
  color: #7c3aed;
}

.onedpdp-bento-tile--tprm .onedpdp-bento-tile__icon {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.onedpdp-bento-tile--pia .onedpdp-bento-tile__icon {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.onedpdp-bento-tile a.stretched-link::after {
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .onedpdp-bento-tile:hover {
    transform: none;
  }
}

/* Product video — OneDPDP (indigo / violet hero palette) */
.section-onedpdp-video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #1e1b4b 0%, #312e81 36%, #1e1b4b 72%, #0f172a 100%);
}

.section-onedpdp-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -18%, rgba(99, 102, 241, 0.45), transparent 58%),
    radial-gradient(ellipse 55% 42% at 100% 85%, rgba(251, 191, 36, 0.12), transparent 52%),
    radial-gradient(ellipse 45% 38% at 0% 55%, rgba(167, 139, 250, 0.14), transparent 50%);
  pointer-events: none;
}

.section-onedpdp-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
  pointer-events: none;
}

.section-onedpdp-video .container {
  position: relative;
  z-index: 1;
}

.section-onedpdp-video__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.95);
}

.section-onedpdp-video .section-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

.section-onedpdp-video__lead {
  color: rgba(226, 232, 240, 0.92) !important;
  max-width: 42rem;
}

.section-onedpdp-video__code {
  font-size: 0.88em;
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(251, 191, 36, 0.28);
  color: #fde68a;
}

.onedpdp-video-tags {
  justify-content: center;
}

.onedpdp-video-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237, 233, 254, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 181, 253, 0.28);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.onedpdp-video-shell {
  position: relative;
  padding: 3px;
  border-radius: 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.95),
    rgba(79, 70, 229, 0.88),
    rgba(251, 191, 36, 0.55)
  );
  box-shadow:
    0 32px 72px -28px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.onedpdp-video-shell__inner {
  position: relative;
  border-radius: calc(1.4rem - 3px);
  overflow: hidden;
  background: #020617;
}

.onedpdp-video-corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  z-index: 2;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.onedpdp-video-corner--tl {
  top: 0.65rem;
  left: 0.65rem;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 0.5rem;
}

.onedpdp-video-corner--br {
  bottom: 0.65rem;
  right: 0.65rem;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 0.5rem;
}

.video-wrap--onedpdp {
  border-radius: calc(1.4rem - 3px);
  overflow: hidden;
  box-shadow: none;
  background: #020617;
}

.video-wrap--onedpdp iframe {
  border: 0;
}

.onedpdp-video-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.88);
}

.onedpdp-video-meta i {
  color: rgba(196, 181, 253, 0.95);
  font-size: 1.1rem;
}

.onedpdp-video-sep {
  color: rgba(148, 163, 184, 0.5);
}

.onedpdp-video-btn-yt {
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(145deg, #4f46e5, #6366f1);
  border: none;
  box-shadow: 0 12px 32px -14px rgba(99, 102, 241, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.onedpdp-video-btn-yt:hover {
  color: #fff !important;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(99, 102, 241, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .onedpdp-video-btn-yt:hover {
    transform: none;
  }
}

/* --- ComplianceForesight case study detail pages (products/case-study-*.html) --- */
.case-study-hero {
  position: relative;
}

.case-study-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.case-study-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.case-study-hero .breadcrumb-item a:hover {
  text-decoration: underline;
}

.case-study-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.62);
}

.case-study-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.95);
  margin-bottom: 0.65rem;
}

.case-study-hero .display-5,
.case-study-hero .display-6 {
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.case-study-hero .lead {
  color: rgba(226, 232, 240, 0.95);
  max-width: 38rem;
}

.case-study-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-study-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.case-study-chip i {
  font-size: 1rem;
  opacity: 0.9;
}

.case-study-hero-panel {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.25rem;
  padding: 1.35rem 1.35rem 1.1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.45);
}

.case-study-hero-panel__title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.9);
  margin-bottom: 1rem;
}

.case-study-hero-kpi {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-hero-kpi:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-study-hero-kpi__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.35);
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.case-study-hero-kpi__text strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.case-study-hero-kpi__text span {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.45;
}

.case-study-at-a-glance {
  border-radius: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, #fff 0%, var(--wh-blue-50) 100%);
  padding: 1.75rem 1.5rem;
}

.case-study-at-a-glance__item {
  text-align: center;
  padding: 0.75rem 0.5rem;
}

.case-study-at-a-glance__item i {
  font-size: 1.75rem;
  color: var(--wh-blue-600);
  margin-bottom: 0.5rem;
  display: block;
}

.case-study-at-a-glance__item h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wh-blue-900);
  margin-bottom: 0.35rem;
}

.case-study-at-a-glance__item p {
  font-size: 0.85rem;
  color: var(--wh-text-muted, #64748b);
  margin-bottom: 0;
  line-height: 1.5;
}

.case-study-section-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.case-study-section-head__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--wh-blue-600), var(--wh-blue-700));
  color: #fff;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 10px 28px -12px rgba(37, 99, 235, 0.55);
}

.case-study-section-head h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--wh-blue-900);
  margin-bottom: 0.25rem;
}

.case-study-section-head p {
  color: var(--wh-text-muted, #64748b);
  margin-bottom: 0;
  max-width: 40rem;
}

.case-study-challenge-card {
  height: 100%;
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  padding: 1.35rem 1.35rem 1.25rem;
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.case-study-challenge-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 16px 40px -28px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.case-study-challenge-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wh-blue-50);
  color: var(--wh-blue-700);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.case-study-challenge-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--wh-blue-950, #0f172a);
  margin-bottom: 0.5rem;
}

.case-study-challenge-card p {
  font-size: 0.92rem;
  color: var(--wh-text-muted, #64748b);
  margin-bottom: 0;
  line-height: 1.65;
}

.case-study-flow {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .case-study-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .case-study-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    align-items: stretch;
  }
}

.case-study-flow__step {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
  background: #fff;
  padding: 1.1rem 0.85rem;
  text-align: center;
}

@media (min-width: 992px) {
  .case-study-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.35rem;
    height: 2px;
    background: linear-gradient(90deg, var(--wh-blue-300), var(--wh-blue-500));
    z-index: 1;
  }
}

.case-study-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: var(--wh-blue-600);
  margin-bottom: 0.5rem;
}

.case-study-flow__step i {
  font-size: 1.35rem;
  color: var(--wh-blue-600);
  display: block;
  margin-bottom: 0.35rem;
}

.case-study-flow__step strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--wh-blue-900);
  line-height: 1.35;
}

.case-study-solution-card {
  height: 100%;
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 4px 24px -16px rgba(15, 23, 42, 0.12);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.case-study-solution-card:hover {
  box-shadow: 0 20px 48px -28px rgba(37, 99, 235, 0.25);
  transform: translateY(-3px);
}

.case-study-solution-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #fff;
}

.case-study-solution-card__icon--a {
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
}
.case-study-solution-card__icon--b {
  background: linear-gradient(145deg, #0891b2, #0e7490);
}
.case-study-solution-card__icon--c {
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
}
.case-study-solution-card__icon--d {
  background: linear-gradient(145deg, #ea580c, #c2410c);
}

.case-study-solution-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--wh-blue-950, #0f172a);
}

.case-study-solution-card p {
  font-size: 0.9rem;
  color: var(--wh-text-muted, #64748b);
  margin-bottom: 0;
  line-height: 1.65;
}

.case-study-outcome {
  border-radius: 1.15rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  background: linear-gradient(165deg, #f0fdf4 0%, #fff 55%);
  padding: 1.5rem 1.35rem;
  height: 100%;
}

.case-study-outcome__icon {
  color: #16a34a;
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.case-study-outcome h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 0.5rem;
}

.case-study-outcome p {
  font-size: 0.92rem;
  color: #3f6212;
  margin-bottom: 0;
  line-height: 1.65;
  opacity: 0.92;
}

.case-study-related-card {
  display: block;
  height: 100%;
  border-radius: 1.1rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: #fff;
  padding: 1.35rem 1.35rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.case-study-related-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 44px -28px rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
  color: inherit;
}

.case-study-related-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--wh-blue-50);
  color: var(--wh-blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.case-study-related-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--wh-blue-900);
  margin-bottom: 0.35rem;
}

.case-study-related-card p {
  font-size: 0.88rem;
  color: var(--wh-text-muted, #64748b);
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.case-study-related-card__cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wh-blue-600);
}

.case-study-cta-panel {
  border-radius: 1.25rem;
  background: linear-gradient(120deg, #fff, var(--wh-blue-50));
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 2rem 1.75rem;
  text-align: center;
}

.case-study-cta-panel h2 {
  font-weight: 800;
  color: var(--wh-blue-900);
  margin-bottom: 0.5rem;
}

.case-study-cta-panel p {
  color: var(--wh-text-muted, #64748b);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .case-study-challenge-card:hover,
  .case-study-solution-card:hover,
  .case-study-related-card:hover {
    transform: none;
  }
}

/* Legal pages (terms, privacy) — align with site container, full horizontal width */
.wh-legal-hero {
  width: 100%;
  background: linear-gradient(180deg, var(--wh-blue-50) 0%, var(--wh-white) 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.wh-legal-body {
  width: 100%;
  flex: 1 1 auto;
}

.wh-legal-prose {
  line-height: 1.75;
  font-size: 0.9375rem;
}

.wh-legal-prose h2 {
  color: var(--wh-text);
}

@media (min-width: 1200px) {
  .wh-legal-prose {
    font-size: 1rem;
  }
}

/* Site-wide AI assistant (all pages via main.js) */
.wh-assistant {
  --wh-asst-z: 1070;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: var(--wh-asst-z);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

.wh-assistant-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.85rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wh-blue-500) 0%, #1d4ed8 55%, var(--wh-blue-600) 100%);
  color: var(--wh-white);
  box-shadow: var(--wh-shadow-sm), 0 8px 24px -6px rgba(15, 23, 42, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wh-assistant-fab:hover,
.wh-assistant-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(37, 99, 235, 0.45);
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.wh-assistant-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(59, 130, 246, 0.45);
  animation: wh-asst-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wh-asst-pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.12);
    opacity: 0;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

.wh-assistant-fab i {
  font-size: 1.25rem;
}

.wh-assistant-fab__label {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

.wh-assistant-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(30rem, calc(100vw - 2rem));
  max-height: min(34rem, calc(100vh - 6rem));
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  background: var(--wh-white);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 24px 60px -16px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.wh-assistant-panel[hidden] {
  display: none !important;
}

.wh-assistant-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(180deg, var(--wh-blue-50) 0%, var(--wh-white) 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.wh-assistant-panel__brand {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  min-width: 0;
}

.wh-assistant-panel__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--wh-blue-500), #1d4ed8);
  color: var(--wh-white);
  flex-shrink: 0;
}

.wh-assistant-panel__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--wh-text);
  line-height: 1.25;
}

.wh-assistant-panel__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--wh-muted);
  line-height: 1.35;
}

.wh-assistant-panel__close {
  border: none;
  background: rgba(15, 23, 42, 0.06);
  color: var(--wh-muted);
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.wh-assistant-panel__close:hover,
.wh-assistant-panel__close:focus-visible {
  background: rgba(37, 99, 235, 0.1);
  color: var(--wh-blue-600);
}

.wh-assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem 0;
}

.wh-assistant-suggestions[hidden] {
  display: none !important;
  padding: 0;
}

.wh-assistant-chip {
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: var(--wh-blue-50);
  color: var(--wh-blue-700);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
}

.wh-assistant-chip:hover,
.wh-assistant-chip:focus-visible {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

.wh-assistant-messages {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 8rem;
}

.wh-assistant-msg {
  max-width: 92%;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.wh-assistant-msg p {
  margin: 0 0 0.35rem;
}

.wh-assistant-msg p:last-child {
  margin-bottom: 0;
}

.wh-assistant-msg ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.wh-assistant-msg li {
  margin-bottom: 0.2rem;
}

.wh-assistant-msg--user {
  align-self: flex-end;
  background: var(--wh-blue-500);
  color: var(--wh-white);
  padding: 0.55rem 0.7rem;
  border-radius: 0.85rem 0.85rem 0.2rem 0.85rem;
}

.wh-assistant-msg--bot {
  align-self: flex-start;
  background: var(--wh-surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--wh-text);
  padding: 0.55rem 0.7rem;
  border-radius: 0.85rem 0.85rem 0.85rem 0.2rem;
}

.wh-assistant-msg--typing {
  padding: 0.65rem 0.85rem;
}

.wh-assistant-typing {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

.wh-assistant-typing span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--wh-blue-400);
  animation: wh-asst-dot 1s ease-in-out infinite;
}

.wh-assistant-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.wh-assistant-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes wh-asst-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.wh-assistant-contact-intro {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--wh-muted);
  margin: 0.5rem 0 0;
}

.wh-assistant-partner-note {
  margin: 0.75rem 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.wh-assistant-partner-note p {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--wh-blue-900);
}

.wh-assistant-partner-note p:last-child,
.wh-assistant-partner-note__foot {
  margin-bottom: 0;
}

.wh-assistant-partner-note__lead {
  font-weight: 500;
}

.wh-assistant-partner-note__foot {
  margin-top: 0.5rem !important;
  font-size: 0.75rem !important;
  color: var(--wh-muted) !important;
}

.wh-assistant-flow-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.15rem;
  margin: 0.35rem 0 0.15rem;
}

.wh-assistant-flow-chain__step {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--wh-blue-800);
  white-space: nowrap;
}

.wh-assistant-flow-chain__arrow {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--wh-blue-500);
  line-height: 1;
}

.wh-assistant-fit-steps {
  margin: 0.5rem 0 0.65rem;
  padding-left: 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--wh-blue-900);
}

.wh-assistant-fit-steps li {
  margin-bottom: 0.45rem;
}

.wh-assistant-fit-steps li:last-child {
  margin-bottom: 0;
}

.wh-assistant-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.wh-assistant-contact-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.wh-assistant-contact-card:hover,
.wh-assistant-contact-card:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
}

.wh-assistant-contact-card--support {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.32);
}

.wh-assistant-contact-card--support:hover,
.wh-assistant-contact-card--support:focus-visible {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-color: rgba(16, 185, 129, 0.5);
}

.wh-assistant-contact-card--support .wh-assistant-contact-card__value {
  color: #047857;
}

.wh-assistant-contact-card--email {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.06) 100%);
  border-color: rgba(37, 99, 235, 0.28);
}

.wh-assistant-contact-card--email:hover,
.wh-assistant-contact-card--email:focus-visible {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-color: rgba(37, 99, 235, 0.45);
}

.wh-assistant-contact-card--form {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.03) 100%);
  border-color: rgba(15, 23, 42, 0.12);
}

.wh-assistant-contact-card--form:hover,
.wh-assistant-contact-card--form:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

.wh-assistant-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--wh-white);
  color: var(--wh-blue-600);
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 4px 12px -4px rgba(37, 99, 235, 0.35);
}

.wh-assistant-contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.wh-assistant-contact-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wh-muted);
}

.wh-assistant-contact-card__value {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--wh-blue-600);
  line-height: 1.25;
  word-break: break-word;
}

.wh-assistant-contact-card--email .wh-assistant-contact-card__value {
  color: var(--wh-blue-700);
}

.wh-assistant-usecases {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.wh-assistant-usecase-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.65rem;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.04) 100%);
  border: 1px solid rgba(37, 99, 235, 0.22);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.wh-assistant-usecase-card:hover,
.wh-assistant-usecase-card:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16) 0%, rgba(37, 99, 235, 0.08) 100%);
  border-color: rgba(37, 99, 235, 0.4);
}

.wh-assistant-usecase-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--wh-white);
  color: var(--wh-blue-600);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.wh-assistant-usecase-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.wh-assistant-usecase-card__product {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--wh-blue-700);
  line-height: 1.25;
}

.wh-assistant-usecase-card__hint {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--wh-muted);
}

.wh-assistant-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.wh-assistant-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wh-blue-600);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.wh-assistant-link:hover,
.wh-assistant-link:focus-visible {
  background: rgba(37, 99, 235, 0.14);
  color: var(--wh-blue-700);
}

.wh-assistant-form {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem 0.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--wh-white);
}

.wh-assistant-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.65rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.8125rem;
}

.wh-assistant-input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.wh-assistant-send {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.65rem;
  background: var(--wh-blue-500);
  color: var(--wh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.wh-assistant-send:hover,
.wh-assistant-send:focus-visible {
  background: #1d4ed8;
}

.wh-assistant--open .wh-assistant-fab__label {
  display: none;
}

@media (max-width: 575.98px) {
  .wh-assistant {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .wh-assistant-fab {
    padding: 0.85rem;
  }

  .wh-assistant-fab__label {
    display: none;
  }

  .wh-assistant-panel {
    width: min(26rem, calc(100vw - 1.5rem));
  }
}

/* Homepage FAQ — Governance OS knowledge cards */
.home-faq {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  background: linear-gradient(180deg, #f8faff 0%, #f1f5f9 48%, #ffffff 100%);
}

.home-faq__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}

.home-faq__glow {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(56rem, 120vw);
  height: 20rem;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.home-faq__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-blue-600);
}

.home-faq-card {
  --faq-accent-a: #2563eb;
  --faq-accent-b: #4f46e5;
  position: relative;
  padding: 1.5rem 1.4rem 1.4rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    0 14px 42px -20px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-faq-card::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--faq-accent-a), var(--faq-accent-b));
}

.home-faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow:
    0 22px 50px -18px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.home-faq-card--os {
  --faq-accent-a: #2563eb;
  --faq-accent-b: #6366f1;
}

.home-faq-card--suite {
  --faq-accent-a: #7c3aed;
  --faq-accent-b: #a855f7;
}

.home-faq-card--grc {
  --faq-accent-a: #0891b2;
  --faq-accent-b: #2563eb;
}

.home-faq-card--contact {
  --faq-accent-a: #059669;
  --faq-accent-b: #0d9488;
}

.home-faq-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.home-faq-card__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--wh-blue-600);
  opacity: 0.75;
}

.home-faq-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--faq-accent-a);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 8px 20px -12px rgba(37, 99, 235, 0.35);
}

.home-faq-card__q {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--wh-blue-900);
  margin: 0 0 0.65rem;
}

.home-faq-card__a {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--wh-muted);
}

.home-faq-card__a a {
  font-weight: 600;
  text-decoration: none;
}

.home-faq-card__a a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .home-faq-card {
    padding: 1.25rem 1.15rem 1.15rem;
  }
}
