/* homepage-v2-lean-hero */
/* QARA PULSE corporate — tokens from Qapsule landing */
:root {
  --navy: #002850;
  --navy-deep: #001a36;
  --navy-mid: #003366;
  --teal: #00c2cb;
  --teal-bright: #0bcaca;
  --lavender: #b2aaff;
  --ice: #f6fbff;
  --white: #ffffff;
  --text: #0a1f33;
  --text-muted: #5a6f85;
  --border: rgba(0, 40, 80, 0.1);
  --radius: 16px;
  --radius-pill: 100px;
  --shadow: 0 24px 64px rgba(0, 26, 54, 0.18);
  --font: "General Sans", "Satoshi", system-ui, -apple-system, sans-serif;
  --font-display: "Satoshi", "General Sans", system-ui, sans-serif;
  --max: 1120px;
  --booking: https://bookings.cloud.microsoft/book/QARAPULSE1@qarapulse.com/?ismsaljsauthenabled;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding-inline: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.eyebrow--light {
  color: rgba(246, 251, 255, 0.7);
}

.eyebrow--light::before {
  background: rgba(0, 194, 203, 0.65);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.25rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.lead--light {
  color: rgba(246, 251, 255, 0.78);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 194, 203, 0.28);
}

.btn-primary:hover {
  background: #1ad0d8;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--ice);
  border: 1px solid rgba(246, 251, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(246, 251, 255, 0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--ice);
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(0, 40, 80, 0.18);
}

.btn-outline:hover {
  background: rgba(0, 40, 80, 0.04);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 26, 54, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(246, 251, 255, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

/* Official white lockup (orb + QARAPULSE) — for dark navy header/footer only */
.logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: min(168px, 42vw);
}

.site-footer .logo img {
  height: 40px;
  max-width: min(200px, 70vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 251, 255, 0.18);
  background: rgba(246, 251, 255, 0.05);
  backdrop-filter: blur(12px);
}

.nav a {
  color: rgba(246, 251, 255, 0.85);
  font-size: 0.8125rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ice);
  background: rgba(246, 251, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 251, 255, 0.18);
  background: rgba(246, 251, 255, 0.05);
}

.lang-switch a {
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(246, 251, 255, 0.55);
}

.lang-switch a.is-active {
  background: var(--teal);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246, 251, 255, 0.2);
  color: var(--ice);
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 8.5rem 0 4.25rem;
  min-height: min(78vh, 40rem);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 85% 75% at 88% 8%, rgba(0, 194, 203, 0.26), rgba(0, 194, 203, 0.1) 32%, transparent 72%),
    radial-gradient(ellipse 55% 48% at 10% 90%, rgba(178, 170, 255, 0.16), transparent 62%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 42%, #003a5c 72%, #004266 100%);
  color: var(--ice);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  /* Soft radial only — no hard circular clip that reads as a seam */
  border-radius: 0;
  filter: blur(56px);
}

.hero-orb--teal {
  width: min(78vw, 52rem);
  height: min(78vw, 52rem);
  right: -22%;
  top: -28%;
  background: radial-gradient(
    circle at 42% 38%,
    rgba(0, 194, 203, 0.48) 0%,
    rgba(0, 194, 203, 0.18) 28%,
    rgba(0, 194, 203, 0.05) 48%,
    transparent 68%
  );
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.hero-orb--lavender {
  width: min(58vw, 36rem);
  height: min(58vw, 36rem);
  left: -16%;
  bottom: -24%;
  background: radial-gradient(
    circle at 55% 45%,
    rgba(178, 170, 255, 0.36) 0%,
    rgba(178, 170, 255, 0.1) 32%,
    transparent 64%
  );
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}

.hero-plane {
  position: absolute;
  inset: 6% -12% auto 28%;
  height: 68%;
  background:
    linear-gradient(118deg, transparent 0%, rgba(246, 251, 255, 0.035) 42%, rgba(0, 194, 203, 0.07) 58%, transparent 100%);
  /* Soft mask instead of hard clip-path polygon (was creating geometric seams) */
  mask-image: radial-gradient(ellipse 85% 75% at 58% 48%, #000 5%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 58% 48%, #000 5%, transparent 72%);
  transform: skewY(-3deg);
  opacity: 0.75;
}

.hero-grid-wash {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 251, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 251, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  /* Wide soft veil so the grid continues under the teal glow — no mid-hero cutoff */
  mask-image: radial-gradient(ellipse 120% 95% at 58% 42%, #000 18%, rgba(0, 0, 0, 0.55) 55%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 120% 95% at 58% 42%, #000 18%, rgba(0, 0, 0, 0.55) 55%, transparent 82%);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

/* Keep container max-width when paired with .hero-grid (service heroes) */
.container.hero-grid {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero-copy {
  animation: rise-in 0.75s ease both;
}

.hero-copy h1 {
  margin: 0;
  max-width: 22ch;
}

.hero-copy .lead {
  margin-bottom: 1.5rem;
}

.hero-grid--solo {
  grid-template-columns: 1fr;
  max-width: min(46rem, 100%);
  margin-inline: auto;
  width: min(100% - 2.5rem, var(--max));
}

.hero-promise {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.65rem;
}

.hero-promise h1,
.hero-promise-line {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: var(--ice);
  max-width: 22ch;
}

.hero-promise-line {
  margin: 0;
}

.hero-promise .accent {
  font-style: normal;
  color: var(--teal);
}

.hero-how {
  position: relative;
  margin: 0 0 1.85rem;
  padding: 0.15rem 0 0.15rem 1.1rem;
  max-width: 28rem;
  border-left: 2px solid rgba(0, 194, 203, 0.7);
  animation: rise-in 0.85s ease 0.12s both;
}

.hero-how p {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.98rem, 1.5vw, 1.125rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.55;
  color: rgba(246, 251, 255, 0.72);
}

.hero-how p + p {
  margin-top: 0.35rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
  animation: rise-in 0.85s ease 0.22s both;
}

.hero-note {
  font-size: 0.8125rem;
  color: rgba(246, 251, 255, 0.55);
}

.standards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
}

.standard-chip {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(246, 251, 255, 0.08);
  color: rgba(246, 251, 255, 0.8);
  border: 1px solid rgba(246, 251, 255, 0.14);
}

.standards-strip {
  padding: 1.75rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.standards-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.standards-strip-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.standards--on-light .standard-chip {
  background: var(--ice);
  color: var(--navy);
  border: 1px solid rgba(0, 40, 80, 0.12);
}

.standards--on-light .standard-chip:hover {
  border-color: rgba(0, 194, 203, 0.45);
  color: var(--navy-deep);
}

@keyframes orb-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-2.5%, 3%, 0) scale(1.06);
  }
}

.hero-panel {
  display: grid;
  gap: 0.85rem;
}

.persona-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(246, 251, 255, 0.06);
  border: 1px solid rgba(246, 251, 255, 0.14);
  backdrop-filter: blur(16px);
  animation: rise-in 0.7s ease both;
}

.persona-card:nth-child(2) {
  animation-delay: 0.12s;
}

.persona-card .label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

.persona-card h3 {
  color: var(--ice);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.persona-card p {
  font-size: 0.875rem;
  color: rgba(246, 251, 255, 0.68);
  margin-bottom: 0.9rem;
}

.persona-card .btn {
  width: 100%;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Proof bar */
.proof-bar {
  padding: 2.25rem 0;
  background: var(--ice);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.proof-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 48rem;
  margin-inline: auto;
}

.hero-proof-block {
  margin: 1.75rem 0 1.35rem;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(246, 251, 255, 0.12);
  max-width: 40rem;
  animation: rise-in 0.85s ease 0.18s both;
}

.hero-proof-label {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 251, 255, 0.55);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
}

.hero-proof .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--ice);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.hero-proof .stat span {
  font-size: 0.75rem;
  color: rgba(246, 251, 255, 0.6);
  line-height: 1.35;
}

.cred-claim {
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0, 194, 203, 0.35);
  box-shadow: 0 12px 32px rgba(0, 40, 80, 0.06);
}

