/* ==========================================================================
   AZ Solutions — static build
   Base tokens + layout (from assets/css/main.css in the Nuxt source)
   ========================================================================== */
:root {
  /* palette sampled from the AZ logo green rgb(56,189,122) */
  --brand: #38bd7a;
  --brand-strong: #22a765;
  --brand-tint: #e8f7ef;
  --brand-tint-2: #d3f0e2;
  /* accent parts a sector can re-theme (see the AZ Health block below) */
  --brand-rgb: 56, 189, 122; /* --brand as a triple, for rgba() washes */
  --brand-soft: #7fe0ad; /* light accent on dark backgrounds */
  --brand-ink: #06180f; /* text/icons sitting on a --brand fill */
  --brand-ink-soft: rgba(6, 24, 15, 0.16);
  --ink: #0c1f16; /* deep forest — dark sections */
  --ink-2: #12291d;
  --text: #182b21;
  --text-soft: #4a5f54;
  --paper: #fbfdfc;
  --paper-2: #f2f8f4;
  --line: #dcebe2;
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(12, 31, 22, 0.16);
  --font-display: 'Zain', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 800;
}

/* section rhythm */
.section {
  padding-block: 96px;
}

.section--tint {
  background: var(--paper-2);
}

.section--dark {
  background: var(--ink);
  color: #f2faf5;
}

/* eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--brand-strong);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 10px;
  background: no-repeat center / contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 20'><path d='M2 16 Q22 2 40 9' fill='none' stroke='%2338bd7a' stroke-width='4' stroke-linecap='round'/><path d='M34 4 L42 8.5 L33.5 12' fill='none' stroke='%2338bd7a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  transform: scaleX(-1); /* arc points forward in RTL */
}

.section--dark .eyebrow {
  color: #7fe0ad;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 44px);
  margin-top: 10px;
  color: var(--ink);
}

.section--dark .section-title {
  color: #fff;
}

.section-lead {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 17px;
}

.section--dark .section-lead {
  color: rgba(242, 250, 245, 0.75);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--brand);
  color: #06180f;
}

.btn--primary:hover {
  background: var(--brand-strong);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(56, 189, 122, 0.55);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  border-color: var(--brand-strong);
  color: var(--brand-strong);
}

.btn--outline:hover {
  background: var(--brand-tint);
  transform: translateY(-2px);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 64px;
  }
}

/* ==========================================================================
   Header (SiteHeader.vue)
   ========================================================================== */
