﻿/*
Theme Name: eBuilder Security
Theme URI: https://ebuildersecurity.com
Author: eBuilder Security
Description: eBuilder Security — cybersecurity services website theme.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: ebs
*/

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════════ */

:root {

  /* ── Colors: Primary ─────────────────────────────────────── */
  --color-teal:         #40AACC;
  --color-violet:       #8040E0;
  --color-dark:         #202020;
  --color-black:        #242324;
  --color-white:        #FFFFFF;

  /* ── Colors: Secondary ───────────────────────────────────── */
  --color-teal-deep:    #056685;
  --color-teal-light:   #B0DCEB;
  --color-violet-deep:  #461697;
  --color-violet-soft:  #CDBFF5;
  --color-gray-soft:    #F2F5F7;
  --color-gray-neutral: #E4E8EA;

  /* ── Typography ──────────────────────────────────────────── */
  --font-heading: 'Public Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --fs-h1: clamp(28px, 4vw, 40px);
  --fs-h2: clamp(24px, 3.5vw, 34px);
  --fs-h3: clamp(20px, 2.5vw, 24px);
  --fs-h4: clamp(18px, 2vw, 20px);
  --fs-body:  16px;
  --fs-quote: 18px;

  --lh-h1:    58px;
  --lh-h2:    48px;
  --lh-h3:    32px;
  --lh-h4:    32px;
  --lh-body:  32px;
  --lh-quote: 36px;

  --fw-heading: 600;
  --fw-body:    400;

  /* ── Layout ──────────────────────────────────────────────── */
  --container-width: 1200px;

  /* ── Radii ───────────────────────────────────────────────── */
  --radius: 15px;
  --r-sm:   6px;

}

/* ══════════════════════════════════════════════════════════════
   BASE STYLES & UTILITIES
══════════════════════════════════════════════════════════════ */

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
  color: var(--color-dark);
  letter-spacing: 0.5px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading);
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-h4); }

/* Padding top */
.p-t-0   { padding-top:   0    !important; }
.p-t-5   { padding-top:   5px  !important; }
.p-t-10  { padding-top:  10px  !important; }
.p-t-15  { padding-top:  15px  !important; }
.p-t-20  { padding-top:  20px  !important; }
.p-t-25  { padding-top:  25px  !important; }
.p-t-30  { padding-top:  30px  !important; }
.p-t-40  { padding-top:  40px  !important; }
.p-t-50  { padding-top:  50px  !important; }
.p-t-60  { padding-top:  60px  !important; }
.p-t-70  { padding-top:  70px  !important; }
.p-t-80  { padding-top:  80px  !important; }
.p-t-100 { padding-top: 100px  !important; }

/* Padding bottom */
.p-b-0   { padding-bottom:   0    !important; }
.p-b-5   { padding-bottom:   5px  !important; }
.p-b-10  { padding-bottom:  10px  !important; }
.p-b-15  { padding-bottom:  15px  !important; }
.p-b-20  { padding-bottom:  20px  !important; }
.p-b-25  { padding-bottom:  25px  !important; }
.p-b-30  { padding-bottom:  30px  !important; }
.p-b-40  { padding-bottom:  40px  !important; }
.p-b-50  { padding-bottom:  50px  !important; }
.p-b-60  { padding-bottom:  60px  !important; }
.p-b-70  { padding-bottom:  70px  !important; }
.p-b-80  { padding-bottom:  80px  !important; }
.p-b-100 { padding-bottom: 100px  !important; }

/* Margin bottom */
.m-b-10  { margin-bottom:  10px  !important; }
.m-b-20  { margin-bottom:  20px  !important; }
.m-b-30  { margin-bottom:  30px  !important; }
.m-b-40  { margin-bottom:  40px  !important; }
.m-b-50  { margin-bottom:  50px  !important; }
.m-b-60  { margin-bottom:  60px  !important; }

.no-padding { padding: 0 !important; }
.no-margin  { margin:  0 !important; }

/* ── Buttons ─────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 25px;
  border-radius: 9px;
  background-color: var(--color-violet);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: background-color 0.18s;
}

.btn-primary:hover {
  background-color: var(--color-violet-deep);
  color: var(--color-white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  background-color: transparent;
  color: var(--color-violet);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-violet);
  white-space: nowrap;
  transition: background-color 0.18s, color 0.18s;
}

.btn-outline:hover {
  background-color: var(--color-violet);
  color: var(--color-white);
}

/* ── Link arrow ─────────────────────────────────────────── */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease, gap 0.15s ease;
}

.link-arrow:hover { gap: 10px; }
.link-arrow svg   { flex-shrink: 0; width: 18px; height: 18px; }

/* ── Form fields ─────────────────────────────────────────── */

.form-field {
  position: relative;
  margin-bottom: 12px;
}

.form-field__input {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field__input::placeholder { color: rgba(32, 32, 32, 0.40); }
.form-field__input:focus         { border-color: var(--color-teal); }

.form-field--error .form-field__input { border-color: #d94040; }

.form-field__error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #d94040;
  margin-top: 5px;
  padding-left: 2px;
}

.form-field--error .form-field__error { display: block; }

/* ══════════════════════════════════════════════════════════════
   SECTION STYLES
══════════════════════════════════════════════════════════════ */

/* ── Header ticker ───────────────────────────────────────────── */

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes dot-pulse {
  0%   { box-shadow: 0 0 6px rgba(176, 220, 235, 0.95), 0 0 0 0   rgba(176, 220, 235, 0.55); }
  70%  { box-shadow: 0 0 6px rgba(176, 220, 235, 0.55), 0 0 0 7px rgba(176, 220, 235, 0);    }
  100% { box-shadow: 0 0 6px rgba(176, 220, 235, 0.55), 0 0 0 7px rgba(176, 220, 235, 0);    }
}

.header-ticker {
  background-color: var(--color-teal-deep);
  display: flex;
  align-items: stretch;
  height: 38px;
  overflow: hidden;
}

.header-ticker__wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.header-ticker__wrap::before,
.header-ticker__wrap::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.header-ticker__wrap::before {
  left: 0;
  width: 40px;
  background: linear-gradient(90deg, #056685 0%, rgba(5, 102, 133, 0) 100%);
}

.header-ticker__wrap::after {
  right: 0;
  width: 100px;
  background: linear-gradient(90deg, rgba(5, 102, 133, 0) 0%, #056685 100%);
}

.header-ticker__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 100s linear infinite;
}

.header-ticker__track:hover { animation-play-state: paused; }

.header-ticker__item {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 1);
  padding-right: 56px;
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.22);
  font-size: 13px;
  padding-right: 56px;
}

.ticker-date { color: #60bfde; font-weight: 500; }

.header-ticker__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-violet-deep) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: -10px 0 24px rgba(5, 16, 26, 0.22);
  transition: filter 0.2s ease;
}

.header-ticker__badge:hover,
.header-ticker__badge:focus-visible {
  filter: brightness(1.12);
  color: var(--color-white);
}

.header-ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-teal-light);
  flex-shrink: 0;
  animation: dot-pulse 2.4s ease-out infinite;
}

#main { overflow-x: hidden; }

/* ── Site nav ────────────────────────────────────────────── */

.site-nav {
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding-top: 0;
  padding-bottom: 0;
}

.site-nav__logo { height: 60px; width: auto; }

.site-nav .navbar-nav { gap: 15px; }

.site-nav .nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  padding: 26px 0;
  transition: color 0.15s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus { color: var(--color-violet); }

.site-nav .nav-link.dropdown-toggle::after { margin-left: 5px; vertical-align: middle; opacity: 0.5; }

.site-nav .dropdown-menu {
  border: 1px solid var(--color-gray-neutral);
  border-radius: var(--r-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  margin-top: 0;
}

.site-nav .dropdown-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-dark);
  padding: 8px 20px;
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
  color: var(--color-violet);
  background-color: var(--color-gray-soft);
}

.site-nav__lang-btn {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-dark);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
}

.site-nav__lang-btn:hover { color: var(--color-violet); }
.site-nav__lang-btn.dropdown-toggle::after { margin-left: 3px; opacity: 0.5; }

/* ── Language switcher dropdown ───────────────────────────── */
.site-nav__lang-menu.dropdown-menu {
  min-width: 184px;
  padding: 6px;
  border: 1px solid var(--color-gray-neutral);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(10, 28, 34, 0.16);
}

.site-nav__lang-menu .site-nav__lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  transition: background-color 0.15s, color 0.15s;
}

.site-nav__lang-menu .site-nav__lang-item:hover,
.site-nav__lang-menu .site-nav__lang-item:focus {
  background-color: var(--color-gray-soft);
  color: var(--color-violet);
}

.site-nav__lang-menu .site-nav__lang-item.active {
  background-color: rgba(128, 64, 224, 0.10);
  color: var(--color-violet);
  font-weight: 600;
}

.site-nav__flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(10, 28, 34, 0.12);
}

.site-nav__lang-name { flex: 1 1 auto; white-space: nowrap; }

.site-nav__lang-check { flex-shrink: 0; color: var(--color-violet); }
.site-nav__lang-item:not(.active) .site-nav__lang-check { display: none; }

@media (min-width: 992px) {
  .site-nav .nav-item.dropdown .dropdown-menu,
  .site-nav .dropdown .dropdown-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .site-nav .nav-item.dropdown:hover .dropdown-menu,
  .site-nav .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
}

/* ── Mega Menu ───────────────────────────────────────────── */

.mega-menu-wrapper { position: static !important; }

.mega-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 3px;
}

.mega-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-top: 2px solid var(--color-teal-light);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
  z-index: 1050;
}

.mega-menu-wrapper:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mega-menu__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 260px;
    gap: 0 48px;
}

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

.mega-menu__inner.mega-menu__inner--resources {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 36px;
}

/* ── Mega Menu: Inline latest-story line ─────────────────── */

.mega-latest-line {
  display: block;
  padding: 3px 8px 11px 36px;
  text-decoration: none;
}

.mega-latest-line__header {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin-bottom: 4px;
}

.mega-latest-line__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mega-latest-line--news    .mega-latest-line__dot { background: var(--color-teal);   animation: mega-dot-wave-teal 2.2s ease-out infinite; }
.mega-latest-line--article .mega-latest-line__dot { background: var(--color-violet); animation: mega-dot-wave-violet 2.2s ease-out infinite; }

@keyframes mega-dot-wave-teal {
  0%   { box-shadow: 0 0 0 0   rgba(64,  170, 204, 0.65); }
  70%  { box-shadow: 0 0 0 7px rgba(64,  170, 204, 0); }
  100% { box-shadow: 0 0 0 7px rgba(64,  170, 204, 0); }
}
@keyframes mega-dot-wave-violet {
  0%   { box-shadow: 0 0 0 0   rgba(128, 64, 224, 0.65); }
  70%  { box-shadow: 0 0 0 7px rgba(128, 64, 224, 0); }
  100% { box-shadow: 0 0 0 7px rgba(128, 64, 224, 0); }
}

.mega-latest-line__badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0 10px;
}
.mega-latest-line--news    .mega-latest-line__badge { color: var(--color-teal-deep); }
.mega-latest-line--article .mega-latest-line__badge { color: var(--color-violet); }

.mega-latest-line__reel {
  display: block;
  position: relative;
  height: 40px;
  overflow: hidden;
}

.mega-reel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  opacity: 0;
  animation: mega-headline-fade 10s ease-in-out infinite;
  animation-play-state: paused;
}
.mega-reel__slide--1 { animation-delay: 0s; }
.mega-reel__slide--2 { animation-delay: 2s; }
.mega-reel__slide--3 { animation-delay: 4s; }
.mega-reel__slide--4 { animation-delay: 6s; }
.mega-reel__slide--5 { animation-delay: 8s; }

@keyframes mega-headline-fade {
  0%    { opacity: 0; }
  3%    { opacity: 1; }  /* 0.3s fade in  */
  17%   { opacity: 1; }  /* 1.4s hold     */
  20%   { opacity: 0; }  /* 0.3s fade out */
  100%  { opacity: 0; }
}

/* Start playing when the mega menu opens */
.mega-menu-wrapper:hover .mega-reel__slide {
  animation-play-state: running;
}
/* Pause on the headline itself so users can read it */
.mega-latest-line:hover .mega-reel__slide {
  animation-play-state: paused;
}

.mega-reel__title {
  font-family: var(--font-body);
  font-size: 12px;
  color: #5e6b76;
  line-height: 20px;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}
.mega-latest-line--news:hover    .mega-reel__title { color: var(--color-teal-deep); }
.mega-latest-line--article:hover .mega-reel__title { color: var(--color-violet); }

.mega-reel__date {
  font-family: var(--font-body);
  font-size: 10px;
  color: #9faab3;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .mega-latest-line__dot { animation: none; }
  .mega-reel__slide { animation: none !important; opacity: 0; }
  .mega-menu-wrapper:hover .mega-reel__slide--1 { opacity: 1; }
}

/* ── Mega Menu: Breach checker panel ─────────────────────── */

.mega-breach {
  background: linear-gradient(145deg, #9a6aef 0%, var(--color-violet) 55%, var(--color-violet-deep) 100%);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.mega-breach::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -55px;
  right: -55px;
  pointer-events: none;
}

.mega-breach::after {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -35px;
  left: -25px;
  pointer-events: none;
}

.mega-breach > * { position: relative; z-index: 1; }

.mega-breach__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  margin: 0;
}

.mega-breach__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

.mega-breach__sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.5;
  margin: 0;
}

.mega-breach form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-breach__input-wrap { position: relative; }

.mega-breach__input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.48);
  pointer-events: none;
  display: flex;
}