.cred-claim strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.cred-claim p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .hero-proof,
  .proof-grid--3 {
    grid-template-columns: 1fr;
  }
}

.proof-item {
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.proof-item span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.proof-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-header .lead {
  margin-top: 0.85rem;
}

.section-header .lead + .lead {
  margin-top: 0.75rem;
}

.section--ice {
  background: var(--ice);
}

.section--navy {
  background:
    radial-gradient(ellipse 55% 50% at 10% 0%, rgba(0, 194, 203, 0.14), transparent 55%),
    var(--navy);
  color: var(--ice);
}

.section--navy .lead {
  color: rgba(246, 251, 255, 0.72);
}

/* Approach — complementary pillars */
.approach-compose {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.approach-pillar {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 40, 80, 0.04);
  color: inherit;
}

a.approach-pillar {
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

a.approach-pillar:hover {
  border-color: rgba(0, 194, 203, 0.4);
  box-shadow: 0 14px 36px rgba(0, 40, 80, 0.08);
  transform: translateY(-2px);
}

a.approach-pillar:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-color: rgba(0, 194, 203, 0.4);
  box-shadow: 0 14px 36px rgba(0, 40, 80, 0.08);
}

.approach-pillar-visual {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-height: 11.5rem;
  margin-bottom: 1.35rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ice);
  border: 1px solid rgba(0, 40, 80, 0.1);
  box-shadow: 0 6px 18px rgba(0, 40, 80, 0.06);
}

.apv-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  background: rgba(0, 40, 80, 0.05);
  border-bottom: 1px solid rgba(0, 40, 80, 0.08);
}

.apv-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 40, 80, 0.18);
}

.apv-chrome span:nth-child(1) { background: #ff6b6b; opacity: 0.7; }
.apv-chrome span:nth-child(2) { background: #ffd166; opacity: 0.75; }
.apv-chrome span:nth-child(3) { background: #06d6a0; opacity: 0.7; }

.apv-body {
  flex: 1;
  min-height: 8.75rem;
  margin: 0.65rem;
  padding: 1rem 0.9rem;
  border-radius: 8px;
  border: 1.5px dashed rgba(0, 40, 80, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  box-sizing: border-box;
}

.apv-body--experts {
  background:
    linear-gradient(135deg, rgba(0, 40, 80, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.7);
}

.apv-body--system {
  background:
    linear-gradient(135deg, rgba(0, 194, 203, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.7);
}

.apv-body--report {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(0, 194, 203, 0.16), transparent 55%),
    linear-gradient(160deg, rgba(0, 40, 80, 0.07), transparent 60%),
    rgba(255, 255, 255, 0.72);
}

.apv-doc {
  position: relative;
  width: 5.6rem;
  height: 4.4rem;
}

.apv-doc-stack {
  position: absolute;
  inset: 0.35rem -0.35rem -0.35rem 0.35rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(0, 40, 80, 0.1), rgba(0, 194, 203, 0.08));
  border: 1px solid rgba(0, 40, 80, 0.08);
  transform: rotate(4deg);
}

.apv-doc-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.55rem 0.6rem 0.5rem;
  border-radius: 10px;
  background:
    linear-gradient(165deg, rgba(246, 251, 255, 0.95), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(0, 40, 80, 0.1);
  box-shadow:
    0 10px 24px rgba(0, 40, 80, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.apv-doc-seal {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(246, 251, 255, 0.9), transparent 50%),
    linear-gradient(145deg, var(--teal), rgba(0, 40, 80, 0.85));
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.16);
  margin-bottom: 0.1rem;
}

.apv-doc-line {
  display: block;
  height: 0.28rem;
  width: 100%;
  border-radius: 3px;
  background: rgba(0, 40, 80, 0.12);
}

.apv-doc-line--mid {
  width: 78%;
  background: linear-gradient(90deg, rgba(0, 40, 80, 0.16), rgba(0, 194, 203, 0.2));
}

.apv-doc-line--short {
  width: 52%;
}

.apv-doc-path {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: auto;
  padding-top: 0.2rem;
}

.apv-doc-path i {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(0, 40, 80, 0.14);
  box-shadow: 0 0 0 2px rgba(0, 40, 80, 0.04);
}

.apv-doc-path i.is-done {
  background: rgba(0, 194, 203, 0.55);
}

.apv-doc-path i.is-active {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.2);
  animation: approach-pulse 2.4s ease-in-out infinite;
}

.apv-people {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
}

.apv-people span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(0, 40, 80, 0.35), rgba(0, 194, 203, 0.25));
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 40, 80, 0.1);
}

.apv-people span:nth-child(2) {
  transform: translateY(-0.3rem);
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.45), rgba(0, 40, 80, 0.2));
}

.apv-line {
  display: flex;
  gap: 0.35rem;
  width: 70%;
}

.apv-line i {
  display: block;
  height: 0.35rem;
  flex: 1;
  border-radius: 4px;
  background: rgba(0, 40, 80, 0.12);
}

.apv-line i:first-child {
  background: linear-gradient(90deg, var(--navy), var(--teal));
  flex: 1.4;
}

.apv-flow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  justify-content: center;
}

.apv-flow span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.15);
  animation: approach-pulse 2.4s ease-in-out infinite;
}

.apv-flow span:nth-child(2) { animation-delay: 0.2s; opacity: 0.85; }
.apv-flow span:nth-child(3) { animation-delay: 0.4s; opacity: 0.7; }
.apv-flow span:nth-child(4) { animation-delay: 0.6s; opacity: 0.55; }

@keyframes approach-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.apv-caption {
  margin: 0.2rem 0 0;
  min-height: 2.1em;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(0, 40, 80, 0.55);
}

.approach-pillar-label {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.approach-pillar h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.approach-pillar-body {
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

.approach-pillar-bullets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.approach-pillar-bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.approach-pillar-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.approach-pillar:target {
  border-color: rgba(0, 194, 203, 0.45);
  box-shadow: 0 14px 36px rgba(0, 40, 80, 0.08);
}

.approach-tools {
  margin-bottom: 2.5rem;
}

.approach-tools .ecosystem-logos {
  padding-top: 0;
}

.approach-followup {
  margin-top: 2.25rem;
  max-width: 40rem;
}

.approach-followup .bridge-note {
  margin-bottom: 1.35rem;
}

.approach-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.5rem;
}

.approach-bridge-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.2), rgba(0, 40, 80, 0.08));
  border: 1px solid rgba(0, 194, 203, 0.4);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.approach-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.approach-values li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.approach-values strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.approach-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Services focus — Sparta-like row grid, QARA brand */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 40, 80, 0.04);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