.hdr {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hdr--solid {
  background: rgba(251, 253, 252, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line);
  box-shadow: 0 6px 20px -14px rgba(12, 31, 22, 0.4);
}

.hdr__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hdr__brand {
  position: relative;
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.hdr__logo {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.hdr__logo--dark {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  opacity: 0;
}

.hdr--solid .hdr__logo--light {
  opacity: 0;
}

.hdr--solid .hdr__logo--dark {
  opacity: 1;
}

.hdr__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hdr__link {
  color: rgba(242, 250, 245, 0.82);
  font-size: 15px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

.hdr__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hdr--solid .hdr__link {
  color: var(--text);
}

.hdr--solid .hdr__link:hover {
  color: var(--ink);
  background: rgba(12, 31, 22, 0.06);
}

.hdr__link--cta,
.hdr--solid .hdr__link--cta {
  background: var(--brand);
  color: #06180f;
  font-weight: 600;
  margin-inline-start: 8px;
}

.hdr__link--cta:hover,
.hdr--solid .hdr__link--cta:hover {
  background: var(--brand-strong);
  color: #fff;
}

/* sectors dropdown — opens on hover and on keyboard focus, no JS needed */
.hdr__menu {
  position: relative;
  display: flex;
  align-items: center;
}

.hdr__link--menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hdr__caret {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hdr__menu:hover .hdr__caret,
.hdr__menu:focus-within .hdr__caret {
  transform: rotate(180deg);
}

.hdr__dropdown {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  z-index: 60;
  margin-top: 10px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 44px -24px rgba(12, 31, 22, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

/* invisible bridge so the pointer can cross the gap without closing the menu */
.hdr__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  inset-inline: 0;
  height: 12px;
}

.hdr__menu:hover .hdr__dropdown,
.hdr__menu:focus-within .hdr__dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hdr__drop-link {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}

.hdr__drop-link:hover,
.hdr__drop-link:focus-visible {
  background: var(--brand-tint);
  color: var(--brand-strong);
  outline: none;
}

.hdr__tools {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.hdr__lang {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
  color: rgba(242, 250, 245, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  min-width: 62px;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hdr__lang:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.hdr--solid .hdr__lang {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.hdr--solid .hdr__lang:hover {
  color: var(--ink);
  background: rgba(12, 31, 22, 0.06);
  border-color: var(--brand);
}

.hdr__lang:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.hdr__burger span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.hdr--solid .hdr__burger span {
  background: var(--ink);
}

@media (max-width: 820px) {
  .hdr__burger {
    display: flex;
  }
  .hdr__nav {
    position: absolute;
    top: var(--header-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 14px 24px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px -20px rgba(12, 31, 22, 0.45);
    display: none;
  }
  .hdr__nav.is-open {
    display: flex;
  }
  .hdr__link {
    padding: 13px 16px;
    text-align: center;
  }
  .hdr__link--cta,
  .hdr--solid .hdr__link--cta {
    margin-inline-start: 0;
    margin-top: 6px;
  }
  /* the dropdown flattens into the stacked menu instead of floating */
  .hdr__menu {
    flex-direction: column;
    align-items: stretch;
  }
  .hdr__caret {
    display: none;
  }
  .hdr__dropdown {
    position: static;
    margin-top: 0;
    min-width: 0;
    padding: 0 0 6px;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .hdr__dropdown::before {
    display: none;
  }
  .hdr__drop-link {
    text-align: center;
    padding: 11px 16px;
    color: var(--text-soft);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hdr,
  .hdr__logo,
  .hdr__link,
  .hdr__lang,
  .hdr__burger span {
    transition: none;
  }
}

/* ==========================================================================
   LTR (English) — mirror the decorations that were drawn for RTL
   ========================================================================== */
[dir='ltr'] .eyebrow::before {
  transform: none;
}

[dir='ltr'] .hero__arc {
  transform: scaleX(-1);
}

[dir='ltr'] .contact__arc {
  transform: none;
}

[dir='ltr'] .pcard__logo {
  object-position: left center;
}

[dir='ltr'] .channel__arrow,
[dir='ltr'] .pcard__cta-arrow {
  transform: scaleX(-1);
}

[dir='ltr'] .pcard--link:hover .pcard__cta-arrow,
[dir='ltr'] .pcard__cta--link:hover .pcard__cta-arrow,
[dir='ltr'] .pcard__cta--link:focus-visible .pcard__cta-arrow {
  transform: scaleX(-1) translateX(-3px);
}

[dir='ltr'] .channel:hover .channel__arrow {
  transform: scaleX(-1) translateX(-5px);
}

/* ==========================================================================
   Hero (HeroSection.vue, HeroNetwork.vue, HeroVideo.vue)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #f2faf5;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
  overflow: hidden;
}

.network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0.85;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.05);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.bg-video--visible {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(56, 189, 122, 0.22), transparent 60%),
    radial-gradient(700px 420px at 5% 110%, rgba(56, 189, 122, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(12, 31, 22, 0.35) 0%, var(--ink) 92%);
}

.hero__nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero__node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(56, 189, 122, 0.35);
  color: #7fe0ad;
  backdrop-filter: blur(2px);
  animation: node-float ease-in-out infinite alternate;
}

.hero__node svg {
  width: 44%;
  height: 44%;
}

@keyframes node-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-14px);
  }
}

@media (max-width: 860px) {
  .hero__nodes {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__node {
    animation: none;
  }
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  font-size: 14px;
  font-weight: 600;
  color: #7fe0ad;
  background: rgba(56, 189, 122, 0.12);
  border: 1px solid rgba(56, 189, 122, 0.35);
  padding: 8px 20px;
  border-radius: 999px;
}

.hero__title {
  margin-top: 26px;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.hero__title-accent {
  color: var(--brand);
}

.hero__arc {
  width: min(320px, 60vw);
  margin-top: 6px;
}

.hero__arc-path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw 1.1s 0.35s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}

.hero__arc-head {
  opacity: 0;
  animation: pop 0.3s 1.35s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.6);
    transform-origin: 12px 30px;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__sub {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 17.5px;
  color: rgba(242, 250, 245, 0.78);
}

.hero__ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stats {
  margin-top: 64px;
  display: flex;
  gap: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.hero__stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-inline-start: 1px solid var(--line-dark);
  transition: background 0.25s ease;
}

.hero__stat:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hero__stat:first-child {
  border-inline-start: 0;
}

.hero__stat-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand);
  color: #06180f;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.3s ease;
}

.hero__stat-icon svg {
  width: 24px;
  height: 24px;
}

.hero__stat:hover .hero__stat-icon {
  transform: scale(1.08) rotate(-6deg);
  border-radius: 30%;
}

.hero__stat-text {
  text-align: start;
}

.hero__stat dt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.hero__stat dd {
  margin-top: 4px;
  font-size: 13.5px;
  color: rgba(242, 250, 245, 0.7);
}

@media (max-width: 560px) {
  .hero__stats {
    flex-direction: column;
    width: 100%;
  }
  .hero__stat {
    border-inline-start: 0;
    border-top: 1px solid var(--line-dark);
  }
  .hero__stat:first-child {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__arc-path {
    stroke-dashoffset: 0;
    animation: none;
  }
  .hero__arc-head {
    opacity: 1;
    animation: none;
  }
}

/* ==========================================================================
   Clients marquee (ClientsMarquee.vue)
   ========================================================================== */
.marquee-section {
  padding-block: 40px;
  background: var(--paper);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}

.marquee {
  --marquee-gap: 34px;
  --slot-w: 180px;
  --slot-h: 68px;
  direction: ltr;
  overflow: hidden;
  margin-top: 34px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  padding-inline-end: var(--marquee-gap);
}

.marquee__item {
  flex: 0 0 auto;
  width: var(--slot-w);
  height: var(--slot-h);
  display: grid;
  place-items: center;
}

.marquee__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

@media (max-width: 560px) {
  .marquee {
    --marquee-gap: 24px;
    --slot-w: 130px;
    --slot-h: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .marquee__track {
    animation: none;
  }
}

/* ==========================================================================
   About (AboutSection.vue)
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 56px;
}

.about__mark {
  display: grid;
  place-items: center;
}

.about__icon {
  width: min(230px, 50vw);
  filter: drop-shadow(0 24px 48px rgba(56, 189, 122, 0.35));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__icon:hover {
  transform: rotate(-4deg) scale(1.04);
}

@media (max-width: 820px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__mark {
    order: -1;
  }
  .about__icon {
    width: 140px;
  }
}

/* ==========================================================================
   Vision & mission (VisionMission.vue)
   ========================================================================== */
.vm__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vm-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  border-inline-start: 4px solid var(--brand);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.vm-card::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  inset-inline-end: -90px;
  bottom: -100px;
  background: radial-gradient(circle, var(--brand-tint) 0%, transparent 72%);
  pointer-events: none;
}

.vm-card--dark {
  background: var(--ink-2);
  border-color: var(--line-dark);
  border-inline-start-color: var(--brand);
}

.vm-card--dark::after {
  background: radial-gradient(circle, rgba(56, 189, 122, 0.18) 0%, transparent 72%);
}

.vm-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-strong);
}

.vm-card--dark .vm-card__icon {
  background: rgba(56, 189, 122, 0.16);
  color: #7fe0ad;
}

.vm-card__icon svg {
  width: 26px;
  height: 26px;
}

.vm-card__kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-strong);
}

.vm-card--dark .vm-card__kicker {
  color: #7fe0ad;
}

.vm-card__title {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 24px;
  color: var(--ink);
}

.vm-card--dark .vm-card__title {
  color: #fff;
}

.vm-card__text {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.vm-card--dark .vm-card__text {
  color: rgba(242, 250, 245, 0.75);
}

.vm-card__text strong {
  font-weight: 700;
  color: var(--brand-strong);
}

.vm-card--dark .vm-card__text strong {
  color: #7fe0ad;
}

.compliance {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border: 1px dashed var(--brand-tint-2);
  border-radius: var(--radius);
  background: #fff;
}

.compliance__label {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.compliance__list {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.compliance__chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--brand-tint);
}

.compliance__code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--brand-strong);
  direction: ltr;
  text-align: start;
}

.compliance__desc {
  font-size: 12.5px;
  color: var(--text-soft);
}

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

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

/* ==========================================================================
   Audience (AudienceSection.vue)
   ========================================================================== */
.audience-list {
  margin-top: 40px;
}

.audience-row {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
  transition: padding-inline-start 0.3s ease;
}

.audience-row:first-child {
  border-top: 0;
}

.audience-row::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-row:hover::after {
  width: 100%;
}

.audience-row:hover {
  padding-inline-start: 14px;
}

.audience-row__num {
  flex-shrink: 0;
  width: 84px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.35;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.audience-row:hover .audience-row__num {
  opacity: 1;
  color: var(--brand-strong);
}

.audience-row__title {
  font-size: 21px;
  color: var(--ink);
}

.audience-row__desc {
  margin-top: 8px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .audience-row {
    gap: 18px;
    padding-block: 22px;
  }
  .audience-row__num {
    width: 52px;
    font-size: 28px;
  }
}

/* ==========================================================================
   Sectors explorer (SectorsExplorer.vue, ProductCard.vue)
   ========================================================================== */
/* AZ Health carries a red accent instead of the AZ green — re-pointing the
   accent variables re-themes its tab and its whole panel in one place. */
.tab[data-sector='health'],
.panel[data-sector='health'] {
  --brand: #3aa7ee;
  --brand-strong: #229ee1;
  --brand-rgb: #70bcee5e;
  --brand-soft: #70bcee;
  --brand-ink: #fff;
  --brand-ink-soft: rgba(255, 255, 255, 0.22);
}

.tabs {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(242, 250, 245, 0.75);
  font-family: var(--font-body); /* buttons don't inherit the page font */
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease,
    transform 0.22s ease;
}

.tab:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.tab--active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-ink);
}

.tab__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.16);
  color: var(--brand-soft);
  transition: background 0.22s ease, color 0.22s ease;
}

.tab--active .tab__icon {
  background: var(--brand-ink-soft);
  color: var(--brand-ink);
}

.tab__icon svg {
  width: 16px;
  height: 16px;
}

.tab__label {
  white-space: nowrap;
}

.panels {
  display: grid;
  margin-top: 48px;
}

.panel {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.panel--active {
  visibility: visible;
  opacity: 1;
}

.panel__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 10px 24px -10px rgba(var(--brand-rgb), 0.55);
}

.panel__icon svg {
  width: 26px;
  height: 26px;
}

.panel__title {
  margin-top: 16px;
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
}

.sep {
  color: var(--brand);
  margin-inline: 12px;
  font-weight: 400;
}

.panel__tagline {
  margin-top: 12px;
  max-width: 62ch;
  color: rgba(242, 250, 245, 0.75);
  font-size: 16px;
}

.products {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: 18px;
}

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

@media (max-width: 560px) {
  .products {
    grid-template-columns: 1fr;
  }
  .panels {
    display: block;
  }
  .panel {
    grid-area: auto;
    transition: none;
  }
  .panel:not(.panel--active) {
    display: none;
  }
}

.pcard {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.pcard::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-strong));
  transform: scaleX(0.18);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.pcard::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  inset-inline-end: -70px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18) 0%, transparent 72%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pcard:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.pcard:hover::after {
  transform: scale(1.15);
}

.pcard__ghost {
  position: absolute;
  z-index: 0;
  top: -10px;
  inset-inline-end: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--brand);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.pcard:hover .pcard__ghost {
  opacity: 0.22;
  transform: translateY(-4px);
}

.pcard__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
}

.pcard__logo {
  height: 34px;
  width: auto;
  max-width: 78%;
  object-fit: contain;
  object-position: right center;
}

.pcard__placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pcard__tile {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.3s ease;
}

.pcard:hover .pcard__tile {
  transform: scale(1.08) rotate(-6deg);
  border-radius: 30%;
}

.pcard__mark {
  width: 18px;
  height: 18px;
  color: var(--brand-soft);
}

.pcard__ph-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pcard__badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 12px;
  background: rgba(var(--brand-rgb), 0.16);
  color: var(--brand-soft);
}

.pcard__badge--soon {
  color: rgba(242, 250, 245, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
}

/* cards that link out to a product site or page */
.pcard--link {
  cursor: pointer;
}

.pcard--link:hover {
  border-color: rgba(var(--brand-rgb), 0.45);
}

.pcard--link:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.pcard__go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(242, 250, 245, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  opacity: 0.7;
  transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease,
    transform 0.25s ease;
}

.pcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-soft);
  transition: color 0.25s ease, gap 0.25s ease;
}