.mega-breach__input {
  width: 100%;
  height: 38px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  padding: 0 12px 0 33px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
}
.mega-breach__input::placeholder { color: rgba(255, 255, 255, 0.38); }
.mega-breach__input:focus        { border-color: rgba(255, 255, 255, 0.50); background: rgba(255, 255, 255, 0.20); }
.mega-breach__input.is-invalid   { border-color: #ff8a8a; }

.mega-breach__btn {
  width: 100%;
  height: 36px;
  background: #fff;
  color: var(--color-violet-deep);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s, transform 0.12s;
}
.mega-breach__btn:hover { background: #ede9ff; transform: translateY(-1px); }

.mega-breach__result {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.mega-breach__result a { color: #c9aaff; }

.mega-breach__tool-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-top: auto;
  padding-top: 4px;
  transition: color 0.15s, gap 0.15s;
}
.mega-breach__tool-link:hover { color: #fff; gap: 8px; }

.mega-breach__gdpr {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}
.mega-breach__gdpr a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mega-breach__gdpr a:hover { color: #fff; }

.mega-menu__col-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-teal);
}

.mega-menu__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 9px 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
    margin-bottom: 10px;
	margin-left:-8px;
}

.mega-menu__item:hover { background: var(--color-gray-soft); text-decoration: none; }

.mega-menu__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(64, 170, 204, 0.12) 0%, rgba(128, 64, 224, 0.07) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-teal-deep);
  transition: background 0.15s, color 0.15s;
}

.mega-menu__item:hover .mega-menu__icon {
  background: linear-gradient(135deg, rgba(128, 64, 224, 0.14) 0%, rgba(64, 170, 204, 0.08) 100%);
  color: var(--color-violet);
}

.mega-menu__item-body { display: flex; flex-direction: column; gap: 2px; }

.mega-menu__item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    transition: color 0.15s;
}

.mega-menu__item:hover .mega-menu__item-title { color: var(--color-violet); }

.mega-menu__item-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #000000cc;
    line-height: 1.45;
}

.mega-menu__featured {
  background-image: linear-gradient(120deg, #A1E8FF 0%, var(--color-teal) 76%, var(--color-teal) 100%);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.38s ease;
}

.mega-menu__featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(310deg, #A1E8FF 0%, var(--color-teal) 76%, var(--color-teal) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  border-radius: inherit;
}

.mega-menu__featured:hover { box-shadow: 0px 12px 40px 0px rgba(5, 102, 133, 0.25); }
.mega-menu__featured:hover::before { opacity: 1; }
.mega-menu__featured > * { position: relative; z-index: 1; }

.mega-menu__feat-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  opacity: 0.80;
}

.mega-menu__feat-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  margin: 0;
}

.mega-menu__feat-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  opacity: 0.72;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.mega-menu__feat-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  margin-top: 6px;
  transition: background-color 0.2s ease, gap 0.15s;
}

.mega-menu__feat-link:hover { background-color: var(--color-black); color: var(--color-white); gap: 10px; }

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  background-color: #ecf2f2;
  background-image: url(img/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  overflow: hidden;
}

.hero--inner { background-image: none; }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@keyframes ring-pulse {
  0%   { transform: scale(0.4); opacity: 0.30; }
  100% { transform: scale(3.2); opacity: 0;    }
}

.hero__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.hero__ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  animation: ring-pulse 3.6s ease-out infinite;
}

.hero__ring--1 { animation-delay: 0s;   }
.hero__ring--2 { animation-delay: 1.2s; }
.hero__ring--3 { animation-delay: 2.4s; }

.hero__monitor-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: perspective(3000px) rotateY(-2deg);
  transform-origin: right bottom;
}

.hero__monitor { width: 100%; display: block; }

/* ── Hero Screen Overlay ─────────────────────────── */

.hero__screen {
  position: absolute;
  top: 9%;
  left: 5%;
  right: 5%;
  bottom: 32%;
  background: linear-gradient(160deg, #0e2535 0%, #0c1e2a 45%, #071318 100%);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 9px 10px 8px;
  gap: 7px;
  animation: soc-screen-boot 1.4s ease both;
}

.soc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
  animation: soc-bar-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.soc-bar__left  { display: flex; align-items: center; gap: 9px; }

.soc-bar__dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  flex-shrink: 0;
  animation: soc-pulse-dot 1.8s ease-in-out infinite;
}

.soc-bar__dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--color-teal);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: soc-ripple 2s ease-out 0.4s infinite;
}

.soc-bar__live {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #22c55e;
}

.soc-bar__accent { color: var(--color-teal); font-weight: 500; }

.soc-bar__right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.soc-bar__clock {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.soc-footer .soc-bar__clock { margin-left: auto; }

.soc-bar__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.soc-bar__pause:hover { background: rgba(64, 170, 204, 0.18); color: var(--color-teal); }
.soc-bar__pause.is-paused { background: rgba(234, 179, 8, 0.15); color: #fbbf24; }
.soc-bar__pause .soc-pause__icon-play               { display: none; }
.soc-bar__pause.is-paused .soc-pause__icon-pause    { display: none; }
.soc-bar__pause.is-paused .soc-pause__icon-play     { display: block; }

/* Incident detail drawer */
.soc-detail {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a2218 0%, #071813 100%);
  padding: 9px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(102%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 20;
}

.soc-detail.is-visible { transform: translateX(0); }

.soc-detail__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
  margin-bottom: 7px;
}

.soc-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-body);
  font-size: 9px;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.soc-detail__back:hover { color: rgba(255, 255, 255, 0.85); }

.soc-detail__id {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.06em;
}

.soc-detail__divider { height: 1px; background: rgba(255, 255, 255, 0.06); margin: 6px 0; }

.soc-detail__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.4;
}

.soc-detail__rows { display: flex; flex-direction: column; gap: 5px; margin-top: 2px; flex: 1; }

.soc-detail__row { display: flex; align-items: baseline; gap: 6px; }

.soc-detail__label {
  font-family: var(--font-body);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
  width: 40px;
}

.soc-detail__val { font-family: var(--font-body); font-size: 10px; color: rgba(255, 255, 255, 0.7); }

.soc-detail__cta {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--color-teal);
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgba(64, 170, 204, 0.14);
  transition: color 0.15s;
}

.soc-detail__cta:hover { color: var(--color-teal-light); }

/* Event feed */
.soc-feed { flex: 1; display: flex; flex-direction: column; gap: 4px; overflow: hidden; }

.soc-feed__item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  padding: 7px 7px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.soc-feed__item:hover { background: rgba(64, 170, 204, 0.08); }
.soc-feed__item:hover .soc-feed__text { color: rgba(255, 255, 255, 0.92); }

.soc-feed__item:nth-child(1) { animation: soc-log-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.0s both; }
.soc-feed__item:nth-child(2) { animation: soc-log-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both; }
.soc-feed__item:nth-child(3) { animation: soc-log-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.4s both; }
.soc-feed__item:nth-child(4) { animation: soc-log-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.6s both; }
.soc-feed__item:nth-child(5) { animation: soc-log-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.8s both; }

.soc-feed__item--new { animation: soc-log-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both !important; }

.soc-feed__badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0px 9px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-left: auto;
  line-height: 20px;
}