a.svc-row {
  cursor: pointer;
}

a.svc-row:hover {
  border-color: rgba(0, 194, 203, 0.4);
  box-shadow: 0 14px 36px rgba(0, 40, 80, 0.08);
  transform: translateY(-2px);
}

a.svc-row:hover .svc-chevron {
  color: var(--teal);
  transform: translateX(3px);
}

.svc-row--static {
  grid-template-columns: auto 1fr;
}

.svc-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
}

.svc-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: var(--teal);
}

.svc-icon--strategy {
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.18), rgba(0, 40, 80, 0.06));
}

.svc-icon--ce {
  background: linear-gradient(145deg, rgba(0, 40, 80, 0.12), rgba(0, 194, 203, 0.1));
}

.svc-icon--eqms {
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.12), rgba(0, 51, 102, 0.08));
}

.svc-icon--audit {
  background: linear-gradient(145deg, rgba(0, 40, 80, 0.1), rgba(0, 194, 203, 0.14));
}

.svc-icon--connect {
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.16), rgba(0, 40, 80, 0.06));
}

.svc-icon--detect {
  background: linear-gradient(145deg, rgba(0, 40, 80, 0.11), rgba(0, 194, 203, 0.12));
}

.svc-icon--evidence {
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.12), rgba(0, 51, 102, 0.08));
}

.svc-icon--evolve {
  background: linear-gradient(145deg, rgba(0, 40, 80, 0.1), rgba(0, 194, 203, 0.16));
}

.section-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.75rem;
}

.svc-copy h3 {
  margin: 0.1rem 0 0.4rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.svc-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.svc-chevron {
  display: grid;
  place-items: center;
  align-self: center;
  width: 1.75rem;
  height: 1.75rem;
  color: rgba(0, 40, 80, 0.35);
  transition: color 0.22s ease, transform 0.22s ease;
}

.together-line {
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 194, 203, 0.35);
  background: rgba(0, 194, 203, 0.1);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ice);
  animation: rise-in 0.8s ease both;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
}

.offer-stack {
  display: grid;
  gap: 0.85rem;
}

.offer-card {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}

.offer-card.is-hero {
  border-color: rgba(0, 194, 203, 0.35);
  box-shadow: 0 16px 40px rgba(0, 40, 80, 0.08);
}

.offer-card .tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
}

.offer-card h3 {
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.offer-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.offer-card .link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.offer-card .link:hover {
  color: var(--teal);
}

/* Credibility */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cred-item {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}

.cred-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.cred-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.partners-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.partner-feature,
.partner-logo-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}

.partner-feature img {
  width: min(100%, 12rem);
  height: auto;
  margin-bottom: 1rem;
}

.partner-feature p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
}

.partner-logo-card img {
  height: 4.5rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
}

.partner-logo-card span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
}

.sovereignty {
  margin-top: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(0, 194, 203, 0.12), transparent 55%),
    var(--navy);
  color: var(--ice);
}

.sovereignty h3 {
  margin-bottom: 0.45rem;
}

.sovereignty p {
  font-size: 0.9375rem;
  color: rgba(246, 251, 255, 0.72);
  max-width: 42rem;
}

/* FAQ — accordion left, navy contact cartouche right (stack <960px) */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  column-gap: 3.5rem;
  row-gap: 2.5rem;
  align-items: start;
}

.faq-main {
  min-width: 0;
  grid-column: 1;
}

.faq-main .section-header {
  margin-bottom: 1.75rem;
  max-width: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary:focus {
  outline: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq-item[open] .faq-body {
  animation: faq-reveal 0.28s ease;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (interpolate-size: allow-keywords) {
  .faq-item {
    interpolate-size: allow-keywords;
  }

  .faq-item::details-content {
    block-size: 0;
    overflow: clip;
    transition:
      block-size 0.28s ease,
      content-visibility 0.28s allow-discrete;
  }

  .faq-item[open]::details-content {
    block-size: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after,
  .faq-item::details-content {
    transition: none;
  }

  .faq-item[open] .faq-body {
    animation: none;
  }
}

.faq-contact {
  grid-column: 2;
  align-self: start;
  position: sticky;
  top: 6.5rem;
  width: 100%;
  max-width: 22rem;
  padding: 2rem 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(0, 194, 203, 0.22), transparent 55%),
    linear-gradient(160deg, var(--navy-deep), var(--navy-mid));
  color: var(--ice);
  box-shadow: var(--shadow);
}

.faq-contact h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.faq-contact > p:not(.faq-contact-note) {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(246, 251, 255, 0.78);
  margin-bottom: 1.5rem;
}

.faq-contact .btn {
  width: 100%;
}

.faq-contact .btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.faq-contact-note {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(246, 251, 255, 0.55);
}

/* Final CTA */
.final-cta {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(178, 170, 255, 0.16), transparent 50%),
    linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: var(--ice);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 0.85rem;
}

.final-cta .lead {
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.final-cta .hero-ctas {
  justify-content: center;
}

/* Stub pages */
.page-hero {
  padding: 8.5rem 0 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(0, 194, 203, 0.14), transparent 55%),
    linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: var(--ice);
}

.page-hero h1 {
  margin-bottom: 0.85rem;
}

.stub-panel {
  margin-top: -2rem;
  padding-bottom: 5rem;
}

.stub-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 40, 80, 0.06);
}

.stub-card h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.stub-card p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.stub-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.stub-card li {
  margin-bottom: 0.35rem;
}

/* Contact page */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.25rem;
  background:
    radial-gradient(ellipse 60% 50% at 18% 8%, rgba(0, 194, 203, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 88% 20%, rgba(178, 170, 255, 0.12), transparent 50%),
    linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: var(--ice);
}

.contact-hero .hero-atmosphere {
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.contact-hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 0.85rem;
}

.contact-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
}

.contact-hero .lead {
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.contact-hero .hero-ctas {
  margin-bottom: 0.75rem;
}

.contact-hero .hero-note {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(246, 251, 255, 0.55);
}

.contact-channels {
  padding-block: 4.5rem;
}

.contact-channels .section-header {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 44rem;
}

.contact-channel {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.contact-channel:hover {
  border-color: rgba(0, 194, 203, 0.45);
  background: rgba(0, 194, 203, 0.04);
  transform: translateX(3px);
}

.contact-channel--primary {
  background: linear-gradient(160deg, rgba(0, 194, 203, 0.12), rgba(0, 194, 203, 0.03));
  border-color: rgba(0, 194, 203, 0.35);
}

.contact-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--ice);
  color: var(--navy);
  flex-shrink: 0;
}

.contact-channel--primary .contact-channel-icon {
  background: rgba(0, 194, 203, 0.18);
  color: var(--navy);
}

.contact-channel:hover .contact-channel-icon {
  background: var(--teal);
  color: var(--navy);
}

.contact-channel-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel-icon svg.is-fill {
  fill: currentColor;
  stroke: none;
}

.contact-channel-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-channel-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.3;
}