.pcard__cta-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.pcard--link:hover .pcard__cta {
  color: var(--brand);
  gap: 10px;
}

.pcard--link:hover .pcard__cta-arrow {
  transform: translateX(-3px);
}

/* on cards that are not themselves links, the CTA is its own anchor */
.pcard__cta--link:hover,
.pcard__cta--link:focus-visible {
  color: var(--brand);
  gap: 10px;
  outline: none;
}

.pcard__cta--link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pcard__cta--link:hover .pcard__cta-arrow,
.pcard__cta--link:focus-visible .pcard__cta-arrow {
  transform: translateX(-3px);
}

.pcard__go svg {
  width: 15px;
  height: 15px;
}

.pcard--link:hover .pcard__go {
  color: var(--brand-ink);
  background: var(--brand);
  border-color: var(--brand);
  opacity: 1;
  transform: scale(1.08);
}

.pcard--soon .pcard__logo {
  filter: grayscale(0.85);
  opacity: 0.55;
}

.pcard--soon .pcard__tile {
  background: rgba(255, 255, 255, 0.05);
}

.pcard--soon .pcard__mark {
  color: var(--text-soft);
}

.pcard__name {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
}

.pcard__sub {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-soft);
  text-align: end;
}

.pcard__desc {
  margin-top: 10px;
  font-size: 15px;
  color: rgba(242, 250, 245, 0.72);
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pcard,
  .pcard::before,
  .pcard::after,
  .pcard__ghost,
  .pcard__tile,
  .pcard__go {
    transition: none;
  }
}