.soc-feed__badge--high         { background: rgba(239,  68,  68, 0.18); color: #f87171; }
.soc-feed__badge--med          { background: rgba(245, 158,  11, 0.18); color: #fbbf24; }
.soc-feed__badge--low          { background: rgba( 59, 130, 246, 0.18); color: #93c5fd; }
.soc-feed__badge--critical     { background: rgba(220,  38,  38, 0.28); color: #fca5a5; }
.soc-feed__badge--aidr         { background: rgba(128,  64, 224, 0.24); color: #c4b5fd; }
.soc-feed__badge--report-ready { background: rgba(  6, 182, 212, 0.22); color: #67e8f9; }
.soc-feed__badge--resolved     { background: rgba( 34, 197,  94, 0.22); color: #86efac; }
.soc-feed__badge--high-risk    { background: rgba(234,  88,  12, 0.24); color: #fdba74; }
.soc-feed__badge--monitoring   { background: rgba( 59, 130, 246, 0.22); color: #7dd3fc; }
.soc-feed__badge--investigating{ background: rgba(245, 158,  11, 0.24); color: #fcd34d; }
.soc-feed__badge--deployed     { background: rgba( 16, 185, 129, 0.22); color: #6ee7b7; }

.soc-feed__text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* SOC Footer */
.soc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 7px;
  border-top: 1px solid rgba(34, 197, 94, 0.15);
  animation: soc-footer-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 2.1s both;
}

.soc-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #22c55e;
  flex-shrink: 0;
}

.soc-footer__rule { width: 1px; height: 10px; background: rgba(255, 255, 255, 0.12); flex-shrink: 0; margin: 0 2px; }
.soc-footer__meta { font-family: var(--font-body); font-size: 11px; color: rgba(255, 255, 255, 0.35); }
.soc-footer__count { color: var(--color-teal); font-weight: 700; }

.soc-footer__pulse {
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-teal);
  flex-shrink: 0;
  animation: soc-pulse-dot 1.8s ease-in-out infinite;
}

.soc-footer__pulse::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  border: 1.5px solid var(--color-teal);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: soc-ripple 2s ease-out 0.4s infinite;
}

/* SOC Keyframes */
@keyframes soc-screen-boot {
  0%        { opacity: 0; }
  10%       { opacity: 0.06; }
  16%       { opacity: 0; }
  28%       { opacity: 0.85; }
  34%       { opacity: 0.55; }
  46%, 100% { opacity: 1; }
}

@keyframes soc-bar-in {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes soc-log-in {
  0%   { opacity: 0; transform: translateX(-16px); }
  60%  { opacity: 1; transform: translateX(3px); }
  80%  { transform: translateX(-1px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes soc-footer-in {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes soc-ripple {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(3.8); opacity: 0;   }
}

@keyframes soc-pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__ring,
  .hero__screen,
  .soc-bar,
  .soc-feed__item,
  .soc-feed__item--new,
  .soc-footer,
  .soc-bar__dot,
  .soc-footer__pulse { animation: none; opacity: 1; }
}

.hero__announce {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px 8px 8px;
  border-radius: 50px;
  background-color: #ffffff47;
}

.hero__announce-badge {
    display: inline-flex;
    align-items: center;
    padding: 0px 11px;
    border-radius: 50px;
    background-color: var(--color-teal);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    line-height: 33px;
}

.hero__announce-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.38) 50%, transparent 80%);
  transform: skewX(-15deg);
  animation: badge-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shimmer {
  0%   { left: -110%; }
  25%  { left: 130%;  }
  100% { left: 130%;  }
}

.hero__announce-text { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--color-dark); }

.hero__lede { font-size: 17px; line-height: 1.75; color: rgba(32, 32, 32, 0.72); }

.hero .btn-primary { padding: 10px 32px; }

.hero__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.15s;
}

.hero__secondary-link:hover { color: var(--color-teal-deep); }

/* ── Section base & variants ─────────────────────────────── */

.section { background-color: var(--color-white); }
.section--alt   { background-color: var(--color-gray-soft); }
.section--dark  { background-color: var(--color-teal-deep); color: var(--color-white); }
.section--black { background-color: var(--color-black); color: var(--color-white); }

.section--dark  h1, .section--dark  h2, .section--dark  h3, .section--dark  h4,
.section--black h1, .section--black h2, .section--black h3, .section--black h4 { color: var(--color-white); }

.section--dark  p, .section--black p { color: rgba(255, 255, 255, 0.82); }

/* ── Section header block ────────────────────────────────── */

.section-header { max-width: 840px; }
.section-header--centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Eyebrow pill ────────────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* padding: 5px 14px; */
  /* border-radius: 50px; */
  /* background-color: var(--color-teal-light); */
  color: var(--color-teal-deep);
  margin-bottom: 8px;
  /* Teal text gradient */
  background-image: linear-gradient(90deg, var(--color-teal-deep) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pill-less gradient eyebrow — teal→violet text, used on light sections (e.g. MDR "why") */
.eyebrow--gradient {
  background-color: transparent;
  padding: 0;
  font-size: 14px;
  letter-spacing: 3px;
  background-image: linear-gradient(90deg, var(--color-teal) 0%, var(--color-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Alternate gradient eyebrow — violet→teal, slightly larger */
.eyebrow--gradient-alt {
  background-color: transparent;
  padding: 0;
  font-size: 15px;
  letter-spacing: 2.5px;
  background-image: linear-gradient(90deg, var(--color-violet) 0%, var(--color-teal-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section--dark  .eyebrow,
.section--black .eyebrow,
.nis2-section   .eyebrow {
  background-color: transparent;
  background-image: linear-gradient(90deg, #afebff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  border-radius: 0;
}

.section--dark .lede,
.section--black .lede { color: rgba(255, 255, 255, 0.82); }

/* ── Services section ────────────────────────────────────── */

.card-service {
  border: 2px solid var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0px 9px 54px 0px rgba(70, 22, 151, 0.11);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.card-service--teal   { background-image: linear-gradient(135deg, #A8DFEB 0%, #EEF9FB 100%); }
.card-service--violet { background-image: linear-gradient(135deg, var(--color-violet-soft) 0%, var(--color-white) 100%); }
.card-service--blue   { background-image: linear-gradient(135deg, #A8CCEA 0%, #EEF4FB 100%); }
.card-service--cyan   { background-image: linear-gradient(135deg, #A8E4DC 0%, #EAF9F7 100%); }
.card-service--pink   { background-image: linear-gradient(135deg, #E0C4F5 0%, var(--color-white) 100%); }

.card-service:hover { transform: translateY(-5px); }

.card-service--teal:hover, .card-service--blue:hover, .card-service--cyan:hover {
  box-shadow: 0 24px 80px rgba(64, 170, 204, 0.30);
  border-color: rgba(64, 170, 204, 0.40);
}

.card-service--violet:hover, .card-service--pink:hover {
  box-shadow: 0 24px 80px rgba(128, 64, 224, 0.25);
  border-color: rgba(128, 64, 224, 0.32);
}

.card-service__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }

.card-service__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  color: #ffffff;
  flex-shrink: 0;
}

.card-service--teal .card-service__icon-wrap,
.card-service--blue .card-service__icon-wrap,
.card-service--cyan .card-service__icon-wrap { background-color: rgb(64 170 204 / 20%);
    border: 1px solid rgb(205 238 248 / 50%); }

.card-service--violet .card-service__icon-wrap,
.card-service--pink  .card-service__icon-wrap { background-color: rgb(197 180 243); border: 1px solid rgb(222 210 255); }

.card-service--violet .card-service__link,
.card-service--pink  .card-service__link { color: var(--color-violet); }

.card-service--violet .card-service__link:hover,
.card-service--pink  .card-service__link:hover { color: var(--color-violet-deep); }

.card-service__badge {
  display: inline-flex;
  align-items: center;
  align-content: center;
  vertical-align: middle;
  padding: 0 20px;
  border-radius: 7px;
  background-color: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 26px;
}

.card-service__body { flex: 1; }

.card-service__title { font-size: var(--fs-h3); line-height: var(--lh-h3); color: var(--color-dark); }

.card-service__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #222222;
  opacity: 0.8;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.card-service__desc { font-size: var(--fs-body); line-height: var(--lh-body); color: rgba(32, 32, 32, 0.80); margin-bottom: 0; }

.card-service__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal-deep);
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 44%);
}

.card-service__link:hover { color: var(--color-violet); }

/* ── Service CTA box ─────────────────────────────────────── */

.service-box-cta {
  border: 2px solid var(--color-white);
  border-radius: var(--radius);
  background-image: linear-gradient(120deg, #A1E8FF 0%, var(--color-teal) 76%, var(--color-teal) 100%);
  box-shadow: 0px 8px 65px 0px rgba(29, 41, 45, 0.15);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.38s ease, transform 0.38s ease;
}

.service-box-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(310deg, #A1E8FF 0%, var(--color-teal) 76%, var(--color-teal) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  border-radius: inherit;
}

.service-box-cta > * { position: relative; z-index: 1; }

.service-box-cta:hover { box-shadow: 0px 20px 80px 0px rgba(5, 102, 133, 0.30); transform: translateY(-4px); }
.service-box-cta:hover::before { opacity: 1; }

.service-box-cta__heading { font-size: var(--fs-h3); line-height: 1.35; color: var(--color-dark); margin-bottom: 18px; }
.service-box-cta__label { font-family: var(--font-body); font-weight: 400; color: var(--color-dark); letter-spacing: 0.10em; text-transform: uppercase; opacity: 0.80; margin-bottom: 12px; }
.service-box-cta__desc { font-size: 15px; line-height: 1.65; color: var(--color-dark); opacity: 0.72; margin-bottom: 28px; }

.service-box-cta__btn {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.service-box-cta__btn:hover {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 32, 32, 0.40);
}

/* ── Customer logo strip ─────────────────────────────────── */

.logo-strip__heading { font-family: var(--font-body); font-size: 20px; font-weight: 500; line-height: 1.65; color: var(--color-dark); text-align: center; }

.logo-strip {
  border: 2px solid var(--color-white);
  border-radius: var(--radius);
  background-color: var(--color-white);
  box-shadow: 0px 7px 59px 0px rgba(10, 28, 34, 0.13);
  padding: 32px 24px;
}

.logo-strip__item { display: flex; align-items: center; justify-content: center; }

.logo-strip__item img { height: 56px; width: auto; display: block; filter: grayscale(1) opacity(0.9); transition: filter 0.2s; }
.logo-strip__item img:hover { filter: grayscale(0) opacity(1); }

/* ── Values section ──────────────────────────────────────── */

.values__sticky { position: sticky; top: 130px; }
.values__link { color: var(--color-teal-deep); }
.values__link:hover { color: var(--color-violet); }
.values__col-offset { padding-top: 56px; }

.value-card {
  border: 1.5px solid rgba(64, 170, 204, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--color-white) 0%, #EBF5F8 100%);
  box-shadow: 0px 6px 40px 0px rgba(22, 88, 112, 0.09);
  padding: 28px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  border-color: rgba(64, 170, 204, 0.35);
  box-shadow: 0px 12px 44px 0px rgba(22, 88, 112, 0.15);
  transform: translateY(-4px);
}

/* Equal-height cards in service-page grids (one card per column). Scoped to :only-child
   so the homepage values column — which stacks several cards per column — is unaffected. */
[class*="col-"] > .value-card:only-child { height: 100%; }

.value-card__title { font-family: var(--font-heading); font-size: var(--fs-h4); line-height: 1.4; font-weight: 600; color: var(--color-teal-deep); margin-bottom: 12px; }
.value-card__title strong { font-weight: 700; }
.value-card p { margin-bottom: 0; }
.value-card__cert-img { height: 70px; width: auto; margin-top: 16px; display: block; border-radius: 4px; }

@media (max-width: 991.98px) {
  .values__sticky    { position: static; }
  .values__col-offset { padding-top: 0; }
}

/* Mobile: cards stack full-width, so size to content and tighten padding. */
@media (max-width: 767.98px) {
  [class*="col-"] > .value-card:only-child { height: auto; }
  .value-card { padding: 24px; }
}

/* ── Process / step-by-step ──────────────────────────────── */

@keyframes panel-fade-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.process-tabs__nav {
  display: flex;
  gap: 6px;
  padding: 8px;
  border: 2px solid var(--color-white);
  border-radius: var(--radius);
  background-color: var(--color-white);
  box-shadow: 0px 7px 59px 0px rgba(10, 28, 34, 0.13);
}

.process-tabs__btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: none;
  background: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}

.process-tabs__btn:not(.active):hover { background-color: var(--color-gray-soft); }
.process-tabs__btn.active { background-color: var(--color-dark); }

.process-tabs__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--color-teal-deep);
  transition: color 0.2s;
}

.process-tabs__btn.active .process-tabs__icon { color: var(--color-teal-light); }
.process-tabs__label { display: flex; flex-direction: column; gap: 3px; }
.process-tabs__title { font-family: var(--font-body); font-weight: 600; color: var(--color-dark); transition: color 0.2s; line-height: 1.2; }
.process-tabs__btn.active .process-tabs__title { color: var(--color-white); }
.process-tabs__sub { font-family: var(--font-body); font-weight: 400; color: rgba(32, 32, 32, 0.50); opacity: 0.8; transition: color 0.2s; line-height: 1.2; }
.process-tabs__btn.active .process-tabs__sub { color: rgba(255, 255, 255, 0.55); }

.process-panel { display: none; }
.process-panel.active { display: block; animation: panel-fade-in 0.35s ease forwards; }

.process-steps { padding-top: 4px; }

.process-step { display: flex; gap: 28px; }

.process-step__track { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

.process-step:not(.process-step--last) .process-step__track::after {
  content: '';
  width: 2px;
  flex: 1;
  min-height: 30px;
  background: linear-gradient(180deg, var(--color-teal-light) 0%, rgba(176, 220, 235, 0.10) 100%);
  margin-top: 10px;
}

.process-step__circle {
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: linear-gradient(155deg, var(--color-white) 0%, #EBF5F8 100%);
  box-shadow: 0px 8px 101px 0px rgba(22, 88, 112, 0.20);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-teal-deep);
  flex-shrink: 0;
}

.process-step__body { flex: 1; padding-top: 2px; padding-bottom: 50px; }
.process-step--last .process-step__body { padding-bottom: 0; }
.process-step__tag { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-teal); margin-bottom: 6px; }
.process-step__title { font-size: var(--fs-h3); line-height: var(--lh-h3); color: var(--color-dark); }
.process-step__desc { font-size: 15px; line-height: 1.75; color: rgba(32, 32, 32, 0.70); margin-bottom: 0; }

.process-panel__visuals { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 20px; max-width: 480px; margin-left: auto; }
.process-panel__img { width: 100%; border-radius: var(--radius); display: block; box-shadow: 0 12px 60px rgba(10, 28, 34, 0.14); }

@media (max-width: 991.98px) {
  .process-tabs__nav   { flex-wrap: wrap; }
  .process-tabs__btn   { flex: 0 0 calc(50% - 3px); }
  .process-panel__visuals { position: static; margin-top: 32px; }
}

@media (max-width: 575.98px) {
  .process-tabs__btn   { flex: 0 0 100%; }
  .process-step__circle { width: 56px; height: 56px; font-size: 18px; }
  .process-step        { gap: 18px; }
}

/* ── Case studies ────────────────────────────────────────── */

.cs-view-all { font-weight: 600; color: var(--color-violet); white-space: nowrap; padding-bottom: 6px; }
.cs-view-all:hover { color: var(--color-violet-deep); }

.js-cs-carousel .owl-item { display: flex; }

.card-case-study {
  border: 2px solid var(--color-white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-white) 0%, rgb(158, 215, 235) 100%);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.card-case-study__body { flex: 1; padding: 36px 36px 28px; }
.card-case-study__stat { font-family: var(--font-heading); font-size: 56px; font-weight: 700; line-height: 1; color: var(--color-dark); margin-bottom: 8px; }
.card-case-study__stat-accent { color: var(--color-teal); }
.card-case-study__label { font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--color-teal-deep); opacity: 0.70; margin-bottom: 24px; }
.card-case-study__title { font-family: var(--font-heading); font-size: var(--fs-h3); line-height: 1.35; color: var(--color-dark); margin-bottom: 14px; }
.card-case-study__desc { color: rgba(32, 32, 32, 0.72);
    margin-bottom: 0;
    min-height: 130px; }
.card-case-study__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 36px; border-top: 1px solid rgba(255, 255, 255, 0.55); background-color: rgba(255, 255, 255, 0.35); }
.card-case-study__service { font-family: var(--font-body); font-size: 13px; font-weight: 500; }
.card-case-study__industry { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--color-teal-deep); flex-shrink: 0; }

/* ── Custom Owl nav ─────────────────────────────────────── */

.owl-custom-nav { display: flex; align-items: center; justify-content: center; gap: 14px; }

/* Hidden when the carousel has nothing to scroll (all items visible) */
.owl-custom-nav--inactive { display: none; }

.owl-custom-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--color-gray-neutral);
  background-color: var(--color-white);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.owl-custom-nav__btn:hover { background-color: var(--color-teal-deep); border-color: var(--color-teal-deep); color: var(--color-white); }
.owl-custom-nav__btn:disabled { opacity: 0.30; cursor: default; pointer-events: none; }
.section-case-studies .owl-custom-nav { margin-top: 50px; }
.owl-custom-nav__dots { display: flex; align-items: center; gap: 7px; }

.owl-custom-nav__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gray-neutral);
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.25s ease, background-color 0.25s ease, border-radius 0.25s ease;
}

.owl-custom-nav__dot--active { width: 22px; border-radius: 4px; background-color: var(--color-teal); cursor: default; }

/* ── Trust band stats ────────────────────────────────────── */

.trust-band__stats { flex-wrap: wrap; }

.trust-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px 6px 6px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2b92b3 0%, #056585 100%);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
}

.trust-stat__icon-wrap { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.12); }
.trust-stat__icon { width: 14px; height: 14px; display: block; }

/* ── Industries ──────────────────────────────────────────── */

.industries-link { color: var(--color-violet); flex-shrink: 0; margin-left: 24px; }
.industries-link:hover { color: var(--color-violet-deep); }

.industries-card { border: 2px solid #ffffff; border-radius: var(--radius); background-color: #ffffff; box-shadow: 0px 7px 59px 0px rgba(10, 28, 34, 0.13); overflow: hidden; }

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 16px 50px;
  text-align: center;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

.industry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, #A8DFEB 0%, #EEF9FB 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.industry-item:hover::before { opacity: 1; }

.industry-item::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background-color: #e4e8ea7a;
  transition: opacity 0.3s ease;
}

.industry-item:hover::after { opacity: 0; }
.industries-card .row > div:last-child .industry-item::after { display: none; }

@media (min-width: 576px) and (max-width: 991.98px) {
  .industries-card .row > div:nth-child(3n) .industry-item::after { display: none; }
}

@media (max-width: 575.98px) {
  .industries-card .row > div:nth-child(even) .industry-item::after { display: none; }
}

.industry-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(64, 170, 204, 0.15) 0%, rgba(5, 102, 133, 0.08) 100%);
  color: var(--color-teal-deep);
  transition: background 0.22s, color 0.22s;
}

.industry-item:hover .industry-item__icon { background: linear-gradient(135deg, rgba(64, 170, 204, 0.32) 0%, rgba(5, 102, 133, 0.18) 100%); color: var(--color-white); }
.industry-item__icon svg { width: 28px; height: 28px; }

.industry-item__learn-more {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #38a1c2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, color 0.18s;
  z-index: 1;
}

.industry-item:hover .industry-item__learn-more { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.industry-item__learn-more:hover { color: var(--color-teal-deep); }
.industry-item__label { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--color-teal-deep); line-height: 1.3; }

@media (max-width: 991.98px) {
  .industry-item { padding: 22px 12px 40px; gap: 12px; }
  .industry-item__icon { width: 50px; height: 50px; }
  .industry-item__icon svg { width: 24px; height: 24px; }
  .industry-item__learn-more { bottom: 16px; }
}

@media (max-width: 575.98px) { .industry-item { padding: 32px 8px; } }

/* ── NIS2 checklist section ──────────────────────────────── */

.nis2-section { background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-deep) 100%); }

.nis2-heading { font-family: var(--font-heading); font-size: var(--fs-h1); line-height: 1.2; font-weight: 600; color: var(--color-dark); }
.nis2-heading__accent { color: var(--color-teal-light); }
.nis2-body { font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.75; color: rgba(32, 32, 32, 0.72); }
.nis2-list__item { display: flex; align-items: flex-start; gap: 14px; font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.6; color: var(--color-dark); }
.nis2-list__item strong { color: var(--color-dark); font-weight: 600; }
.nis2-check { flex-shrink: 0; margin-top: 1px; }

.nis2-card {
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgba(255, 255, 255, 0.60);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0px 24px 80px 0px rgba(128, 64, 224, 0.18);
}

.nis2-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: rgba(64, 170, 204, 0.14); border-radius: 12px; color: var(--color-teal-deep); margin-bottom: 24px; }
.nis2-card__heading { font-family: var(--font-heading); font-size: var(--fs-h3); line-height: 1.3; font-weight: 600; color: var(--color-dark); margin-bottom: 10px; }
.nis2-card__desc { font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.7; color: rgba(32, 32, 32, 0.70); margin-bottom: 28px; }

.nis2-card .form-field__input { background: var(--color-white); border-color: var(--color-white); color: var(--color-dark); }
.nis2-card .form-field__input::placeholder { color: rgba(32, 32, 32, 0.40); }
.nis2-card .form-field__input:focus { border-color: var(--color-teal); background: var(--color-white); }
.nis2-card .form-field--error .form-field__input { border-color: #d94040; }
.nis2-card .form-field__error { color: #d94040; }

.nis2-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 24px;
  background-color: var(--color-dark);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.18s ease, gap 0.2s ease;
  margin-bottom: 14px;
}

.nis2-submit svg { flex-shrink: 0; transition: transform 0.2s ease; }
.nis2-submit:hover { background-color: var(--color-black); gap: 13px; }
.nis2-submit:hover svg { transform: translateX(3px); }
.nis2-card__privacy { font-family: var(--font-body); font-size: 0.8125rem; color: rgba(32, 32, 32, 0.45); text-align: center; margin: 0; }

.nis2-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px 0; gap: 16px; color: var(--color-white); }
.nis2-success__text { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: rgba(255, 255, 255, 0.90); margin: 0; }

@media (max-width: 991.98px) { .nis2-card { padding: 32px 28px; } }
@media (max-width: 575.98px) { .nis2-card { padding: 28px 20px; } }

/* ── Testimonials ────────────────────────────────────────── */

.testimonials-carousel .owl-stage-outer { padding: 0px 2px 32px !important; }

/* Owl Carousel clips card shadows (overflow:hidden on .owl-stage-outer). Pad the stage
   vertically to give the shadows room, then pull it back with an equal negative margin
   so nothing shifts — the layout looks identical, the shadows are no longer cropped. */
.js-mdr-why-carousel .owl-stage-outer,
.js-mdr-services-carousel .owl-stage-outer {
  padding-top: 32px !important;
  padding-bottom: 48px !important;
  margin-top: -32px !important;
  margin-bottom: -48px !important;
}
.testimonials-carousel .owl-item { display: flex; }

.testimonial-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0px 7px 59px 0px rgba(10, 28, 34, 0.10);
  padding: 52px 56px;
  margin: 70px 70px 20px 70px;
}

.testimonial-card__inner { display: flex; align-items: flex-start; gap: 36px; }

.testimonial-card__qmark {
  font-family: var(--font-heading);
  font-size: 110px;
  font-weight: 800;
  line-height: 0.7;
  background: linear-gradient(135deg, rgba(64, 170, 204, 0.28) 0%, rgba(128, 64, 224, 0.18) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  flex: none;
  align-self: start;
  padding-top: 6px;
}

.testimonial-card__body { flex: 1; min-width: 0; }

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: var(--fs-quote);
  line-height: var(--lh-quote);
  font-style: italic;
  font-weight: 400;
  color: var(--color-dark);
  border: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.testimonial-card__attribution { display: flex; align-items: center; gap: 20px; }
.testimonial-card__logo { max-height: 40px; max-width: 160px; width: auto; object-fit: contain; flex-shrink: 0; }
.testimonial-card__name { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--color-dark); margin: 0 0 3px 0; }
.testimonial-card__role { font-family: var(--font-body); font-size: 0.875rem; color: rgba(32, 32, 32, 0.60); margin: 0; }

@media (max-width: 767.98px) {
  .testimonial-card { padding: 40px 36px; margin: 0 32px; }
  .testimonial-card__inner { gap: 24px; }
  .testimonial-card__quote { font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
}

@media (max-width: 575.98px) {
  .testimonial-card { padding: 32px 24px; margin: 0 12px; }
  .testimonial-card__inner { flex-direction: column; gap: 12px; }
  .testimonial-card__attribution { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Content header ─────────────────────────────────────── */

.content-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.content-header__left { display: flex; flex-direction: column; gap: 8px; }

.content-header__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--color-teal-deep) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.content-header__heading { font-family: var(--font-heading); font-size: var(--fs-h2); font-weight: 600; color: var(--color-dark); line-height: 1.2; margin: 0; }

.content-header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-violet);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.content-header__link:hover { color: var(--color-violet-deep); gap: 10px; }

@media (max-width: 767.98px) {
  .content-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .content-header__link { padding-bottom: 0; }
}

/* ── Card news ──────────────────────────────────────────── */

.card-news { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(32, 32, 32, 0.07); display: flex; flex-direction: column; height: 100%; transition: box-shadow 0.25s ease, transform 0.25s ease; }
.card-news:hover { box-shadow: 0 8px 32px rgba(32, 32, 32, 0.12); transform: translateY(-3px); }
.card-news__link { display: flex; flex-direction: column; flex-grow: 1; text-decoration: none; color: inherit; }
.card-news__img-wrap { aspect-ratio: 2 / 1; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--color-gray-neutral) 0%, var(--color-gray-soft) 100%); }
.card-news__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.card-news:hover .card-news__img { transform: scale(1.04); }
.card-news__body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.card-news__title {
  /* font-family: var(--font-heading); */
  /* font-size: 1.125rem; */
  /* font-weight: 600; */
  line-height: 1.5;
  /* color: var(--color-dark); */
  /* margin: 0 0 14px; */
  flex-grow: 1;
  transition: color 0.2s ease;
}
.card-news:hover .card-news__title { color: var(--color-violet); }
.card-news__divider { height: 1px; background-color: var(--color-gray-neutral); margin-bottom: 16px; }
.card-news__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.card-news__meta-item { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 0.8125rem; color: rgba(32, 32, 32, 0.50); line-height: 1; }
.card-news__meta-icon { flex-shrink: 0; color: rgba(32, 32, 32, 0.40); }
.card-news__excerpt {
  font-family: var(--font-body);
  /* font-size: 0.9375rem; */
  /* line-height: 1.6; */
  color: rgba(32, 32, 32, 0.65);
  margin: 0 0 20px;
  flex-grow: 1;
}
.card-news__readmore { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600; color: var(--color-violet); line-height: 1; margin-left: auto; }
.card-news:hover .card-news__readmore { color: var(--color-violet-deep); }

/* ── Card news — horizontal variant (image on left) ──────── */
.card-news--horizontal .card-news__link { flex-direction: row; align-items: stretch; padding: 20px; gap: 20px; }
.card-news--horizontal .card-news__img-wrap { width: 42%; max-width: 260px; aspect-ratio: auto; border-radius: var(--radius); flex-shrink: 0; }
.card-news--horizontal .card-news__body { width: 58%; padding: 0; }
.card-news--horizontal .card-news__divider { display: none; }
@media (max-width: 767.98px) {
  .card-news--horizontal .card-news__link { flex-direction: column; padding: 0; gap: 0; }
  .card-news--horizontal .card-news__img-wrap { width: 100%; max-width: none; aspect-ratio: 2 / 1; border-radius: 0; }
  .card-news--horizontal .card-news__body { width: 100%; padding: 24px; }
}

/* ── CTA ─────────────────────────────────────────────────── */

.cta-section { background-color: var(--color-gray-soft); }

.cta-card { background-color: var(--color-dark); border-radius: 24px; padding: 72px; }
.cta-card__heading { color: var(--color-white); margin-bottom: 24px; }

.cta-card__heading-accent {
  background: linear-gradient(90deg, var(--color-teal) 0%, #c197ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-card__body { color: rgba(255, 255, 255, 0.65); line-height: 1.85; margin-bottom: 36px; }

.cta-card__btn {
  padding: 12px 36px;
  font-size: 1rem;
  border-radius: 12px;
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.cta-card__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: skewX(-15deg);
  animation: cta-btn-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-btn-shimmer {
  0%   { left: -110%; }
  20%  { left: 130%;  }
  100% { left: 130%;  }
}

/* Centered, single-column CTA card (used by inner pages without the SOC widget) */
.cta-card--center { text-align: center; }
.cta-card--center .cta-card__heading,
.cta-card--center .cta-card__body { max-width: 830px; margin-left: auto; margin-right: auto; }
.cta-card--center .cta-card__heading-accent { display: block; }
.cta-card--center .cta-card__btn { display: flex; width: 100%; max-width: 420px; margin-left: auto; margin-right: auto; justify-content: center; }
.cta-card--center .cta-card__badges { justify-content: center; }

.cta-card__badges { display: flex; align-items: center; gap: 28px; }
.cta-card__badge { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.55); font-size: 0.875rem; }
.cta-card__badge svg { color: var(--color-teal); flex-shrink: 0; }

/* ── SOC Live Monitor widget ─────────────────────────────── */

.cta-widget {
  position: relative;
  background-color: #0d1520;
  background-image: linear-gradient(135deg, rgba(64, 170, 204, 0.09) 0%, transparent 55%), radial-gradient(ellipse at 85% 90%, rgba(128, 64, 224, 0.07) 0%, transparent 55%);
  border: 1px solid rgba(64, 170, 204, 0.18);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.cta-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(64, 170, 204, 0.70) 25%, rgba(64, 170, 204, 0.40) 75%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.cta-widget.is-visible { opacity: 1; transform: translateY(0); }

.cta-widget:hover { border-color: rgba(64, 170, 204, 0.35); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(64, 170, 204, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.07); }

.cta-widget__chrome { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; background-color: rgba(255, 255, 255, 0.03); border-bottom: 1px solid rgba(255, 255, 255, 0.07); position: relative; z-index: 1; }
.cta-widget__chrome-left { display: flex; align-items: center; gap: 8px; }
.cta-widget__chrome-right { display: flex; align-items: center; gap: 14px; }

.cta-widget__trafficlight { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cta-widget__trafficlight--r { background-color: #ff5f57; box-shadow: 0 0 5px rgba(255, 95, 87, 0.65); }
.cta-widget__trafficlight--y { background-color: #febc2e; box-shadow: 0 0 5px rgba(254, 188, 46, 0.65); }
.cta-widget__trafficlight--g { background-color: #28c840; box-shadow: 0 0 5px rgba(40, 200, 64, 0.65); }

.cta-widget__chrome-title-wrap { display: flex; flex-direction: column; gap: 2px; }
.cta-widget__url { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.72); line-height: 1; letter-spacing: 0.01em; }
.cta-widget__chrome-sub { font-family: var(--font-body); font-size: 0.5rem; color: rgba(255, 255, 255, 0.28); text-transform: uppercase; letter-spacing: 0.07em; line-height: 1; }

.cta-widget__avg-resp { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.cta-widget__avg-resp-value { font-size: 0.875rem; font-weight: 700; font-variant-numeric: tabular-nums; font-family: 'Courier New', monospace; color: var(--color-teal); line-height: 1; text-shadow: 0 0 16px rgba(64, 170, 204, 0.60); }
.cta-widget__avg-resp-label { font-family: var(--font-body); font-size: 0.5rem; color: rgba(255, 255, 255, 0.28); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; }

.cta-widget__stats { display: flex; border-bottom: 1px solid rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.015); }
.cta-widget__stat { flex: 1; padding: 14px 12px 12px; text-align: center; transition: background-color 0.3s ease; }
.cta-widget__stat + .cta-widget__stat { border-left: 1px solid rgba(255, 255, 255, 0.06); }

.cta-widget__stat.is-updating { animation: cta-stat-flash 0.55s ease forwards; }

@keyframes cta-stat-flash {
  0%   { background-color: transparent; }
  30%  { background-color: rgba(64, 170, 204, 0.11); }
  100% { background-color: transparent; }
}

.cta-widget__stat-value { display: block; font-size: 1.125rem; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; color: var(--color-white); line-height: 1; margin-bottom: 5px; }
.cta-widget__stat-value--accent { color: var(--color-teal); text-shadow: 0 0 22px rgba(64, 170, 204, 0.52); }
.cta-widget__stat-label { display: block; font-family: var(--font-body); font-size: 0.5625rem; color: rgba(255, 255, 255, 0.30); white-space: nowrap; letter-spacing: 0.04em; text-transform: uppercase; }

.cta-feed { position: relative; height: 188px; overflow: hidden; cursor: default; }
.cta-feed::before, .cta-feed::after { content: ''; position: absolute; left: 0; right: 0; height: 36px; z-index: 1; pointer-events: none; }
.cta-feed::before { top: 0; background: linear-gradient(to bottom, #0d1520 0%, transparent 100%); }
.cta-feed::after  { bottom: 0; background: linear-gradient(to top, #0d1520 0%, transparent 100%); }

.cta-feed__track { animation: cta-feed-scroll 20s linear infinite; }
.cta-feed:hover .cta-feed__track { animation-play-state: paused; }

@keyframes cta-feed-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.cta-feed__item { display: grid; grid-template-columns: 40px 46px 1fr auto; align-items: center; gap: 10px; padding: 8px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); border-left: 2px solid transparent; transition: background-color 0.15s ease; }
.cta-feed__item:hover { background-color: rgba(255, 255, 255, 0.025); }
.cta-feed__item--high { border-left-color: #ff5f57; }
.cta-feed__item--med  { border-left-color: #febc2e; }
.cta-feed__item--low  { border-left-color: var(--color-teal); }

.cta-feed__sev { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.05em; padding: 2px 5px; border-radius: 3px; white-space: nowrap; }
.cta-feed__item--high .cta-feed__sev { color: #ff5f57; background-color: rgba(255, 95, 87, 0.12); border: 1px solid rgba(255, 95, 87, 0.22); }
.cta-feed__item--med  .cta-feed__sev { color: #febc2e; background-color: rgba(254, 188, 46, 0.12); border: 1px solid rgba(254, 188, 46, 0.22); }
.cta-feed__item--low  .cta-feed__sev { color: var(--color-teal); background-color: rgba(64, 170, 204, 0.10); border: 1px solid rgba(64, 170, 204, 0.20); }

.cta-feed__time { font-size: 0.6875rem; font-family: 'Courier New', monospace; color: rgba(255, 255, 255, 0.28); font-variant-numeric: tabular-nums; }
.cta-feed__event { font-size: 0.75rem; font-family: var(--font-body); color: rgba(255, 255, 255, 0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cta-feed__target { font-size: 0.625rem; font-family: 'Courier New', monospace; color: rgba(255, 255, 255, 0.28); white-space: nowrap; }

.cta-widget__status { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; background: linear-gradient(90deg, rgba(64, 170, 204, 0.07) 0%, rgba(64, 170, 204, 0.02) 100%); border-top: 1px solid rgba(64, 170, 204, 0.14); }
.cta-widget__status-left { display: flex; align-items: center; gap: 9px; }

.cta-widget__status-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #28c840; flex-shrink: 0; animation: cta-breathe 2.8s ease-in-out infinite; box-shadow: 0 0 8px rgba(40, 200, 64, 0.65), 0 0 18px rgba(40, 200, 64, 0.25); }
.cta-widget__status-text { font-size: 0.8125rem; font-family: 'Courier New', monospace; color: rgba(64, 170, 204, 0.90); }
.cta-widget__status-text::after { content: '|'; margin-left: 1px; animation: cta-cursor 1s step-end infinite; }

.cta-widget__orgs { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px 5px 10px; background-color: rgba(64, 170, 204, 0.08); border: 1px solid rgba(64, 170, 204, 0.22); border-radius: 50px; }
.cta-widget__orgs-value { font-size: 0.9375rem; font-weight: 700; color: var(--color-teal); font-variant-numeric: tabular-nums; line-height: 1; text-shadow: 0 0 12px rgba(64, 170, 204, 0.55); }
.cta-widget__orgs-label { font-family: var(--font-body); font-size: 0.6875rem; color: rgba(255, 255, 255, 0.50); line-height: 1; }

@keyframes cta-breathe { 0%, 100% { opacity: 1; } 50% { opacity: 0.28; } }
@keyframes cta-cursor  { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

@media (max-width: 991.98px) { .cta-card { padding: 52px 48px; } }
@media (max-width: 767.98px) { .cta-card { padding: 40px 32px; } .cta-card__btn { padding: 15px 24px; } }
@media (max-width: 575.98px) { .cta-card { padding: 36px 24px; border-radius: 16px; } .cta-card__badges { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* ── Breach Checker ──────────────────────────────────────── */

.breach-checker { background: linear-gradient(145deg, var(--color-gray-soft) 0%, rgba(205, 191, 245, 0.55) 100%); }

.breach-checker .eyebrow { background: none; background-image: none; color: var(--color-violet); -webkit-text-fill-color: var(--color-violet); padding: 0; border-radius: 0; }
.breach-checker h2 { color: var(--color-dark); }
.breach-checker__body { color: var(--color-dark); font-size: 17px; line-height: 1.7; }

.breach-form__group { display: flex; gap: 8px; margin-bottom: 10px; }
.breach-form__input-wrap { flex: 1; position: relative; }
.breach-form__icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: rgba(32, 32, 32, 0.38); pointer-events: none; }

.breach-form__input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 44px;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--r-sm);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.breach-form__input::placeholder { color: rgba(32, 32, 32, 0.35); }
.breach-form__input:focus { outline: none; border-color: var(--color-violet); box-shadow: 0 0 0 3px rgba(128, 64, 224, 0.10); }
.breach-form__input.is-invalid { border-color: #dc2626; }

.breach-form__btn {
  height: 52px;
  padding: 0 26px;
  background: var(--color-violet);
  color: var(--color-white);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.breach-form__btn:hover { background: var(--color-violet-deep); }
.breach-form__note { color: rgba(32, 32, 32, 0.48); font-size: 13px; margin: 0; }

.breach-result { margin-top: 20px; padding: 20px 22px; border-radius: var(--radius); border: 1px solid rgba(0, 0, 0, 0.08); font-family: var(--font-body); background: var(--color-white); }
.breach-result--loading { display: flex; align-items: center; gap: 14px; color: var(--color-teal-deep); font-size: 14px; }
.breach-result--found { background: #fff5f5; border-color: rgba(220, 38, 38, 0.20); }
.breach-result--clean { background: #f0fafb; border-color: rgba(64, 170, 204, 0.28); }

.breach-result__status { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.breach-result__status--found { color: #dc2626; }
.breach-result__status--clean { color: var(--color-teal-deep); }

.breach-result__rows { list-style: none; padding: 0; margin: 0 0 14px; border-top: 1px solid rgba(0, 0, 0, 0.06); }
.breach-result__row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06); font-size: 13px; color: var(--color-dark); }

.breach-result__badge { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.breach-result__badge--high { background: rgba(220, 38, 38, 0.10); color: #dc2626; }
.breach-result__badge--med  { background: rgba(234, 88, 12, 0.10); color: #ea580c; }

.breach-result__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--color-violet); text-decoration: none; transition: color 0.2s; }
.breach-result__cta:hover { color: var(--color-violet-deep); }

@keyframes breach-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.breach-spinner { width: 18px; height: 18px; border: 2px solid rgba(128, 64, 224, 0.20); border-top-color: var(--color-violet); border-radius: 50%; animation: breach-spin 0.7s linear infinite; flex-shrink: 0; }

.breach-checker__visual { position: relative; }

.breach-checker__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 90%;
  height: 110%;
  background: radial-gradient(ellipse at 55% 50%, rgba(128, 64, 224, 0.40) 0%, rgba(128, 64, 224, 0.16) 50%, transparent 72%);
  filter: blur(56px);
  z-index: 0;
  pointer-events: none;
}

.breach-checker__img { width: 76%; border-radius: var(--radius); display: block; margin-left: auto; position: relative; z-index: 1; }

@media (max-width: 991.98px) { .breach-form__group { flex-direction: column; } .breach-form__btn { width: 100%; } .breach-checker__img { width: 68%; margin: 0 auto; } }

/* ── Footer ─────────────────────────────────────────────── */

.site-footer { background-color: var(--color-gray-soft); }
.footer-main { padding: 72px 0 60px; }

.footer-brand__logo-link { display: inline-block; margin-bottom: 20px; }
.footer-brand__logo { height: 44px; width: auto; display: block; }
.footer-brand__desc { font-family: var(--font-body); font-size: 0.9375rem; color: rgba(32, 32, 32, 0.65); line-height: 1.75; margin: 0 0 24px; max-width: 240px; }
.footer-brand__socials { display: flex; gap: 10px; }

.footer-social { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background-color: rgba(32, 32, 32, 0.08); color: var(--color-dark); text-decoration: none; transition: background-color 0.2s ease, color 0.2s ease; flex-shrink: 0; }
.footer-social:hover { background-color: var(--color-violet); color: var(--color-white); }

.footer-col { padding-top: 4px; }
.footer-col__heading { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--color-dark); margin: 0 0 20px; }
.footer-col__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-col__list a { font-family: var(--font-body); font-size: 0.9375rem; color: rgba(32, 32, 32, 0.68); text-decoration: none; transition: color 0.2s ease; line-height: 1.3; }
.footer-col__list a:hover { color: var(--color-violet); }

.footer-contact__phone { display: block; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--color-dark); text-decoration: none; margin-bottom: 5px; transition: color 0.2s ease; }
.footer-contact__phone:hover { color: var(--color-violet); }
.footer-contact__email { display: block; font-family: var(--font-body); font-size: 0.9375rem; color: var(--color-violet); text-decoration: none; margin-bottom: 24px; transition: color 0.2s ease; }
.footer-contact__email:hover { color: var(--color-violet-deep); }
.footer-contact__address { font-style: normal; font-family: var(--font-body); font-size: 0.9375rem; color: rgba(32, 32, 32, 0.68); line-height: 1.8; margin: 0 0 20px; }
.footer-contact__address strong { font-weight: 600; color: var(--color-dark); }
.footer-contact__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500; color: var(--color-violet); text-decoration: none; transition: gap 0.2s ease, color 0.2s ease; }
.footer-contact__link:hover { color: var(--color-violet-deep); gap: 10px; }

.footer-bottom { border-top: 1px solid var(--color-gray-neutral); padding: 20px 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom__copy { font-family: var(--font-body); font-size: 0.8125rem; color: rgba(32, 32, 32, 0.50); margin: 0; }
.footer-bottom__links { display: flex; gap: 24px; }
.footer-bottom__links a { font-family: var(--font-body); font-size: 0.8125rem; color: rgba(32, 32, 32, 0.50); text-decoration: none; transition: color 0.2s ease; }
.footer-bottom__links a:hover { color: var(--color-dark); }

@media (max-width: 991.98px) { .footer-main { padding: 56px 0 48px; } .footer-brand__desc { max-width: 100%; } }
@media (max-width: 767.98px) { .footer-main { padding: 48px 0 40px; } .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: 10px; } }

/* ── Footer breach checker widget ────────────────────────── */

.footer-breach {
  background: linear-gradient(135deg, rgba(6, 102, 133, 0.45) 0%, rgba(32, 32, 32, 0.90) 100%);
  border-top: 1px solid rgba(64, 170, 204, 0.18);
  border-bottom: 1px solid rgba(64, 170, 204, 0.10);
  padding: 28px 0;
}

.footer-breach__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-breach__label { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.footer-breach__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(64, 170, 204, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  flex-shrink: 0;
}

.footer-breach__title { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--color-white); margin: 0; line-height: 1.3; }
.footer-breach__sub { font-family: var(--font-body); font-size: 12px; color: rgba(255, 255, 255, 0.45); margin: 1px 0 0; }

.footer-breach__form { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 260px; }

.footer-breach__input {
  flex: 1;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(64, 170, 204, 0.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.footer-breach__input::placeholder { color: rgba(255, 255, 255, 0.30); }
.footer-breach__input:focus { border-color: var(--color-teal); }

.footer-breach__btn {
  padding: 9px 20px;
  background: var(--color-teal);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
  flex-shrink: 0;
}

.footer-breach__btn:hover { background: var(--color-teal-deep); }
.footer-breach__result { font-family: var(--font-body); font-size: 13px; color: rgba(255, 255, 255, 0.75); margin-top: 8px; }
.footer-breach__result.breach-result--found { color: #fca5a5; }
.footer-breach__result.breach-result--clean { color: #86efac; }

/* ── lede helper ─────────────────────────────────────────── */
.lede { font-size: 18px; line-height: 1.75; color: rgba(32, 32, 32, 0.72); }

/* ══════════════════════════════════════════════════════════════
   MDR SERVICE PAGE
══════════════════════════════════════════════════════════════ */

/* ── MDR Sub-navigation ─────────────────────────────────── */

.page-subnav {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-neutral);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-subnav::-webkit-scrollbar { display: none; }

.page-subnav__inner {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 0;
  white-space: nowrap;
}

.page-subnav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(32, 32, 32, 0.55);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.page-subnav__link:hover { color: var(--color-violet); background: rgba(128, 64, 224, 0.05); text-decoration: none; }
.page-subnav__link.is-active { color: var(--color-violet); background: rgba(128, 64, 224, 0.08); font-weight: 600; }

.page-subnav__spacer { flex: 1; }

.page-subnav__cta {
  padding: 7px 18px;
  font-size: 13px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ── MDR Hero variant ───────────────────────────────────── */

.hero--mdr { background-color: #ecf2f2; background-image: url(img/hero-bg.webp); background-repeat: no-repeat; background-size: auto 100%; background-position: center; overflow: hidden; }

.hero--no-bg-image { background-image: none; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 50px;
  background: rgba(255,255,255,0.50);
  margin-bottom: 20px;
  max-width: 100%;
}

.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 50px;
  background: var(--color-violet);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 30px;
  position: relative;
  overflow: hidden;
}

.hero__badge-pill::after {
  content: '';
  position: absolute;
  top: 0; left: -110%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: skewX(-15deg);
  animation: badge-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__badge-text { font-size: 13px; font-weight: 500; color: var(--color-dark); }

/* ── MDR Stats band ─────────────────────────────────────── */

.stats-section {
  background: linear-gradient(120deg, var(--color-gray-soft) 0%, rgba(176, 220, 235, 0.40) 50%, rgba(205, 191, 245, 0.38) 100%);
  border-top: 1px solid var(--color-gray-neutral);
  border-bottom: 1px solid var(--color-gray-neutral);
}

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

.stat-item {
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(5, 102, 133, 0.16);
}

.stat-item__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--color-teal-deep) 0%, var(--color-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* ── MDR Comparison table ───────────────────────────────── */

.compare-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  min-width: 680px;
  background: var(--color-white);
}

.compare-table th,
.compare-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--color-gray-neutral);
  text-align: center;
  vertical-align: middle;
}

/* First (feature) column stays left-aligned */
.compare-table thead th:first-child,
.compare-table tbody th { text-align: left; }

/* Head row */
.compare-table thead th {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1.5px solid var(--color-gray-neutral);
}

.compare-table thead th:first-child {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.45);
}

/* Row header (feature name) */
.compare-table tbody th {
  font-weight: 600;
  color: var(--color-dark);
  width: 240px;
}

/* Competitor cells — muted */
.compare-table tbody td { color: rgba(32, 32, 32, 0.55); }

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: 0; }

.compare-table tbody tr:hover th { color: var(--color-dark); }

/* ── Highlighted column (Complorer) ────────────────────── */
.compare-table .col-mdr {
  background: rgba(64, 170, 204, 0.06);
  border-left: 1.5px solid rgba(64, 170, 204, 0.22);
  border-right: 1.5px solid rgba(64, 170, 204, 0.22);
}

.compare-table thead th.col-mdr {
  background: rgba(64, 170, 204, 0.13);
  color: var(--color-teal-deep);
  border-top: 1.5px solid rgba(64, 170, 204, 0.22);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.compare-table tbody td.col-mdr {
  font-weight: 700;
  color: var(--color-teal-deep);
}

.compare-table tbody tr:last-child td.col-mdr {
  border-bottom: 1.5px solid rgba(64, 170, 204, 0.22);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

/* Highlighted column header — name + badge */
.compare-colhead {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.compare-colhead__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-violet);
  padding: 3px 11px;
  border-radius: 50px;
}

/* Checks & marks */
.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compare-check svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  color: var(--color-white);
  background: var(--color-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── MDR Compliance cards ───────────────────────────────── */

.compliance-card {
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 12px rgba(32, 32, 32, 0.05);
  height: 100%;
}

.compliance-card:hover {
  border-color: rgba(128, 64, 224, 0.28);
  box-shadow: 0 8px 32px rgba(128, 64, 224, 0.10);
  transform: translateY(-3px);
}

.compliance-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-violet);
  border: 1.5px solid rgba(128, 64, 224, 0.28);
  padding: 2px 15px;
  border-radius: 6px;
  background: rgba(128, 64, 224, 0.04);
}

.compliance-card h3 {
  margin: 10px 0;
}

.compliance-card > p {
  color: rgba(32, 32, 32, 0.8);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

.compliance-card__satisfies {
  color: rgba(32, 32, 32, 0.55);
  padding-top: 14px;
  border-top: 1px dashed var(--color-gray-neutral);
  line-height: 1.65;
  margin: 0;
}

.compliance-card__satisfies strong { color: var(--color-teal-deep); font-weight: 600; }

/* ── MDR Why-MDR cards ──────────────────────────────────── */

.why-card {
  border: 1.5px solid rgba(64, 170, 204, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #FAFEFF 0%, #E6F4F9 100%);
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-height: 260px;
  box-shadow: 0 2px 12px rgba(22, 88, 112, 0.06);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, background 0.28s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.why-card:hover {
  border-color: rgba(64, 170, 204, 0.45);
  box-shadow: 0 18px 50px rgba(64, 170, 204, 0.20);
  transform: translateY(-4px);
  background: linear-gradient(160deg, #EAF8FC 0%, #CFEDF6 100%);
}

.why-card p {
  margin: 0;
  color: rgba(32, 32, 32, 0.80);
}

/* ── MDR Features grid ──────────────────────────────────── */

.service-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  box-shadow: 0 2px 10px rgba(32, 32, 32, 0.04);
}

.service-feature:hover {
  border-color: rgba(64, 170, 204, 0.35);
  box-shadow: 0 6px 24px rgba(64, 170, 204, 0.10);
  transform: translateY(-2px);
}

.service-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(64, 170, 204, 0.14) 0%, rgba(128, 64, 224, 0.07) 100%);
  color: var(--color-teal-deep);
  flex-shrink: 0;
}

.service-feature h4 {
  font-size: 15px;
  margin: 0 0 2px;
  color: var(--color-dark);
  line-height: 1.3;
}

.service-feature p {
  margin: 0;
  color: rgba(32, 32, 32, 0.65);
  line-height: 1.6;
  flex: 1;
}

.service-feature__note {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-top: 12px;
  display: block;
}

/* ── MDR Outcome cards ──────────────────────────────────── */

.outcome-card {
  border: 1.5px solid rgba(255, 255, 255, 0.60);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-white) 0%, #E8F6FA 100%);
  padding: 28px 28px 22px;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(32, 32, 32, 0.07);
  width: 100%;
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(64, 170, 204, 0.18);
}

.outcome-card__stat {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.outcome-card__stat-accent { color: var(--color-teal); }

.outcome-card__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
  margin-bottom: 4px;
}

.outcome-card__desc {
  font-size: 14px;
  color: rgba(32, 32, 32, 0.68);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

.outcome-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(64, 170, 204, 0.20);
}

.outcome-card__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.45);
  border: 1px solid var(--color-gray-neutral);
  padding: 4px 10px;
  border-radius: 6px;
}

/* ── MDR Data Residency ─────────────────────────────────── */

.residency {
  background: linear-gradient(145deg, var(--color-teal-deep) 0%, #022f40 100%);
  border-radius: 20px;
  padding: 52px 48px;
  overflow: hidden;
  position: relative;
}

.residency::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(64, 170, 204, 0.08);
  right: -120px;
  top: -180px;
  pointer-events: none;
}

.residency::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(64, 170, 204, 0.06);
  left: -80px;
  bottom: -100px;
  pointer-events: none;
}

.residency > * { position: relative; z-index: 1; }

.residency__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
  display: block;
  width: fit-content;
}

.residency h2 { color: var(--color-white); margin-bottom: 16px; }
.residency .lede { color: rgba(255, 255, 255, 0.68); margin-bottom: 0; }

.residency__facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.residency__fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.residency__fact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-light);
  flex-shrink: 0;
}

.residency__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: center;
}

.res-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
}

.res-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(64, 170, 204, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-light);
  flex-shrink: 0;
}

.res-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 2px;
}

.res-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

.res-card__check {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  flex-shrink: 0;
}

/* ── MDR Pull stat ──────────────────────────────────────── */

.pull-stat {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
  border-left: 4px solid var(--color-violet);
  padding: 10px 0 10px 22px;
  margin-bottom: 24px;
}

.pull-stat strong { color: var(--color-violet); }

/* ── MDR Response comparison grid ──────────────────────── */

.response-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.response-cell {
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: 12px;
  padding: 20px;
  background: var(--color-white);
}

.response-cell--win {
  background: rgba(128, 64, 224, 0.05);
  border-color: rgba(128, 64, 224, 0.28);
}

.response-cell__who {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.40);
  margin-bottom: 10px;
}

.response-cell--win .response-cell__who { color: var(--color-violet); }

.response-cell__val {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.response-cell--win .response-cell__val { color: var(--color-violet); }

/* ── MDR Incident timeline ──────────────────────────────── */

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding-left: 64px;
}

/* Gradient spine running down the nodes */
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-teal) 0%, var(--color-violet) 100%);
}

.timeline__ev {
  position: relative;
  background: linear-gradient(155deg, var(--color-white) 0%, #F1F8FB 100%);
  border: 1.5px solid rgba(64, 170, 204, 0.16);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: 0 2px 14px rgba(22, 88, 112, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.timeline__ev:hover {
  border-color: rgba(64, 170, 204, 0.40);
  box-shadow: 0 14px 36px rgba(64, 170, 204, 0.16);
  transform: translateX(5px);
}

/* Gradient check node sitting on the spine */
.timeline__node {
  position: absolute;
  left: -64px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-violet) 100%);
  color: var(--color-white);
  box-shadow: 0 0 0 5px var(--color-white), 0 4px 14px rgba(64, 170, 204, 0.30);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline__node svg { display: block; }

.timeline__ev:hover .timeline__node {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 0 5px var(--color-white), 0 6px 18px rgba(128, 64, 224, 0.35);
}

.timeline__time {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
  margin-bottom: 5px;
}

.timeline__desc {
  margin: 0;
}

/* ── MDR Buyer's Guide cover ─────────────────────────────── */

.guide-cover {
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 28px rgba(32, 32, 32, 0.08), 0 1px 0 var(--color-gray-neutral);
}

.guide-cover__mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.35);
}

.guide-cover__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-violet);
  border: 1px solid rgba(128, 64, 224, 0.28);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(128, 64, 224, 0.05);
}

.guide-cover__inner { display: flex; flex-direction: column; gap: 6px; }

.guide-cover__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-violet);
}

.guide-cover__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0;
}