.contact-channel-value {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-channel-arrow {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-channel:hover .contact-channel-arrow {
  color: var(--teal);
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .contact-channel,
  .contact-channel-arrow {
    transition: none;
  }

  .contact-channel:hover {
    transform: none;
  }

  .contact-channel:hover .contact-channel-arrow {
    transform: none;
  }
}

.service-anchors {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.service-anchors li {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--ice);
  scroll-margin-top: 6rem;
}

.service-anchors strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.service-anchors p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-anchors li[hidden] {
  display: none;
}

/* Footer — brand + 5 columns, Sparta-like breathing (spacing only) */
.site-footer {
  background: var(--navy-deep);
  color: rgba(246, 251, 255, 0.65);
  padding: 3.5rem 0 2.25rem;
}

/* Desktop: brand left | Services→Langue compact cluster right */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: start;
  column-gap: 3.25rem;
  row-gap: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2.75rem;
}

.footer-brand {
  min-width: 0;
  max-width: 15.5rem;
  flex: 0 1 15.5rem;
}

.footer-brand .footer-tagline {
  margin-top: 0.85rem;
}

.footer-tagline p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(246, 251, 255, 0.72);
}

.footer-tagline p + p {
  margin-top: 0.35rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(246, 251, 255, 0.85);
  transition: color 0.15s ease;
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-social:hover {
  color: var(--teal);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  column-gap: 1.75rem;
  row-gap: 1.75rem;
  width: auto;
  min-width: 0;
  margin-left: auto;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.95rem;
}

.footer-col a,
.footer-col .footer-soon {
  display: block;
  font-size: 0.84rem;
  line-height: 1.4;
  margin-bottom: 0.55rem;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-col .footer-location {
  color: rgba(246, 251, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-col .footer-location:hover {
  color: var(--teal);
}

.footer-col .footer-soon {
  color: rgba(246, 251, 255, 0.4);
  cursor: default;
}

.footer-col .footer-soon em {
  display: inline-block;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 0.25rem;
  color: rgba(246, 251, 255, 0.35);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 251, 255, 0.1);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom > span {
  flex-shrink: 0;
}

.footer-bottom a {
  color: inherit;
  transition: color 0.15s ease;
}

.footer-bottom a:hover {
  color: var(--teal);
}

.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  gap: 0.5rem 1rem;
  text-align: right;
}

/* Resources hub + featured articles */
.resources-intro {
  max-width: 42rem;
  margin-bottom: 2rem;
}

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

@media (max-width: 960px) {
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (max-width: 560px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

.resource-card,
.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.2s ease;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.article-card {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

a.resource-card:hover,
a.article-card:hover {
  border-color: rgba(0, 194, 203, 0.45);
  box-shadow: 0 10px 28px rgba(0, 26, 54, 0.08);
}

a.article-card:hover {
  transform: translateY(-3px);
}

.article-card-cover {
  position: relative;
  height: 8.5rem;
  max-height: 160px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
}

.article-card-cover svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 1rem 1.05rem;
  flex: 1;
}

.resource-card .eyebrow,
.article-card .eyebrow {
  margin-bottom: 0;
  font-size: 0.75rem;
}

.resource-card h2,
.resource-card h3,
.article-card h2,
.article-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.28;
  color: var(--navy);
  margin: 0;
}

.article-date {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  opacity: 0.85;
}

.article-card .article-date {
  margin-top: -0.05rem;
}

.page-hero .article-date {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.8rem;
  color: rgba(246, 251, 255, 0.55);
  opacity: 1;
}

.resource-card p,
.article-card-body > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.article-card-body > p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-card .resource-meta,
.article-card .resource-meta {
  margin-top: auto;
  padding-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-mid);
}

.resource-card.is-soon {
  opacity: 0.85;
}

.resources-links {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-prose {
  max-width: 42rem;
}

.article-prose--wide {
  max-width: 58rem;
}

.article-prose h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.85rem;
}

.article-prose h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 1.35rem 0 0.65rem;
}

.article-hero-media {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #001a36;
}

.article-hero-media svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 14rem;
  aspect-ratio: 16 / 10;
}

.article-hero-media figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.article-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  margin: 0.75rem 0 1.25rem;
}

.article-prose li {
  margin-bottom: 0.4rem;
}

.article-prose ul.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0.9rem 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.article-prose ul.checklist li {
  position: relative;
  margin: 0;
  padding: 0.75rem 0.95rem 0.75rem 2.75rem;
  color: var(--text-muted);
  line-height: 1.55;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 4px);
  background: var(--ice);
}

.article-prose ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 0.8rem;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(0, 194, 203, 0.16);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

/* Soft article cartouches — ice panels with teal accent */
.article-callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.article-callout {
  margin: 0;
  padding: 1.05rem 1.2rem 1.1rem;
  background:
    linear-gradient(135deg, rgba(0, 194, 203, 0.06), transparent 55%),
    var(--ice);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: calc(var(--radius) - 4px);
}

.article-callout h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.article-callout p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 720px) {
  .article-callouts--2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .article-callouts--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.article-prose .faq-list {
  margin: 0.85rem 0 1.5rem;
}

.article-prose .faq-item summary {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4;
}

.article-prose .faq-item .faq-body p {
  margin: 0;
}

.article-prose a {
  color: var(--navy-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.compare-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1rem;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ice);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: 0.84rem;
  line-height: 1.35;
}

.compare-table th,
.compare-table td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

.compare-table thead th {
  background: var(--navy);
  color: #f6fbff;
  font-weight: 600;
  font-size: 0.8rem;
  position: sticky;
  top: 0;
}

.compare-table thead th .th-note {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

.compare-table tbody th[scope="row"] {
  color: var(--navy);
  font-weight: 600;
  background: #fff;
  min-width: 11rem;
}

.compare-table tbody td {
  color: var(--text-muted);
  background: #fff;
}

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

.pill {
  display: inline-block;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  line-height: 1.2;
}

.pill--yes {
  color: #0a4a3a;
  background: rgba(0, 194, 203, 0.22);
}

.pill--partial {
  color: #5a4a12;
  background: rgba(178, 170, 255, 0.28);
}

.pill--no {
  color: #5a2030;
  background: rgba(0, 40, 80, 0.08);
}

.cell-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}


.article-prose p + p {
  margin-top: 1rem;
}

.article-prose .article-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--teal);
  background: var(--ice);
  color: var(--text-muted);
  font-size: 0.925rem;
}

.article-back {
  margin-top: 2rem;
}