/* ==========================================================================
   Why / values (WhySection.vue)
   ========================================================================== */
.values {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.value--2,
.value--4 {
  margin-top: 32px;
}

.value {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.value:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.value::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  inset-inline-end: -80px;
  bottom: -90px;
  background: radial-gradient(circle, var(--brand-tint) 0%, transparent 72%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.value:hover::before {
  transform: scale(1.15);
}

.value__ghost {
  position: absolute;
  z-index: 0;
  top: -12px;
  inset-inline-end: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 78px;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--brand);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.value__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 19px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(56, 189, 122, 0.55);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.35s ease;
}

.value__icon svg {
  width: 28px;
  height: 28px;
}

.value:hover .value__icon {
  transform: scale(1.08) rotate(-6deg);
  border-radius: 32%;
}

.value__en {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-strong);
}

.value__title {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-size: 21px;
  color: var(--ink);
}

.value__desc {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  .value--2 {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .values {
    grid-template-columns: 1fr;
  }
  .value--4 {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value,
  .value__icon,
  .value::before {
    transition: none;
  }
}

/* ==========================================================================
   Contact (ContactSection.vue)
   ========================================================================== */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 12% 0%, rgba(56, 189, 122, 0.2), transparent 62%),
    radial-gradient(620px 380px at 92% 110%, rgba(56, 189, 122, 0.14), transparent 58%),
    var(--ink);
}

.contact__arc {
  position: absolute;
  z-index: 0;
  inset-inline-end: -40px;
  top: 40px;
  width: min(420px, 45vw);
  opacity: 0.05;
  transform: scaleX(-1);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease,
    background 0.3s ease, box-shadow 0.3s ease;
}

.channel::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  inset-inline-end: -70px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(56, 189, 122, 0.16) 0%, transparent 72%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.channel:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px -18px rgba(0, 0, 0, 0.7);
}