.guide-cover__sub {
  font-size: 13px;
  color: rgba(32, 32, 32, 0.50);
  margin: 0;
}

.guide-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.guide-toc li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--color-gray-neutral);
  font-size: 13px;
  color: rgba(32, 32, 32, 0.72);
  line-height: 1.4;
}

.guide-toc .n {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(32, 32, 32, 0.30);
  flex-shrink: 0;
  width: 20px;
}

.guide-cover__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-gray-neutral);
  padding-top: 14px;
  font-size: 11px;
  color: rgba(32, 32, 32, 0.35);
}

/* ── MDR Pricing card ───────────────────────────────────── */

.pricing-card {
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(32, 32, 32, 0.08);
}

.pricing-card__header {
  background: linear-gradient(135deg, var(--color-teal-deep) 0%, #148fba 100%);
  padding: 22px 26px;
}

.pricing-card__flag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 6px;
  display: block;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

.pricing-card__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 26px;
  border-bottom: 1px solid var(--color-gray-neutral);
  font-size: 14px;
  color: rgba(32, 32, 32, 0.68);
}

.pricing-card__line:last-of-type { border-bottom: 0; }

.pricing-card__line-label { flex: 1; }

.pricing-card__line-val {
  font-weight: 700;
  color: var(--color-dark);
  flex-shrink: 0;
}