.section-cta {
  margin-top: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10000;
  padding: 0.65rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 26, 54, 0.28);
  transform: translateY(-150%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .persona-card,
  .together-line,
  .hero-copy,
  .hero-how,
  .hero-ctas,
  .hero-proof-block,
  .hero-orb--teal,
  .hero-orb--lavender,
  .apv-flow span {
    animation: none !important;
  }

  .btn:hover,
  a.article-card:hover {
    transform: none;
  }

  .credibility-stats .proof-card:hover {
    transform: none;
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(0, 26, 54, 0.96);
    border: 1px solid rgba(246, 251, 255, 0.14);
  }

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

  .hero-grid,
  .offer-grid,
  .cred-grid,
  .partners-row,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    column-gap: 0;
    row-gap: 2rem;
  }

  .faq-main,
  .faq-contact {
    grid-column: 1;
  }

  .faq-contact {
    position: static;
    max-width: none;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    flex-direction: column;
    column-gap: 0;
  }

  .footer-brand {
    max-width: 22rem;
    flex: none;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 2rem;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .header-actions .btn {
    display: none;
  }

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

  .footer-grid {
    flex-direction: column;
  }

  .footer-brand {
    max-width: none;
    flex: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
    row-gap: 1.75rem;
    width: 100%;
    margin-left: 0;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .hero-copy h1 {
    max-width: none;
  }
}


/* Nav dropdowns */
.nav-item { position: relative; }
.nav-item:hover,
.nav-item.is-open,
.nav-item:focus-within { z-index: 2; }
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(246, 251, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0.5rem 0.7rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
}
.nav-parent:hover,
.nav-parent.is-active,
.nav-item.is-open > .nav-parent {
  color: var(--ice);
  background: rgba(246, 251, 255, 0.08);
}
.nav-chevron { opacity: 0.75; transition: transform 0.18s ease; }
.nav-item.is-open > .nav-parent .nav-chevron,
.nav-item:hover > .nav-parent .nav-chevron { transform: rotate(180deg); }
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 20.5rem;
  margin-top: 0;
  padding: 0.45rem;
  border-radius: 14px;
  background: rgba(0, 26, 54, 0.98);
  border: 1px solid rgba(246, 251, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 10, 30, 0.45);
  z-index: 120;
  pointer-events: auto;
  flex-direction: column;
  gap: 0.15rem;
}
/* Invisible hover bridge across the visual gap so :hover never drops */
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  left: 0;
  right: 0;
  height: 0.45rem;
}
.nav-item:hover > .nav-submenu,
.nav-item.is-open > .nav-submenu,
.nav-item:focus-within > .nav-submenu {
  display: flex;
}
.nav-submenu a,
.nav-submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  color: rgba(246, 251, 255, 0.88);
  font-size: 0.8125rem;
  white-space: nowrap;
}
.nav-submenu a:hover {
  background: rgba(246, 251, 255, 0.1);
  color: var(--ice);
}
.nav-submenu-item.is-disabled {
  color: rgba(246, 251, 255, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.nav-soon {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(246, 251, 255, 0.08);
  color: rgba(246, 251, 255, 0.42);
  border: 1px solid rgba(246, 251, 255, 0.1);
}
@media (max-width: 960px) {
  .nav-item { width: 100%; }
  .nav-parent { width: 100%; justify-content: space-between; }
  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.15rem 0 0.35rem;
    box-shadow: none;
    background: rgba(246, 251, 255, 0.04);
  }
  .nav-submenu::before { content: none; }
  .nav-item:hover > .nav-submenu,
  .nav-item:focus-within > .nav-submenu { display: none; }
  .nav-item.is-open > .nav-submenu { display: flex; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-promise h1,
  .hero-promise-line { max-width: none; }
}


/* === Homepage v2: credibility + logos (2026-07-31) === */
.credibility-stats {
  padding: 2.75rem 0;
  background: var(--ice);
  border-bottom: 1px solid var(--border);
}

.credibility-stats--embedded {
  padding: 1.75rem 0 0;
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: none;
  margin: 1.75rem 0 0;
}

.credibility-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.credibility-stats .proof-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 52rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.credibility-stats .proof-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 68rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.credibility-stats .proof-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 36rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.credibility-stats .proof-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  min-width: 0;
  min-height: 8.5rem;
  padding: 1.5rem 1.15rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 40, 80, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.credibility-stats .proof-card:hover {
  border-color: rgba(0, 194, 203, 0.4);
  box-shadow: 0 14px 36px rgba(0, 40, 80, 0.08);
  transform: translateY(-2px);
}

.credibility-stats .proof-card .proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 3.75rem;
  margin-bottom: 0.65rem;
}

.credibility-stats .proof-card .proof-stat-prefix {
  display: block;
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.credibility-stats .proof-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.credibility-stats .proof-card .proof-stat strong {
  margin-bottom: 0;
}

.credibility-stats .proof-card > span {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 11rem;
}

.credibility-stats .proof-card--rating .google-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  margin: -0.25rem 0 0.55rem;
  line-height: 1;
  color: #fbbc04;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.credibility-stats .proof-card--rating .google-stars span {
  display: block;
  font-style: normal;
  text-shadow: 0 1px 0 rgba(0, 40, 80, 0.06);
}

.results-section .section-header {
  margin-bottom: 1.5rem;
}

.results-section .results-proof {
  margin: 0 0 2rem;
}

.testimonials-slider {
  --testimonials-gap: 1.25rem;
  --testimonials-per-view: 2;
  position: relative;
}

.testimonials-slider__viewport {
  overflow: hidden;
}

.testimonials-slider__track {
  display: flex;
  align-items: stretch;
  gap: var(--testimonials-gap);
  will-change: transform;
}

.testimonials-slider__track.is-animating {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.45rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ice);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex: 0 0
    calc(
      (100% - (var(--testimonials-per-view) - 1) * var(--testimonials-gap)) /
        var(--testimonials-per-view)
    );
  min-width: 0;
  min-height: 100%;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}

.testimonial-card p::before {
  content: "“";
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.35em;
  line-height: 0;
  margin-right: 0.1rem;
}

.testimonial-card footer {
  margin-top: auto;
  display: grid;
  gap: 0.15rem;
}

.testimonial-card footer strong {
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-card footer span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonials-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.testimonials-slider__arrow {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 40, 80, 0.14);
  background: var(--white);
  color: var(--navy);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.testimonials-slider__arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ice);
  transform: translateY(-1px);
}

.testimonials-slider__arrow:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.testimonials-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.testimonials-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(0, 40, 80, 0.18);
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonials-slider__dot[aria-current="true"] {
  width: 1.35rem;
  background: var(--teal);
}

.testimonials-slider__dot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.logos {
  padding: 3rem 0 2.85rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.logos-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.logos-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: logo-marquee 55s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex: 0 0 auto;
}

.logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.logo-item--resilio {
  width: 48px;
  height: 48px;
  overflow: visible;
}

.logo-item--resilio img {
  display: block;
  width: 36px;
  height: 36px;
  max-height: none;
  max-width: none;
  object-fit: contain;
}



@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Problem section — Qapsule rhythm */
.features-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 8px 28px rgba(0, 40, 80, 0.04);
  display: flex;
  flex-direction: column;
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.14), rgba(0, 40, 80, 0.06));
  color: var(--navy);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feature-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
}

.feature-card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.feature-card > p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

.pain-visual {
  margin-top: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ice);
  border: 1px solid rgba(0, 40, 80, 0.1);
  box-shadow: 0 6px 18px rgba(0, 40, 80, 0.06);
}

.pain-visual-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  background: rgba(0, 40, 80, 0.05);
  border-bottom: 1px solid rgba(0, 40, 80, 0.08);
}

.pain-visual-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 40, 80, 0.18);
}

.pain-visual-chrome span:nth-child(1) { background: #ff6b6b; opacity: 0.7; }
.pain-visual-chrome span:nth-child(2) { background: #ffd166; opacity: 0.75; }
.pain-visual-chrome span:nth-child(3) { background: #06d6a0; opacity: 0.7; }

.pain-visual-body {
  min-height: 7.5rem;
  margin: 0.65rem;
  padding: 1rem 0.9rem;
  border-radius: 8px;
  border: 1.5px dashed rgba(0, 40, 80, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 194, 203, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}

.pv-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pv-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.pv-dot--muted {
  background: rgba(0, 40, 80, 0.22);
}

.pv-bar {
  height: 0.45rem;
  flex: 1;
  border-radius: 4px;
  background: rgba(0, 40, 80, 0.12);
}

.pv-bar--short { flex: 0.45; }
.pv-bar--mid { flex: 0.7; }

.pv-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(0, 194, 203, 0.18);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.pv-pile {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
}

.pv-pile span {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.35), rgba(0, 40, 80, 0.15));
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 40, 80, 0.08);
}

.pv-pile span:nth-child(2) {
  transform: translateY(-0.35rem);
  background: linear-gradient(145deg, rgba(178, 170, 255, 0.45), rgba(0, 40, 80, 0.12));
}

.pv-caption {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0, 40, 80, 0.55);
}