.channel:hover::after {
  transform: scale(1.15);
}

.channel:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.channel__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand);
  color: #06180f;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.35s ease;
}

.channel__icon svg {
  width: 24px;
  height: 24px;
}

.channel:hover .channel__icon {
  transform: scale(1.08) rotate(-6deg);
  border-radius: 32%;
}

.channel__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.channel__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(242, 250, 245, 0.6);
}

.channel__value {
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  text-align: start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel__note {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(242, 250, 245, 0.5);
}

.channel__arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: rgba(242, 250, 245, 0.35);
  transition: color 0.25s ease, transform 0.25s ease;
}

.channel:hover .channel__arrow {
  color: var(--brand);
  transform: translateX(-5px);
}

@media (max-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .channel {
    padding: 18px;
    gap: 14px;
  }
  .channel__icon {
    width: 44px;
    height: 44px;
  }
  .channel__icon svg {
    width: 20px;
    height: 20px;
  }
  .channel__value {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .channel,
  .channel__icon,
  .channel__arrow,
  .channel::after {
    transition: none;
  }
}

/* ==========================================================================
   Footer (SiteFooter.vue)
   ========================================================================== */
.ftr {
  background: #081510;
  color: rgba(242, 250, 245, 0.7);
  padding-top: 64px;
}

.ftr__grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}