.pricing-card__line-val--none { color: rgba(32, 32, 32, 0.35); font-weight: 500; }
.pricing-card__line-val--incl { color: var(--color-teal-deep); }

.pricing-card__note {
  padding: 14px 26px;
  font-size: 12px;
  color: rgba(32, 32, 32, 0.42);
  border-top: 1px solid var(--color-gray-neutral);
  background: var(--color-gray-soft);
}

/* ── FAQ ─────────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 48px;
  align-items: start;
}

/* Filter sidebar — vertical nav style */
.faq-filters {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-chip {
  position: relative;
  background: none;
  border: none;
  border-radius: 10px;
  color: rgba(32, 32, 32, 0.50);
  padding: 10px 14px 10px 18px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  width: 100%;
  line-height: 1.3;
  transition: color 0.15s, background 0.15s;
}

.faq-chip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: var(--color-violet);
  transition: height 0.2s ease;
}

.faq-chip:hover { color: var(--color-dark); background: rgba(32, 32, 32, 0.04); }

.faq-chip.is-active {
  color: var(--color-violet);
  background: rgba(128, 64, 224, 0.06);
  font-weight: 600;
}

.faq-chip.is-active::before { height: 55%; }

/* Accordion — individual cards */
.faq-acc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.faq-acc details {
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-acc details[hidden] { display: none !important; }

.faq-acc details[open] {
  border-color: rgba(128, 64, 224, 0.28);
  box-shadow: 0 8px 28px rgba(128, 64, 224, 0.09);
}



.faq-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px 20px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  user-select: none;
  transition: color 0.15s;
}