.pv-gauge {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}

.pv-gauge-track {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(0, 40, 80, 0.1);
  overflow: hidden;
}

.pv-gauge-track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 40, 80, 0.55));
}

.pv-gauge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0, 40, 80, 0.55);
}

@media (max-width: 960px) {
  .features-3 {
    grid-template-columns: 1fr !important;
  }

  .testimonials-slider {
    --testimonials-per-view: 1;
  }

  .pain-visual-body {
    min-height: 6.25rem;
  }

  .approach-compose {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .approach-bridge {
    padding-top: 0;
  }

  .approach-bridge-mark {
    transform: rotate(90deg);
  }

  .approach-values {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .approach-pillar-visual {
    min-height: 10.25rem;
  }

  .apv-body {
    min-height: 7.5rem;
  }

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


@media (prefers-reduced-motion: reduce) {
  .persona-card,
  .together-line,
  .hero-copy,
  .hero-how,
  .hero-ctas,
  .hero-proof-block,
  .hero-orb--teal,
  .hero-orb--lavender,
  .apv-flow span,
  .svc-row {
    animation: none !important;
  }

  .testimonials-slider__track.is-animating {
    transition: none !important;
  }

  .testimonials-slider__arrow:hover,
  .testimonials-slider__dot {
    transition: none;
  }

  .btn:hover,
  a.svc-row:hover,
  a.approach-pillar:hover,
  .credibility-stats .proof-card:hover {
    transform: none;
  }

  .apv-doc-path i.is-active {
    animation: none;
  }

  a.svc-row:hover .svc-chevron {
    transform: none;
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(0, 26, 54, 0.96);
    border: 1px solid rgba(246, 251, 255, 0.14);
  }

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

  .hero-grid,
  .offer-grid,
  .cred-grid,
  .partners-row {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    flex-direction: column;
    column-gap: 0;
  }

  .footer-brand {
    max-width: 22rem;
    flex: none;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 2rem;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .header-actions .btn {
    display: none;
  }

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

  .footer-grid {
    flex-direction: column;
  }

  .footer-brand {
    max-width: none;
    flex: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
    row-gap: 1.75rem;
    width: 100%;
    margin-left: 0;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .hero-copy h1 {
    max-width: none;
  }
}


/* Nav dropdowns */
.nav-item { position: relative; }
.nav-item:hover,
.nav-item.is-open,
.nav-item:focus-within { z-index: 2; }
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(246, 251, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0.5rem 0.7rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
}
.nav-parent:hover,
.nav-parent.is-active,
.nav-item.is-open > .nav-parent {
  color: var(--ice);
  background: rgba(246, 251, 255, 0.08);
}
.nav-chevron { opacity: 0.75; transition: transform 0.18s ease; }
.nav-item.is-open > .nav-parent .nav-chevron,
.nav-item:hover > .nav-parent .nav-chevron { transform: rotate(180deg); }
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 20.5rem;
  margin-top: 0;
  padding: 0.45rem;
  border-radius: 14px;
  background: rgba(0, 26, 54, 0.98);
  border: 1px solid rgba(246, 251, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 10, 30, 0.45);
  z-index: 120;
  pointer-events: auto;
  flex-direction: column;
  gap: 0.15rem;
}
/* Invisible hover bridge across the visual gap so :hover never drops */
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  left: 0;
  right: 0;
  height: 0.45rem;
}
.nav-item:hover > .nav-submenu,
.nav-item.is-open > .nav-submenu,
.nav-item:focus-within > .nav-submenu {
  display: flex;
}
.nav-submenu a,
.nav-submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  color: rgba(246, 251, 255, 0.88);
  font-size: 0.8125rem;
  white-space: nowrap;
}
.nav-submenu a:hover {
  background: rgba(246, 251, 255, 0.1);
  color: var(--ice);
}
.nav-submenu-item.is-disabled {
  color: rgba(246, 251, 255, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.nav-soon {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(246, 251, 255, 0.08);
  color: rgba(246, 251, 255, 0.42);
  border: 1px solid rgba(246, 251, 255, 0.1);
}
@media (max-width: 960px) {
  .nav-item { width: 100%; }
  .nav-parent { width: 100%; justify-content: space-between; }
  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.15rem 0 0.35rem;
    box-shadow: none;
    background: rgba(246, 251, 255, 0.04);
  }
  .nav-submenu::before { content: none; }
  .nav-item:hover > .nav-submenu,
  .nav-item:focus-within > .nav-submenu { display: none; }
  .nav-item.is-open > .nav-submenu { display: flex; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-promise h1,
  .hero-promise-line { max-width: none; }
}


/* === Homepage v2: credibility + logos (2026-07-31) === */
.credibility-stats {
  padding: 2.75rem 0;
  background: var(--ice);
  border-bottom: 1px solid var(--border);
}

.credibility-stats--embedded {
  padding: 1.75rem 0 0;
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: none;
  margin: 1.75rem 0 0;
}

.credibility-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.credibility-stats .proof-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 52rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.credibility-stats .proof-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 68rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.credibility-stats .proof-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 36rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.credibility-stats .proof-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  min-width: 0;
  min-height: 8.5rem;
  padding: 1.5rem 1.15rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 40, 80, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.credibility-stats .proof-card:hover {
  border-color: rgba(0, 194, 203, 0.4);
  box-shadow: 0 14px 36px rgba(0, 40, 80, 0.08);
  transform: translateY(-2px);
}

.credibility-stats .proof-card .proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 3.75rem;
  margin-bottom: 0.65rem;
}

.credibility-stats .proof-card .proof-stat-prefix {
  display: block;
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.credibility-stats .proof-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.credibility-stats .proof-card .proof-stat strong {
  margin-bottom: 0;
}

.credibility-stats .proof-card > span {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 11rem;
}

.credibility-stats .proof-card--rating .google-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  margin: -0.25rem 0 0.55rem;
  line-height: 1;
  color: #fbbc04;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.credibility-stats .proof-card--rating .google-stars span {
  display: block;
  font-style: normal;
  text-shadow: 0 1px 0 rgba(0, 40, 80, 0.06);
}

.results-section .section-header {
  margin-bottom: 1.5rem;
}

.results-section .results-proof {
  margin: 0 0 2rem;
}

.testimonials-slider {
  --testimonials-gap: 1.25rem;
  --testimonials-per-view: 2;
  position: relative;
}

.testimonials-slider__viewport {
  overflow: hidden;
}

.testimonials-slider__track {
  display: flex;
  align-items: stretch;
  gap: var(--testimonials-gap);
  will-change: transform;
}

.testimonials-slider__track.is-animating {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.45rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ice);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex: 0 0
    calc(
      (100% - (var(--testimonials-per-view) - 1) * var(--testimonials-gap)) /
        var(--testimonials-per-view)
    );
  min-width: 0;
  min-height: 100%;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}

.testimonial-card p::before {
  content: "“";
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.35em;
  line-height: 0;
  margin-right: 0.1rem;
}

.testimonial-card footer {
  margin-top: auto;
  display: grid;
  gap: 0.15rem;
}

.testimonial-card footer strong {
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-card footer span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonials-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.testimonials-slider__arrow {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 40, 80, 0.14);
  background: var(--white);
  color: var(--navy);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.testimonials-slider__arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ice);
  transform: translateY(-1px);
}

.testimonials-slider__arrow:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.testimonials-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.testimonials-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(0, 40, 80, 0.18);
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonials-slider__dot[aria-current="true"] {
  width: 1.35rem;
  background: var(--teal);
}

.testimonials-slider__dot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.logos {
  padding: 3rem 0 2.85rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.logos-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.logos-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: logo-marquee 55s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex: 0 0 auto;
}

.logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.logo-item--resilio {
  width: 48px;
  height: 48px;
  overflow: visible;
}

.logo-item--resilio img {
  display: block;
  width: 36px;
  height: 36px;
  max-height: none;
  max-width: none;
  object-fit: contain;
}




/* === Homepage closing sections (2026-07-31) === */
.section-header--compact {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.standards-section {
  padding: 3.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.standards-section .standards {
  justify-content: flex-start;
}

.results-section .testimonial-card {
  background: var(--white);
}

.results-section .testimonials-slider__arrow:hover {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .results-section .testimonials-slider__arrow:hover {
    transform: none;
  }
}

/* About — team credentials (BSI + Diag DM / Bpifrance) */
.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  justify-items: center;
  gap: 2rem 3.5rem;
  align-items: start;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 0.25rem;
  padding-top: 0.35rem;
}

.credential-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-width: 0;
}

.credential-mark__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
}