.ftr__logo {
  height: 52px;
  width: auto;
}

.ftr__tag {
  margin-top: 12px;
  font-size: 14.5px;
}

.ftr__nav {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px 28px;
}

.ftr__link {
  font-size: 14px;
  direction: ltr;
  text-align: end;
  transition: color 0.18s ease;
}

.ftr__link:hover {
  color: var(--brand);
}

.ftr__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px;
  font-size: 13.5px;
}

.ftr__contact {
  letter-spacing: 0.3px;
}

@media (max-width: 640px) {
  .ftr__nav {
    grid-template-columns: repeat(2, auto);
  }
}

/* ==========================================================================
   Sticky CTA (StickyCta.vue)
   ========================================================================== */
.sticky-cta {
  position: fixed;
  z-index: 60;
  bottom: 28px;
  inset-inline-end: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--brand);
  color: #06180f;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 32px -10px rgba(56, 189, 122, 0.55);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}

.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta:hover {
  background: var(--brand-strong);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -10px rgba(56, 189, 122, 0.65);
}

.sticky-cta:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.sticky-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: sticky-cta-pulse 1.8s ease-in-out infinite;
}

@keyframes sticky-cta-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@media (max-width: 560px) {
  .sticky-cta {
    bottom: 16px;
    inset-inline-end: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta__dot {
    animation: none;
  }
  .sticky-cta {
    transition: opacity 0.15s ease, background 0.2s ease, color 0.2s ease;
    transform: none;
  }
  .sticky-cta--visible,
  .sticky-cta:hover {
    transform: none;
  }
}