.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc summary:hover { color: var(--color-violet); }

.faq-acc details[open] > summary {
  color: var(--color-violet);
  background: none;
  border-bottom: 1px solid var(--color-gray-neutral);
}

/* Plus / minus icon */
.faq-acc__chev {
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  border: none;
  transform: none;
  transition: none;
}

.faq-acc__chev::before,
.faq-acc__chev::after {
  content: '';
  position: absolute;
  border-radius: 1.5px;
  background: rgba(32, 32, 32, 0.30);
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.18s;
}

.faq-acc__chev::before { width: 14px; height: 2px; top: 8px; left: 2px; }
.faq-acc__chev::after  { width: 2px; height: 14px; top: 2px; left: 8px; }

.faq-acc details[open] > summary .faq-acc__chev::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq-acc details[open] > summary .faq-acc__chev::before,
.faq-acc details[open] > summary .faq-acc__chev::after {
  background: var(--color-violet);
}

.faq-acc__body {
  padding: 20px 22px 24px 26px;
  color: rgba(32, 32, 32, 0.68);
  line-height: 1.8;
}

.faq-acc__body p { margin: 0 0 10px; }
.faq-acc__body p:last-child { margin-bottom: 0; }

/* ── Tabbed module ──────────────────────────────────────── */

.tabs-block {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.tabs-nav {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(32, 32, 32, 0.07);
  border-radius: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 48px;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  flex: 1;
  min-width: 0;
  padding: 11px 20px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

.tab-btn:hover { color: var(--color-dark); background: rgba(255, 255, 255, 0.55); }

.tab-btn[aria-selected="true"] {
  background: var(--color-white);
  color: var(--color-violet);
  font-weight: 600;
  box-shadow: 0 1px 8px rgba(32, 32, 32, 0.13);
}

.tab-panel { display: none; padding: 0; }
.tab-panel.is-active { display: block; animation: panel-fade-in 0.30s ease forwards; }

/* ── Tab panel typography ────────────────────────────────── */

.tab-panel__title    { font-size: 22px; }
.tab-panel__subtitle { color: rgba(32, 32, 32, 0.65); }
.tab-panel__intro    { font-size: 15px; color: rgba(32, 32, 32, 0.68); line-height: 1.75; }

/* ── MDR timeline micro-type ────────────────────────────── */

.timeline-label {
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 50px;
}

/* ── MDR text utilities ─────────────────────────────────── */

.disclaimer   { font-size: 13px; color: rgba(32, 32, 32, 0.45); margin: 0; }
.section-note         { color: rgba(32, 32, 32, 0.80); font-style: italic; padding-top: 40px; }
.pricing-body { font-size: 15px; color: rgba(32, 32, 32, 0.65); line-height: 1.75; margin-bottom: 28px; }
.pricing-note { font-size: 13px; color: rgba(32, 32, 32, 0.40); margin-top: 12px; }
.mono-hint    { font-size: 12px; color: rgba(32, 32, 32, 0.40); margin-top: 10px; font-family: 'Courier New', monospace; letter-spacing: 0.04em; }

/* ── CTA card eyebrow ───────────────────────────────────── */

.cta-card__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

/* ── Buyer's guide bullet list ──────────────────────────── */

.guide-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(32, 32, 32, 0.72);
  line-height: 1.6;
}

.guide-bullet__dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── NIS2 list reset ────────────────────────────────────── */

.nis2-list { list-style: none; padding: 0; }

/* ── Industry item sub-label ────────────────────────────── */

.industry-item__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(5, 102, 133, 0.60);
}

/* ── Responsive overrides ───────────────────────────────── */

/* ── Section spacing — tablet ──────────────────────────── */
@media (max-width: 767.98px) {
  .p-t-100 { padding-top:    60px !important; }
  .p-b-100 { padding-bottom: 60px !important; }
  .p-t-80  { padding-top:    50px !important; }
  .p-b-80  { padding-bottom: 50px !important; }
  .p-t-70  { padding-top:    44px !important; }
  .p-b-70  { padding-bottom: 44px !important; }
  .p-t-60  { padding-top:    38px !important; }
  .p-b-60  { padding-bottom: 38px !important; }
  .hero__lede { font-size: 16px; }

  /* Comparison table — tighter so it scrolls less on phones */
  .compare-wrap { -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 560px; font-size: 13px; }
  .compare-table th,
  .compare-table td { padding: 12px 14px; }
  .compare-table thead th { font-size: 13px; }
  .compare-table tbody th { width: auto; min-width: 150px; }
  .compare-colhead__badge { font-size: 9px; padding: 2px 8px; }
}