.credential-mark__logos--pair {
  gap: 1.15rem 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.credential-mark__caption {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-credentials .trust-logo--bsi {
  height: 2.75rem;
  max-width: 11rem;
}

.about-credentials .trust-logo--diag {
  height: 3.25rem;
  width: 3.25rem;
}

.about-credentials .trust-logo--bpi {
  height: 2.35rem;
  max-width: 10.5rem;
}

#a-propos .section-header,
#about .section-header {
  margin-bottom: 1.75rem;
}

/* Souveraineté — full-width, air like Qapsule */
.sovereignty-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 55% at 12% 15%, rgba(0, 194, 203, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 85%, rgba(0, 40, 80, 0.05), transparent 50%),
    var(--ice);
}

.sovereignty-section .section-header {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

/* Soft logo cartouches — Qapsule partners-card language, QARA tokens */
.sovereignty-cartouches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.25rem;
}

.sovereignty-cartouche {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 12rem;
  max-width: 100%;
  min-height: 6.5rem;
  padding: 1.5rem 1.85rem;
  background:
    linear-gradient(165deg, rgba(178, 170, 255, 0.08), transparent 55%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -28px rgba(0, 40, 80, 0.45);
}

.trust-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem 2.5rem;
}

.trust-logos li {
  display: flex;
  align-items: center;
}

.trust-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.trust-logo--bsi {
  height: 2.35rem;
  max-width: 9.5rem;
  flex-shrink: 0;
}

.trust-logo--diag {
  height: 3.5rem;
  width: 3.5rem;
}

.trust-logo--bpi {
  height: 2.1rem;
  width: auto;
  max-width: 9.5rem;
}

.trust-logo--ovh {
  height: 1.75rem;
  max-width: 11rem;
}

.trust-logo--ft {
  height: 4.5rem;
  width: auto;
}

.faq-item .faq-body a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .credibility-stats .proof-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 36rem;
  }
}

@media (max-width: 640px) {
  /* Keep 3-up like Qapsule gains; shrink so cards fit ~390px without overflow */
  .credibility-stats .proof-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .credibility-stats .proof-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .credibility-stats .proof-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 0.5rem;
  }

  .credibility-stats .proof-card {
    min-width: 0;
    min-height: 0;
    padding: 1rem 0.45rem 0.9rem;
  }

  .credibility-stats .proof-card .proof-stat {
    min-height: 0;
    margin-bottom: 0.45rem;
  }

  .credibility-stats .proof-card strong {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    margin-bottom: 0.45rem;
  }

  .credibility-stats .proof-card > span {
    font-size: 0.72rem;
    line-height: 1.3;
    max-width: none;
  }

  .about-credentials {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.75rem;
    width: fit-content;
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }

  .sovereignty-cartouches {
    flex-direction: column;
  }

  .sovereignty-cartouche {
    flex: 1 1 auto;
    width: 100%;
    min-height: 5.75rem;
    padding: 1.35rem 1.25rem;
  }
}


/* Article → services internal link */
.article-related {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--navy, #002850);
}
.article-related a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.article-related a:hover {
  color: var(--teal, #00c2cb);
}


/* ===== Service detail pages (stratégie réglementaire, …) ===== */
.service-hero {
  padding: 8.5rem 0 4.25rem;
}

.service-hero .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.25rem, 4vw, 3.5rem);
  align-items: center;
}

.service-hero .hero-copy {
  max-width: 34rem;
  min-width: 0;
}

.service-hero .hero-promise {
  margin-bottom: 1.65rem;
}

.service-hero .hero-promise h1 {
  max-width: 18ch;
}

.service-hero .hero-how {
  margin: 0 0 1.85rem;
  padding: 0.15rem 0 0.15rem 1.1rem;
  max-width: 28rem;
  border-left: 2px solid rgba(0, 194, 203, 0.7);
}

.service-hero .hero-ctas {
  margin-bottom: 0.85rem;
}

.service-hero .hero-note {
  margin-top: 0;
  animation: rise-in 0.85s ease 0.28s both;
}

/* Right-side design asset (reusable across service pages) */
.service-hero-visual {
  position: relative;
  min-width: 0;
  justify-self: stretch;
  animation: rise-in 0.9s ease 0.18s both;
}

.srv-visual-frame {
  background: rgba(246, 251, 255, 0.06);
  border: 1px solid rgba(246, 251, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 26, 54, 0.35);
  overflow: hidden;
}

.srv-visual-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(246, 251, 255, 0.1);
  background: rgba(0, 26, 54, 0.35);
}

.srv-visual-dots {
  display: inline-flex;
  gap: 0.4rem;
}

.srv-visual-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 251, 255, 0.25);
}

.srv-visual-dots span:nth-child(1) { background: #ff5f57; }
.srv-visual-dots span:nth-child(2) { background: #febc2e; }
.srv-visual-dots span:nth-child(3) { background: #28c840; }

.srv-visual-title {
  font-size: 0.75rem;
  color: rgba(246, 251, 255, 0.55);
  letter-spacing: 0.01em;
}

.srv-visual-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  padding: 1.35rem 1.25rem 1.45rem;
  align-items: center;
  min-height: 280px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0, 194, 203, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(178, 170, 255, 0.1), transparent 55%);
}

/* Stratégie réglementaire visual */
.service-hero-visual--strategie .srv-compass {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.service-hero-visual--strategie .srv-compass svg {
  width: min(100%, 7.5rem);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 194, 203, 0.25));
  animation: srv-compass-breathe 5.5s ease-in-out infinite;
}