/* ── Section spacing — mobile ──────────────────────────── */
@media (max-width: 575.98px) {
  .p-t-100 { padding-top:    48px !important; }
  .p-b-100 { padding-bottom: 48px !important; }
  .p-t-80  { padding-top:    40px !important; }
  .p-b-80  { padding-bottom: 40px !important; }
  .p-t-70  { padding-top:    36px !important; }
  .p-b-70  { padding-bottom: 36px !important; }
  .p-t-60  { padding-top:    32px !important; }
  .p-b-60  { padding-bottom: 32px !important; }
  .hero__lede  { font-size: 15px; }
  .hero__badge { flex-wrap: wrap; justify-content: center; }
  /* Post meta — tighter separator spacing so the row wraps cleanly */
  .post-meta__sep      { padding: 0 6px; }
  /* Share buttons — larger touch target on phones */
  .share-links__btn    { padding: 10px 14px; }

  /* Tabs — scrollable pill bar instead of squeezed equal columns */
  .tabs-nav { margin-bottom: 32px; }
  .tab-btn  { flex: 0 0 auto; padding: 10px 14px; }

  /* Type / spacing polish */
  .logo-strip__heading { font-size: 17px; }
  .pull-stat           { font-size: 17px; }
  .compliance-card     { padding: 24px; }
  .tab-panel__title    { font-size: 20px; }
}

@media (max-width: 991.98px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 48px 18px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(5, 102, 133, 0.12); }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(5, 102, 133, 0.12); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-filters { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .faq-chip { width: auto; border-radius: 50px; padding: 8px 16px; border: 1.5px solid var(--color-gray-neutral); background: var(--color-white); }
  .faq-chip.is-active { border-color: rgba(128, 64, 224, 0.40); background: rgba(128, 64, 224, 0.07); }
  .faq-chip::before { display: none; }
  .response-grid { grid-template-columns: 1fr; }
  .residency { padding: 36px 28px; border-radius: var(--radius); }
  .timeline { padding-left: 52px; }
  .timeline::before { left: 16px; }
  .timeline__node { left: -52px; width: 34px; height: 34px; }
}

/* ── Article / page body content ─────────────────────────────────── */

.entry-content h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); margin: 48px 0 16px; }
.entry-content h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); margin: 36px 0 12px; }
.entry-content h4 { font-size: var(--fs-h4); line-height: var(--lh-h4); margin: 28px 0 10px; }
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child { margin-top: 0; }
.entry-content p  { line-height: 1.8; margin-bottom: 20px; color: rgba(32,32,32,0.80); }
.entry-content p:last-child { margin-bottom: 0; }
.entry-content ul,
.entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { line-height: 1.75; margin-bottom: 6px; color: rgba(32,32,32,0.80); }
.entry-content li > p { margin-bottom: 0; }
.entry-content a  { color: var(--color-teal-deep); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s; }
.entry-content a:hover { color: var(--color-violet); }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); display: block; margin-bottom: 20px; }
.entry-content blockquote {
  border-left: 4px solid var(--color-teal);
  padding: 18px 24px;
  margin: 32px 0;
  background: var(--color-gray-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.entry-content blockquote p { color: rgba(32,32,32,0.72); font-style: italic; margin: 0; }
.entry-content strong { font-weight: 700; color: var(--color-dark); }
.entry-content hr { border: none; border-top: 1px solid var(--color-gray-neutral); margin: 40px 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 28px; overflow-x: auto; display: block; }
.entry-content th,
.entry-content td { padding: 12px 16px; border: 1px solid var(--color-gray-neutral); text-align: left; vertical-align: top; }
.entry-content th { background: var(--color-gray-soft); font-weight: 600; }
.entry-content pre { background: #0c1e2a; color: #e2e8f0; padding: 24px; border-radius: var(--radius); overflow-x: auto; margin-bottom: 24px; font-size: 14px; line-height: 1.7; }
.entry-content code { background: rgba(64,170,204,0.10); color: var(--color-teal-deep); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.entry-content pre code { background: none; color: inherit; padding: 0; border-radius: 0; }

/* ── Post meta (date · read time · author) ───────────────────────── */

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 0;
}
.post-meta__item {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.post-meta__sep {
  padding: 0 10px;
  color: rgba(255,255,255,0.28);
}

/* ── Post featured image ─────────────────────────────────────────── */

.post-featured-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* Single-post hero featured image (right column of the dark header band) */
.single-hero__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

@media (max-width: 991.98px) {
  .single-hero__img { margin-top: 8px; }
}

/* ── Author bio ──────────────────────────────────────────────────── */

.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  background: var(--color-gray-soft);
}
.author-bio__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.author-bio__name {
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 6px;
  font-size: 15px;
}
.author-bio__desc { font-size: 14px; color: rgba(32,32,32,0.68); margin: 0; line-height: 1.65; }

/* ── Native share links ──────────────────────────────────────────── */

.share-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid var(--color-gray-neutral);
}
.share-links__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(32,32,32,0.45);
  margin-right: 4px;
}
.share-links__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(32,32,32,0.65);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.share-links__btn:hover {
  border-color: rgba(128,64,224,0.35);
  color: var(--color-violet);
  background: rgba(128,64,224,0.04);
}

/* ── 404 page ────────────────────────────────────────────────────── */

.error-404__num {
  font-family: var(--font-heading);
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.07);
  margin-bottom: 16px;
  display: block;
}

/* ── Search results ──────────────────────────────────────────────── */

.search-heading__query { color: var(--color-teal-light); }

/* ── WP pagination ───────────────────────────────────────────────── */

.post-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.post-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(32,32,32,0.65);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.post-pagination .page-numbers:hover {
  border-color: rgba(128,64,224,0.35);
  color: var(--color-violet);
  background: rgba(128,64,224,0.04);
}
.post-pagination .page-numbers.current {
  background: var(--color-violet);
  border-color: var(--color-violet);
  color: var(--color-white);
}
.post-pagination .page-numbers.dots {
  border-color: transparent;
  background: none;
}

/* ── CPT taxonomy tag (category pill on cards / singles) ─────────── */

.cpt-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
  border: 1px solid rgba(64,170,204,0.35);
  background: rgba(64,170,204,0.07);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* ── CPT category — taxonomy term display (plain text + brand gradient) ──
   Used for actual taxonomy terms (e.g. cyber-news-category). For literal
   type labels ("Whitepaper"), use .cpt-tag instead. */
.cpt-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-violet); /* fallback if background-clip: text unsupported */
  background-image: linear-gradient(135deg, var(--color-violet) 0%, var(--color-teal-deep) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cpt-category--inverse {
  color: var(--color-teal-light);
  background-image: linear-gradient(135deg, var(--color-violet-soft) 0%, var(--color-teal-light) 100%);
}

/* ── Glossary archive ────────────────────────────────────────────── */

.glossary-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin-top: 24px;
}
.glossary-form__input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s;
}
.glossary-form__input::placeholder { color: rgba(255,255,255,0.40); }
.glossary-form__input:focus { border-color: var(--color-teal); }
.glossary-form__btn {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.18s;
  flex-shrink: 0;
}
.glossary-form__btn:hover { background: var(--color-teal-deep); }

.glossary-entry {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-gray-neutral);
}
.glossary-entry:first-child { border-top: 1px solid var(--color-gray-neutral); }
.glossary-entry__term {
  width: 200px;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--color-teal-deep);
  line-height: 1.3;
}
.glossary-entry__def {
  flex: 1;
  color: rgba(32,32,32,0.75);
  line-height: 1.75;
}
.glossary-entry__def p { margin: 0; }
.glossary-no-results { color: rgba(32,32,32,0.55); font-style: italic; }

@media (max-width: 575.98px) {
  .glossary-entry { flex-direction: column; gap: 8px; }
  .glossary-entry__term { width: 100%; }
}

/* ── Resource download card ──────────────────────────────────────── */

.resource-card {
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(32,32,32,0.07);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
@media (max-width: 991.98px) {
  .resource-card { position: static; top: auto; }
}
.resource-card__header {
  background: linear-gradient(135deg, var(--color-teal-deep) 0%, #148fba 100%);
  padding: 24px 28px;
}
.resource-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}
.resource-card__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin: 6px 0 0;
}
.resource-card__body { padding: 28px; }
.resource-card__form-wrap { min-height: 120px; }

@media (max-width: 575.98px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 30px 16px; }
  .page-subnav__cta { display: none; }
  .tab-btn { padding: 10px 12px; font-size: 13px; }
  .residency { padding: 28px 20px; border-radius: 12px; }
}

/* ══════════════════════════════════════════════════════════════
   PORTED PAGE TEMPLATES (Phase 5)
   Shared building blocks for the inner pages migrated from old-theme.
══════════════════════════════════════════════════════════════ */

/* ── Shared helpers ──────────────────────────────────────────── */
.media-rounded { width: 100%; height: auto; display: block; border-radius: var(--radius); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Check list — common style matching the homepage NIS2 list (teal circle-check) */
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-dark);
}
.list-check li:last-child { margin-bottom: 0; }
.list-check li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--color-teal-deep);
}
.list-check li strong { font-weight: 600; }

/* Light variant — on dark sections the circle flips to teal-light with a deep check */
.list-check--light li { color: rgba(255, 255, 255, 0.85); }
.list-check--light li strong { color: var(--color-white); }
.list-check--light li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23056685' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--color-teal-light);
}

/* ── "What Sets Us Apart" — numbered differentiator list ──────── */
.diff-list {
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid var(--color-gray-neutral);
}
.diff-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px 16px;
  border-bottom: 1px solid var(--color-gray-neutral);
  position: relative;
  transition: padding 0.3s ease, background 0.3s ease;
}
/* Accent bar that grows in on hover */
.diff-item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-teal) 0%, var(--color-violet) 100%);
  transition: height 0.3s ease;
}
.diff-item:hover {
  background: linear-gradient(90deg, rgba(64, 170, 204, 0.07) 0%, rgba(64, 170, 204, 0) 60%);
  padding-left: 26px;
}
.diff-item:hover::before { height: 60%; }

.diff-item__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 60px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.diff-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--color-dark);
  margin: 4px 0 8px;
  transition: color 0.2s ease;
}
.diff-item:hover .diff-item__title { color: var(--color-teal-deep); }
.diff-item__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(32, 32, 32, 0.7);
  margin: 0;
}

@media (max-width: 575.98px) {
  .diff-item { grid-template-columns: 56px 1fr; gap: 18px; padding: 24px 10px; }
}

/* Two-column copy + form split (landing / free-trial / event) */
.lead-split__copy { font-size: 16px; line-height: 1.8; }
.lead-form-card {
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.lead-form-card__title { font-size: var(--fs-h3); line-height: 1.3; margin-bottom: 8px; color: var(--color-dark); }
.lead-form-card p { color: rgba(32, 32, 32, 0.72); }

/* Event landing logo bar */
.event-bar { background: var(--color-white); border-bottom: 1px solid var(--color-gray-neutral); }
.event-bar__logo { max-height: 56px; width: auto; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-quote {
  background: var(--color-gray-soft);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
}
.contact-quote__mark { color: var(--color-violet-soft); margin-bottom: 12px; }
.contact-quote__text { font-size: var(--fs-quote); line-height: 1.6; font-style: italic; color: var(--color-dark); margin: 0 0 20px; border: none; padding: 0; }
.contact-quote__author { font-weight: 600; color: var(--color-dark); margin: 0; }
.contact-quote__author span { display: inline-block; font-weight: 400; color: rgba(32, 32, 32, 0.6); font-size: 14px; }

.contact-details { list-style: none; padding: 0; margin: 0; }
.contact-details__item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; line-height: 1.6; }
.contact-details__item:last-child { margin-bottom: 0; }
.contact-details__item a { color: var(--color-dark); text-decoration: none; font-weight: 600; }
.contact-details__item a:hover { color: var(--color-violet); }
.contact-details__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(64, 170, 204, 0.12);
  color: var(--color-teal-deep);
}
.contact-map { border-radius: var(--radius); overflow: hidden; line-height: 0; }
.contact-map iframe { border: 0; display: block; }

/* ── Experience badge (Who We Are) ───────────────────────────── */
.exp-badge {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius);
  padding: 64px 40px;
  background: linear-gradient(150deg, var(--color-teal-deep) 0%, #0c3e60 50%, var(--color-violet-deep) 100%);
  color: var(--color-white);
  box-shadow: 0 30px 70px rgba(22, 88, 112, 0.28);
}
/* Soft corner glow */
.exp-badge::before {
  content: "";
  position: absolute;
  top: -45%; right: -35%;
  width: 75%; height: 85%;
  background: radial-gradient(circle, rgba(176, 220, 235, 0.40) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Decorative ring */
.exp-badge::after {
  content: "";
  position: absolute;
  bottom: -70px; left: -70px;
  width: 220px; height: 220px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.exp-badge__num,
.exp-badge__label,
.exp-badge__sub { position: relative; z-index: 1; }
.exp-badge__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(64px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-shadow: 0 0 40px rgba(176, 220, 235, 0.35);
}
.exp-badge__num span { color: var(--color-teal-light); }
.exp-badge__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 12px;
  color: var(--color-white);
}
.exp-badge__sub {
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 8px;
}

/* ── Value cards (icon feature, adapts to light & dark) ──────── */
/* Feature card — inner-page icon/feature card (distinct from the theme's .value-card,
   which stays reserved for the homepage values + service-page feature grid).
   Gradient background that brightens on hover, matching the .card-service blocks. */
.feature-card {
  position: relative;
  height: 100%;
  border: 1.5px solid rgba(64, 170, 204, 0.16);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  background: linear-gradient(155deg, var(--color-white) 0%, #EBF5F8 100%);
  box-shadow: 0px 6px 40px 0px rgba(22, 88, 112, 0.09);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #A8DFEB 0%, #EEF9FB 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(64, 170, 204, 0.40);
  box-shadow: 0 24px 80px rgba(64, 170, 204, 0.22);
}
.feature-card:hover::after { opacity: 1; }

.feature-card--row { display: flex; text-align: left; gap: 18px; align-items: flex-start; }
.feature-card__icon { display: inline-flex; align-items: center; justify-content: center; color: var(--color-teal-deep); margin-bottom: 18px; flex-shrink: 0; }
.feature-card--row .feature-card__icon { margin-bottom: 0; }
.feature-card__title { font-family: var(--font-heading); font-size: var(--fs-h4); font-weight: 600; color: var(--color-teal-deep); margin-bottom: 10px; }
.feature-card__desc { font-size: 15px; line-height: 1.7; margin: 0; color: rgba(32, 32, 32, 0.8); }

/* ── Team grid ───────────────────────────────────────────────── */
.team-card { height: 100%; padding-bottom: 20px; }
.team-card__photo { border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; background: var(--color-gray-soft); aspect-ratio: 1 / 1; }
.team-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__name { font-size: var(--fs-h4); margin-bottom: 4px; }
.team-card__role { color: var(--color-teal-deep); margin-bottom: 12px; }
.team-card__contact { list-style: none; padding: 0; margin: 0; }
.team-card__contact li { margin-bottom: 4px; }
.team-card__contact a { color: rgba(32, 32, 32, 0.8); text-decoration: none; word-break: break-word; }
.team-card__contact a:hover { color: var(--color-violet); text-decoration: underline; }

/* ── Partner cards ───────────────────────────────────────────── */
.partner-card {
  height: 100%;
  display: flex; gap: 24px; align-items: center;
  border: 1px solid var(--color-gray-neutral);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.partner-card:hover { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); transform: translateY(-3px); }
.partner-card__logo { flex-shrink: 0; width: 120px; display: flex; align-items: center; justify-content: center; }
.partner-card__logo img { max-width: 100%; height: auto; }
.partner-card__name { font-size: var(--fs-h4); margin-bottom: 6px; }
.partner-card__desc { font-size: 14px; line-height: 1.65; color: rgba(32, 32, 32, 0.7); margin: 0; }

/* ── Thank-you / download icon ───────────────────────────────── */
.thank-you__icon { display: inline-flex; color: var(--color-violet); margin-bottom: 24px; }

/* ── Step cards (process) ────────────────────────────────────── */
.step-card { height: 100%; padding: 28px; border-radius: var(--radius); background: var(--color-white); border: 1px solid var(--color-gray-neutral); }
.step-card__num { font-family: var(--font-heading); font-weight: 700; font-size: 28px; color: var(--color-violet); }
.step-card__title { font-size: var(--fs-h4); margin: 10px 0 8px; }
.step-card__desc { font-size: 15px; line-height: 1.7; }

/* ── Video embed (16:9) ──────────────────────────────────────── */
.video-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── Buyers Guide assessment ─────────────────────────────────── */
.assessment { max-width: 820px; margin: 0 auto; position: relative; }
.assessment__loader { display: flex; justify-content: center; padding: 60px 0; }
.assessment__form { background: var(--color-white); color: var(--color-dark); border-radius: var(--radius); padding: 36px; }
.assessment__q { border: none; padding: 0 0 24px; margin: 0 0 24px; border-bottom: 1px solid var(--color-gray-neutral); }
.assessment__q-title { font-family: var(--font-heading); font-weight: 600; font-size: 17px; line-height: 1.5; margin-bottom: 14px; padding: 0; }
.assessment__choices { display: flex; gap: 12px; margin-bottom: 14px; }
.assessment__choice { display: inline-flex; align-items: center; gap: 8px; padding: 8px 22px; border: 1px solid var(--color-gray-neutral); border-radius: var(--r-sm); cursor: pointer; font-weight: 600; transition: border-color 0.15s, background 0.15s; }
.assessment__choice:has(input:checked) { border-color: var(--color-violet); background: rgba(128, 64, 224, 0.06); }
.assessment__choice input { accent-color: var(--color-violet); }
.assessment__help { font-size: 14px; line-height: 1.65; color: rgba(32, 32, 32, 0.62); margin: 0; }
.assessment__submit { margin-top: 8px; }

.assessment__result { background: var(--color-white); color: var(--color-dark); border-radius: var(--radius); padding: 40px 36px; }
.assessment__verdict { text-align: center; margin-bottom: 8px; }
.assessment__verdict--high { color: #dc2626; }
.assessment__verdict--low { color: var(--color-teal-deep); }
.assessment__recs { margin: 30px 0; }
.assessment__rec { padding: 22px 24px; border-radius: var(--radius); background: var(--color-gray-soft); margin-bottom: 16px; }
.assessment__rec--summary { background: rgba(64, 170, 204, 0.08); }
.assessment__rec-title { font-size: var(--fs-h4); margin-bottom: 6px; }
.assessment__rec-lead { font-size: 14px; color: rgba(32, 32, 32, 0.7); margin-bottom: 12px; }
.assessment__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 24px; }
.assessment__consult { margin-top: 40px; }

/* ── Breach Check Tool (multi-step) ──────────────────────────── */
.breach-tool__step { max-width: 560px; margin: 0 auto; text-align: center; }
.breach-tool__sub { color: rgba(32, 32, 32, 0.68); margin-bottom: 28px; }
.breach-tool__heading { margin-bottom: 14px; }
.breach-tool__field {
  display: flex; align-items: center; gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-neutral);
  border-radius: 40px;
  padding: 6px 18px;
  margin-bottom: 16px;
}
.breach-tool__field:focus-within { border-color: var(--color-violet); box-shadow: 0 0 0 3px rgba(128, 64, 224, 0.10); }
.breach-tool__icon { color: rgba(32, 32, 32, 0.4); flex-shrink: 0; }
.breach-tool__input { flex: 1; min-width: 0; border: none; background: transparent; font-family: var(--font-body); font-size: 15px; color: var(--color-dark); padding: 10px 0; }
.breach-tool__input:focus { outline: none; }
.breach-tool__input::placeholder { color: rgba(32, 32, 32, 0.4); }

/* Consent row — custom checkbox aligned to the first line of text */
.breach-tool__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(32, 32, 32, 0.7);
  margin-bottom: 22px;
  cursor: pointer;
}
.breach-tool__consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  position: relative;
  border: 1.5px solid var(--color-gray-neutral);
  border-radius: 6px;
  background: var(--color-white);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.breach-tool__consent input[type="checkbox"]:hover { border-color: var(--color-violet); }
.breach-tool__consent input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(128, 64, 224, 0.20);
}
.breach-tool__consent input[type="checkbox"]:checked {
  background-color: var(--color-violet);
  border-color: var(--color-violet);
}
.breach-tool__consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.breach-tool__consent span { flex: 1; }
.breach-tool__consent a { color: var(--color-teal-deep); font-weight: 600; text-underline-offset: 2px; }
.breach-tool__consent a:hover { color: var(--color-violet); }

.breach-tool__btn { display: flex; width: 100%; justify-content: center; border-radius: 40px; padding: 14px 32px; }
.breach-tool__status { min-height: 22px; margin: 14px 0 0; font-size: 14px; color: #dc2626; }
.breach-tool__note { font-size: 13px; color: rgba(32, 32, 32, 0.5); margin-top: 22px; }
.breach-tool__note a { color: var(--color-teal-deep); }
.breach-tool__outcome-icon { display: inline-flex; margin-bottom: 18px; }
.breach-tool__outcome-icon--ok { color: #16a34a; }
.breach-tool__outcome-icon--err { color: #dc2626; }
.breach-spinner--lg { width: 44px; height: 44px; border-width: 3px; margin: 0 auto; }

/* ── Breach Results report ───────────────────────────────────── */
.breach-report__eyebrow { color: rgba(32, 32, 32, 0.6); font-size: 14px; }
.breach-report__verdict { text-transform: uppercase; letter-spacing: 0.02em; }
.breach-report__verdict--high, .breach-report__verdict--med { color: #dc2626; }
.breach-report__verdict--low { color: var(--color-teal-deep); }
.breach-report__verdict--clean { color: #16a34a; }
.breach-report { background: var(--color-white); color: var(--color-dark); border-radius: var(--radius); padding: 36px; }
.breach-report__summary { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--color-gray-neutral); }
.breach-report__num { font-family: var(--font-heading); font-weight: 700; font-size: 44px; line-height: 1; color: #dc2626; }
.breach-report__num-label { display: block; font-size: 13px; color: rgba(32, 32, 32, 0.6); margin-top: 4px; }
.breach-report__body p { color: rgba(32, 32, 32, 0.8); }
.breach-report__cta { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--color-gray-neutral); }
.breach-report--clean { text-align: center; }
.breach-report--clean .breach-tool__outcome-icon { color: #16a34a; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .partner-card { flex-direction: column; text-align: center; gap: 16px; }
  .partner-card__logo { width: 140px; }
  .assessment__form, .assessment__result { padding: 26px 20px; }
  .breach-report { padding: 26px 22px; }
}

/* ── Mobile nav: full-screen canvas ──────────────────────── */
@media (max-width: 991.98px) {

  .navbar-toggler { border: none; padding: 6px; }
  .navbar-toggler:focus { box-shadow: none; }

  body.nav-open { overflow: hidden; }

  /* The Bootstrap collapse element becomes a fixed full-screen panel. */
  #siteNav.navbar-collapse {
    position: fixed;
    inset: 0;
    z-index: 1090;
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    flex-direction: column;
    padding: 84px 24px calc(28px + env(safe-area-inset-bottom));
    background: var(--color-white);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  }
  /* Neutralise Bootstrap's height animation — visuals are driven by .show. */
  #siteNav.navbar-collapse.collapsing {
    height: 100dvh !important;
    overflow-y: auto;
    transition: none !important;
  }
  #siteNav.navbar-collapse.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.28s ease, visibility 0s;
  }

  /* Subtle entrance for the contents — translateY is clipped by the panel,
     so it can never add document scroll the way an off-screen panel would. */
  #siteNav .navbar-nav,
  #siteNav .site-nav__actions {
    transform: translateY(12px);
    transition: transform 0.34s ease;
  }
  #siteNav.show .navbar-nav,
  #siteNav.show .site-nav__actions { transform: none; }

  /* Close (×) button inside the canvas — fixed so it stays put while it scrolls */
  .mobile-nav-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--color-gray-soft);
    color: var(--color-dark);
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
  }
  .mobile-nav-close:hover { color: var(--color-violet); background: var(--color-gray-neutral); }

  /* Nav list — stacked, full-width rows */
  .site-nav .navbar-nav {
    margin: 0 !important;
    width: 100%;
    gap: 0;
    flex-direction: column;
  }
  .site-nav .navbar-nav > .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-gray-neutral);
  }
  .site-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 2px;
    font-size: 18px;
    font-weight: 600;
  }
  .site-nav .nav-item.mega-menu-wrapper .mega-trigger {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
  }
  .site-nav .nav-link.dropdown-toggle::after { margin-left: auto; transition: transform 0.2s ease; }
  .site-nav .mega-menu-wrapper.is-open .mega-trigger::after,
  .site-nav .nav-item.dropdown.show .nav-link.dropdown-toggle::after { transform: rotate(180deg); }

  /* Mega menus → inline accordion panels */
  .site-nav .mega-menu {
    position: static;
    width: 100%;
    background: transparent;
    border-top: none;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    display: none;
  }
  .site-nav .mega-menu-wrapper.is-open > .mega-menu { display: block; }
  .site-nav .mega-menu__inner {
    display: block;
    grid-template-columns: none;
    max-width: none;
    padding: 4px 0 16px;
  }
  .site-nav .mega-menu__col { margin-bottom: 4px; }
  .site-nav .mega-menu__col-label { margin-top: 14px; }
  /* Keep the featured/breach cards' own gradient backgrounds — just space them. */
  .site-nav .mega-menu__featured,
  .site-nav .mega-breach { margin-top: 14px; }

  /* The "latest" reel animates only on hover, so show the newest headline
     statically on touch instead of leaving an empty box. */
  .site-nav .mega-latest-line__reel { height: auto; }
  .site-nav .mega-reel__slide { position: static; opacity: 1; animation: none; }
  .site-nav .mega-reel__slide ~ .mega-reel__slide { display: none; }

  /* Bootstrap dropdown (About Us) → inline */
  .site-nav .nav-item.dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    box-shadow: none;
    padding: 0 0 12px 8px;
    margin: 0;
  }

  /* Actions: CTA + language pinned below the list */
  .site-nav__actions {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch !important;
    gap: 16px !important;
  }
  .site-nav__actions .btn-primary { width: 100%; justify-content: center; }
  .site-nav__actions .dropdown { align-self: center; }
  .site-nav__actions .dropdown-menu { position: static !important; transform: none !important; }
}

/* ── WPML "also available in" post-translations switcher ──── */
.wpml-ls-statics-post_translations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  padding: 14px 18px;
  background: var(--color-gray-soft);
  border: 1px solid var(--color-gray-neutral);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(32, 32, 32, 0.72);
}

.wpml-ls-statics-post_translations [role="menu"] {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wpml-ls-statics-post_translations .wpml-ls-item { display: inline-flex; }

.wpml-ls-statics-post_translations .wpml-ls-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-gray-neutral);
  border-radius: 999px;
  color: var(--color-violet);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.wpml-ls-statics-post_translations .wpml-ls-link:hover,
.wpml-ls-statics-post_translations .wpml-ls-link:focus-visible {
  background: var(--color-violet);
  border-color: var(--color-violet);
  color: #fff;
  box-shadow: 0 6px 18px rgba(128, 64, 224, 0.28);
}

.wpml-ls-statics-post_translations .wpml-ls-flag {
  width: 20px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(10, 28, 34, 0.12);
}

.wpml-ls-statics-post_translations .wpml-ls-native { line-height: 1; }