/* Déploiement eQMS visual */
.service-hero-visual--eqms .srv-eqms-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.service-hero-visual--eqms .srv-eqms-mark svg {
  width: min(100%, 7.5rem);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 194, 203, 0.25));
  animation: srv-compass-breathe 5.5s ease-in-out infinite;
}

.srv-compass-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.srv-roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.srv-roadmap::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.7rem;
  bottom: 0.7rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 194, 203, 0.15),
    rgba(0, 194, 203, 0.55) 45%,
    rgba(246, 251, 255, 0.18)
  );
  border-radius: 1px;
}

.srv-roadmap li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.55rem 0;
  position: relative;
}

.srv-node {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.3rem;
  margin-left: 0.2rem;
  border-radius: 50%;
  background: rgba(246, 251, 255, 0.2);
  border: 2px solid rgba(246, 251, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 26, 54, 0.4);
  z-index: 1;
}

.srv-roadmap li.is-active .srv-node {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow:
    0 0 0 3px rgba(0, 26, 54, 0.45),
    0 0 14px rgba(0, 194, 203, 0.55);
}

.srv-roadmap li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.srv-roadmap strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(246, 251, 255, 0.92);
}

.srv-roadmap li.is-active strong {
  color: var(--ice);
}

.srv-roadmap span {
  font-size: 0.72rem;
  color: rgba(246, 251, 255, 0.5);
  letter-spacing: 0.01em;
}

@keyframes srv-compass-breathe {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 14px rgba(0, 194, 203, 0.2));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 22px rgba(0, 194, 203, 0.38));
  }
}

.logos--compact {
  padding: 2rem 0 1.75rem;
}

.logos--compact .logos-intro {
  margin-bottom: 1rem;
}

.logos--compact .logos-title {
  font-size: 1.15rem;
}

.logos--compact .logo-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

/* Ecosystem / integrations logos (eQMS + Qapsule) */
.ecosystem {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(0, 194, 203, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 50% at 10% 90%, rgba(0, 40, 80, 0.05), transparent 50%),
    var(--ice);
}

.ecosystem-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  max-width: 48rem;
  margin-inline: auto;
  padding: 0.5rem 0 0.25rem;
  list-style: none;
}

.ecosystem-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex: 1 1 6.5rem;
  min-width: 6.5rem;
  max-width: 9rem;
  padding: 1.15rem 0.85rem 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px -24px rgba(0, 40, 80, 0.4);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ecosystem-logo:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(0, 194, 203, 0.45);
  box-shadow: 0 26px 46px -26px rgba(0, 40, 80, 0.45);
}

.ecosystem-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.ecosystem-logo-mark img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.ecosystem-logo-name {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-logo {
    transition: none;
  }

  .ecosystem-logo:hover {
    transform: none;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.step-card--light {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 40, 80, 0.04);
}

.step-card--light h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.step-card--light p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.step-card--light .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
}

.deliverables-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
}

.deliverables-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.bridge-note {
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

.bridge-note strong {
  color: var(--navy);
  font-weight: 600;
}

.section-ctas {
  margin-top: 0.25rem;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-proof-grid .testimonial-card {
  margin: 0;
  height: 100%;
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-hero-visual {
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }

  .srv-visual-body {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .steps-grid,
  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-logos {
    gap: 0.75rem;
  }

  .ecosystem-logo {
    flex: 1 1 6rem;
    min-width: 5.75rem;
    gap: 0.7rem;
    padding: 1rem 0.65rem 0.85rem;
  }

  .ecosystem-logo-mark {
    width: 2.6rem;
    height: 2.6rem;
  }

  .ecosystem-logo-mark img {
    width: 2.4rem;
    height: 2.4rem;
  }

  .ecosystem-logo-name {
    font-size: 0.8125rem;
  }

  .service-hero-visual--strategie .srv-visual-body,
  .service-hero-visual--eqms .srv-visual-body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .service-hero-visual--strategie .srv-roadmap,
  .service-hero-visual--eqms .srv-roadmap {
    width: 100%;
  }

  .service-hero-visual--strategie .srv-compass svg,
  .service-hero-visual--eqms .srv-eqms-mark svg {
    width: 5.5rem;
  }
}

@media (max-width: 520px) {
  /* Keep copy first; tuck visual so mobile stays Accueil-tight */
  .service-hero-visual {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-visual,
  .service-hero-visual--strategie .srv-compass svg,
  .service-hero-visual--eqms .srv-eqms-mark svg {
    animation: none !important;
  }
}

/* ── About page ─────────────────────────────────────────── */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.25rem;
  background:
    radial-gradient(ellipse 60% 50% at 18% 8%, rgba(0, 194, 203, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 88% 20%, rgba(178, 170, 255, 0.12), transparent 50%),
    linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: var(--ice);
}

.about-hero .hero-atmosphere {
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.about-hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin: 0 0 0.85rem;
}

.about-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
}

.about-hero .lead {
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.about-hero .hero-ctas {
  margin-bottom: 0.75rem;
}

.about-hero .hero-note {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(246, 251, 255, 0.55);
}

.about-mission {
  padding-block: 4.5rem;
}

.about-mission .section-header {
  margin-bottom: 0;
  max-width: 42rem;
}

.about-levers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.25rem;
  counter-reset: about-lever;
}

.about-lever {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 40, 80, 0.04);
}

.about-lever::before {
  counter-increment: about-lever;
  content: "0" counter(about-lever);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-lever h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.55rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.about-lever > p:not(.about-lever-quote) {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

.about-lever > p.about-lever-quote {
  margin: 1.25rem 0 0;
  padding: 0.95rem;
  min-height: 5rem;
  box-sizing: border-box;
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  background: var(--ice);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--navy);
  opacity: 0.82;
  line-height: 1.5;
  flex: 0 0 auto;
}

.about-proof {
  padding-block: 4.5rem;
}

.about-proof .about-credentials {
  margin-bottom: 2.25rem;
}

.about-team-section {
  padding-block: 4.5rem;
}

.about-team-section .section-header {
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  gap: 1.5rem 1.75rem;
}

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

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

.team-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  min-width: 0;
}

.team-photo {
  width: 5.25rem; /* 84px */
  height: 5.25rem;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background:
    linear-gradient(160deg, rgba(0, 194, 203, 0.18), transparent 55%),
    var(--ice);
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.team-member:hover .team-photo img,
.team-member:focus-within .team-photo img {
  transform: scale(1.04);
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  padding-top: 0.15rem;
}

.team-meta h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.team-role {
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 500;
  margin: 0;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  width: fit-content;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.team-linkedin:hover,
.team-linkedin:focus-visible {
  opacity: 1;
  color: #0a66c2;
}

.team-linkedin svg {
  flex-shrink: 0;
}

.team-linkedin span {
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .team-photo img {
    transition: none;
  }

  .team-member:hover .team-photo img,
  .team-member:focus-within .team-photo img {
    transform: none;
  }
}

@media (max-width: 900px) {
  .about-levers {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .team-grid--founders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }

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

  .team-photo {
    width: 4.5rem; /* 72px */
    height: 4.5rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 7.5rem 0 3.5rem;
  }

  .team-grid--founders {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }

  .team-grid--crew {
    grid-template-columns: 1fr;
    max-width: 22rem;
    gap: 1.25rem;
  }

  .team-meta h3 {
    font-size: 0.95rem;
  }

  .team-role {
    font-size: 0.8125rem;
  }
}
