/* ─── Fonts ──────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zain';
  src: url('./fonts/Zain-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


/* ─── Reset ──────────────────────────────────────────────────────────────── */

[hidden] { display: none !important; }

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

html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ── Brand name protection ───────────────────────────────────────────────── */
.brand { text-transform: none; }

body {
  font-family: 'Zain', sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-ink);
  background-color: var(--color-bg);
  transition: background-color 0.7s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
}


/* ─── Site Navigation ───────────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--color-sapphire);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.2);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-nav--scrolled {
  background: var(--color-sapphire);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 1px 16px rgba(0,0,0,0.3);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

/* Logo */
.site-nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 48px;
}

.site-nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.7s ease;
}

/* Primary links */
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav__link {
  font-family: 'Zain', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.site-nav__link:hover {
  color: var(--color-lime);
}

.site-nav__link--active {
  color: #fff;
  font-weight: 700;
}

.site-nav__chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.site-nav__link:hover .site-nav__chevron {
  opacity: 1;
}

/* Actions */
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 32px;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 40px;
  padding: 0 var(--space-8);
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: #fff;
  border: 1.5px solid #fff;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.site-nav__cta:hover {
  background: var(--color-lime);
  color: var(--color-sapphire);
  border-color: var(--color-lime);
}


.site-nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s, background 0.15s;
}

.site-nav__icon-btn:hover {
  color: var(--color-lime);
  background: rgba(255,255,255,0.08);
}

/* ── Mega menu ── */
.site-nav__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-sapphire);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

.site-nav__mega.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.site-nav__mega-panel { display: none; }
.site-nav__mega-panel.is-active { display: block; }

.site-nav__mega-inner {
  padding: 32px 0;
}

/* Cards layout — Solutions */
.site-nav__mega-inner--cards {
  display: flex;
  gap: 12px;
}

.site-nav__mega-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  border-left: 2px solid var(--color-lime);
  transition: background 0.18s;
}

.site-nav__mega-card:hover {
  background: rgba(255,255,255,0.05);
}

.site-nav__mega-card__label {
  font-family: 'Zain', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.site-nav__mega-card__desc {
  font-family: 'Zain', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* List layout — Industries / Insights */
.site-nav__mega-inner--list {
  display: flex;
  gap: 8px;
}

.site-nav__mega-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Zain', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 0;
  border-left: 2px solid var(--color-lime);
  transition: color 0.15s, background 0.15s;
}

.site-nav__mega-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.50);
  stroke-width: 1.8;
  transition: stroke 0.15s;
}

.site-nav__mega-link:hover .site-nav__mega-icon { stroke: var(--color-lime); }

.site-nav__mega-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Chevron rotates when mega is open */
.site-nav__link.is-mega-open { color: #fff; }
.site-nav__link.is-mega-open .site-nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.site-nav__chevron {
  transition: transform 0.2s ease, opacity 0.15s;
}

/* Mobile burger — hidden on desktop */
.site-nav__burger { display: none; }

/* Drawer — hidden by default */
.site-nav__drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100dvh;
  background: var(--color-sapphire);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 10001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.site-nav__drawer.is-open { right: 0; }

.site-nav__drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 24px 32px;
}

.site-nav__drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.site-nav__drawer-links {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.site-nav__drawer-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-nav__drawer-item:last-child { border-bottom: none; }

.site-nav__drawer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__drawer-link {
  flex: 1;
  padding: 16px 4px;
  font-family: 'Zain', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav__drawer-link--active { color: #fff; font-weight: 700; }
.site-nav__drawer-link:hover   { color: var(--color-lime); }

.site-nav__drawer-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s, transform 0.2s;
  flex-shrink: 0;
}

.site-nav__drawer-arrow:hover { color: var(--color-lime); }
.site-nav__drawer-arrow.is-open { transform: rotate(180deg); color: #fff; }

.site-nav__drawer-sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.site-nav__drawer-sub.is-open {
  max-height: 400px;
  padding-bottom: 12px;
}

.site-nav__drawer-sub-link {
  font-family: 'Zain', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 8px 16px;
  border-left: 2px solid var(--color-lime);
  transition: color 0.15s, background 0.15s;
}

.site-nav__drawer-sub-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.site-nav__drawer-bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.site-nav__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 900px) {
  .site-nav__links         { display: none; }
  .site-nav__logo          { margin-right: auto; }
  .site-nav__burger        { display: flex; }
  .site-nav__globe-desktop { display: none; }
  .site-nav__cta:not(.site-nav__drawer-cta) { display: none; }
}

.site-nav__drawer-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--color-blue);
  border-color: rgba(255,255,255,0.2);
}

/* Nav stays white/Sapphire regardless of page-dark state */


/* ─── Design Tokens ─────────────────────────────────────────────────────── */

:root {

  /* Brand */
  --color-sapphire:     #281F51;
  --color-emerald:      #281F51;
  --color-blue:         #344C98;
  --color-turquoise:    #C3D534;
  --color-lime:         #C3D534;
  --color-light-blue:   #6FC7EA;

  /* Grays */
  --color-white:        #FFFFFF;
  --color-gray-50:      #F7F7F8;
  --color-gray-100:     #EFEFF1;
  --color-gray-200:     #DCDCE0;
  --color-gray-300:     #C4C4CB;
  --color-gray-400:     #9D9DAA;
  --color-gray-500:     #76768A;
  --color-gray-600:     #56566A;
  --color-gray-700:     #3A3A4D;
  --color-gray-800:     #222233;
  --color-gray-900:     #111120;

  /* Semantic */
  --color-bg:           var(--color-white);
  --color-surface:      var(--color-gray-50);
  --color-surface-alt:  var(--color-gray-100);
  --color-border:       var(--color-gray-200);
  --color-ink:          var(--color-gray-900);
  --color-ink-muted:    var(--color-gray-500);
  --color-ink-subtle:   var(--color-gray-400);

  /* Type scale */
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1.125rem;   /* 18px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   2rem;       /* 32px */
  --text-3xl:   2.75rem;    /* 44px */
  --text-4xl:   3.75rem;    /* 60px */
  --text-5xl:   5rem;       /* 80px */

  /* Line heights */
  --leading-tight:   1.15;
  --leading-snug:    1.3;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  /* Spacing scale (multiples of 4px) */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Section padding */
  --section-py: var(--space-32);
  --section-px: var(--space-8);

  /* Container */
  --container-max: 1200px;
  --container-wide: 1440px;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   4px;
  --radius-lg:   4px;
  --radius-xl:   4px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(40, 31, 81, 0.06), 0 1px 2px rgba(40, 31, 81, 0.04);
  --shadow-md:  0 4px 16px rgba(40, 31, 81, 0.08), 0 2px 6px rgba(40, 31, 81, 0.05);
  --shadow-lg:  0 12px 40px rgba(40, 31, 81, 0.12), 0 4px 12px rgba(40, 31, 81, 0.06);
  --shadow-xl:  0 24px 64px rgba(40, 31, 81, 0.16);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   400ms;
  --duration-slower: 700ms;
}


/* ─── Layout Utilities ───────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-block: var(--section-py);
  padding-inline: var(--section-px);
}


/* ─── Typography Utilities ───────────────────────────────────────────────── */

.display {
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.heading-1 {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.heading-2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
}

.heading-3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: var(--leading-snug);
}

.heading-4 {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: var(--leading-normal);
}

.body-lg {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: var(--leading-relaxed);
}

.body {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-normal);
}

.body-sm {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: var(--leading-normal);
}

.caption {
  font-size: var(--text-xs);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--color-ink-muted);
}

/* Typography rules */
.section-title,
.card-title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-muted);
}


/* ─── Input Base ─────────────────────────────────────────────────────────── */

.input-base {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  color: var(--color-ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.input-base::placeholder { color: var(--color-ink-subtle); }
.input-base:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(52,76,152,0.12);
}
.input-base--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.input-base--dark::placeholder { color: rgba(255,255,255,0.4); }
.input-base--dark:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  box-shadow: none;
}

/* ─── Button Utilities ───────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 40px;
  padding: 0 var(--space-8);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--color-sapphire);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-lime);
  color: var(--color-sapphire);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-white {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: #fff;
  color: var(--color-blue);
}
.btn-white:hover {
  background-color: var(--color-lime);
  color: var(--color-sapphire);
}

.btn-accent {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--color-lime);
  color: var(--color-sapphire);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-sapphire);
  border: 1.5px solid var(--color-sapphire);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-secondary:hover {
  background-color: var(--color-lime);
  color: var(--color-sapphire);
  border-color: var(--color-lime);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-ghost:hover {
  color: var(--color-sapphire);
}


/* ─── Scroll Animation Foundation ───────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--duration-slower) var(--ease-out),
    transform var(--duration-slower) var(--ease-out);
}

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

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="left"].is-visible {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="right"].is-visible {
  transform: translateX(0);
}

[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }
[data-reveal-delay="4"] { transition-delay: 400ms; }
[data-reveal-delay="5"] { transition-delay: 500ms; }
[data-reveal-delay="6"] { transition-delay: 600ms; }


/* ─── ZainTECH Brand Patterns ────────────────────────────────────────────── */

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

/* Wrapper handles absolute positioning + parallax translateY */
.zn-pat-wrap {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform;
}

/* Image handles rotation animation + color filter */
.zn-pat {
  display: block;
  width: 100%;
  animation: znPatRotate 60s linear infinite;
  transform-origin: center center;
  filter: brightness(0) saturate(100%) invert(11%) sepia(63%) saturate(950%) hue-rotate(237deg) brightness(80%);
  opacity: 0.5;
}

/* Section 2 — turquoise #23AEB7 */
.zn-pat-wrap--s4 {
  top: -18%;
  right: -10%;
  width: 46%;
  z-index: 9999;
}
.zn-pat--s4 {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(56%) sepia(55%) saturate(460%) hue-rotate(153deg) brightness(87%);
}

/* Section 3 — blue #344C98 */
.zn-pat-wrap--s5 {
  top: 8%;
  right: -8%;
  width: 48%;
}
.zn-pat--s5 {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(26%) sepia(72%) saturate(620%) hue-rotate(208deg) brightness(92%);
}
body.page-dark .zn-pat--s5 {
  filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(500%) hue-rotate(205deg) brightness(130%);
  opacity: 0.5;
}

/* Values — sapphire (light) / blue (dark) */
.zn-pat-wrap--vd {
  bottom: -8%;
  left: -6%;
  width: 46%;
}
.zn-pat--vd {
  opacity: 0.5;
}
body.page-dark .zn-pat--vd {
  filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(620%) hue-rotate(210deg) brightness(140%);
  opacity: 0.5;
}

/* IDC Validation — sapphire #281F51 */
.zn-pat-wrap--idcv {
  top: -8%;
  right: -4%;
  width: 36%;
}
.zn-pat--idcv {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(11%) sepia(63%) saturate(950%) hue-rotate(237deg) brightness(80%);
}

/* CTA — lime #C3D534 */
.zn-pat-wrap--cta {
  top: calc(50% - 26%);
  left: -6%;
  width: 52%;
}
.zn-pat--cta {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(82%) sepia(68%) saturate(546%) hue-rotate(35deg) brightness(108%);
}
body.page-dark .zn-pat--cta {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(82%) sepia(68%) saturate(546%) hue-rotate(35deg) brightness(108%);
}


/* ─── Button Shimmer Override ────────────────────────────────────────────── */

.btn-primary {
  background-image: linear-gradient(to right, var(--color-lime) 50%, var(--color-sapphire) 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition:
    background-position var(--duration-slow) var(--ease-out),
    color var(--duration-slow) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.btn-primary:hover {
  background-position: left center;
  color: var(--color-sapphire);
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-image: linear-gradient(to right, rgba(255,255,255,0.18) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition:
    background-position var(--duration-slow) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    filter var(--duration-base) var(--ease-out);
}

.btn-accent:hover {
  background-position: left center;
  transform: scale(1.04);
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-sapphire);
  transition:
    color var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-slow) var(--ease-out);
  z-index: -1;
}

.btn-secondary:hover::before { transform: scaleX(1); }
.btn-secondary:hover         { color: var(--color-sapphire); border-color: var(--color-lime); transform: scale(1.04); }


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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-dots { display: none; }

.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg-glow--1 {
  top: -15%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(52, 76, 152, 0.07) 0%, transparent 70%);
}

.hero__bg-glow--2 {
  display: none;
}

/* Inner layout */
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: var(--space-32);
}

/* ── Left panel ─────────────────────────────────────────────────── */

.hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  line-height: 1.45;
}

/* Title */
.hero__title-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  overflow: hidden;
}

/* Character-split animation */
.hero__title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(90%) rotate(5deg);
  transition:
    opacity var(--duration-slower) var(--ease-out),
    transform var(--duration-slower) var(--ease-out);
}

.hero__title--revealed .hero__title-char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero__title-char:nth-child(1) { transition-delay:   0ms; }
.hero__title-char:nth-child(2) { transition-delay:  60ms; }
.hero__title-char:nth-child(3) { transition-delay: 120ms; }
.hero__title-char:nth-child(4) { transition-delay: 180ms; }
.hero__title-char:nth-child(5) { transition-delay: 240ms; }
.hero__title-char:nth-child(6) { transition-delay: 300ms; }
.hero__title-char:nth-child(7) { transition-delay: 360ms; }

/* ── Site-wide split-heading entrance ──────────────────────────────────── */
.sh-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(3deg);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.sh-char--space {
  opacity: 1;
  transform: none;
  transition: none;
  min-width: 0.16em;
}
.sh--revealed .sh-char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero__title-line { display: none; }


.hero__body {
  color: var(--color-ink-muted);
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

/* ── Right panel: Orbit ─────────────────────────────────────────── */

.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out);
}

/* ── Orbit stage ────────────────────────────────────────────────── */

.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

.orbit-tracks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Core rings (decorative concentric circles at center) */
.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.core-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--s);
  height: var(--s);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(52, 76, 152, var(--o));
}

.core-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-sapphire);
  opacity: 0.25;
  box-shadow: 0 0 12px rgba(52, 76, 152, 0.4);
}

/* Orbit shapes */
.orbit-shape {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  will-change: transform;
}

.orbit-shape svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit-accent {
  cursor: default;
  pointer-events: none;
}

/* Domain label */
.orbit-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: var(--color-sapphire);
  color: var(--color-white);
  font-family: 'Zain', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
  white-space: nowrap;
  z-index: 20;
  box-shadow: var(--shadow-md);
}

.orbit-label.is-visible {
  opacity: 1;
}

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

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }

  .hero__left { align-items: center; }
  .hero__body { max-width: 60ch; }

  .hero__right {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .hero__title { font-size: 4rem; }
  .orbit-stage { max-width: 320px; }
}

body.page-dark .hero .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
body.page-dark .hero .btn-secondary:hover {
  background-color: #fff;
  color: var(--color-sapphire);
  border-color: #fff;
}


/* ─── Dashboard: Floating Cards ─────────────────────────────────────────── */

.dash-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* ── Float keyframes — each card drifts its own direction ──────── */

@keyframes floatA {
  0%, 100% { transform: translate(0,    0)    rotate(-1.5deg); }
  30%       { transform: translate(5px, -10px) rotate(-0.7deg); }
  65%       { transform: translate(-3px, -7px) rotate(-2.1deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-9px); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0,    0)   rotate(0.4deg);  }
  40%       { transform: translate(4px, -9px)  rotate(1.1deg);  }
  75%       { transform: translate(-3px, -4px) rotate(-0.1deg); }
}
@keyframes floatD {
  0%, 100% { transform: translateY(0);     }
  50%       { transform: translateY(-12px); }
}
@keyframes floatE {
  0%, 100% { transform: translate(0,    0)   rotate(1.8deg);  }
  45%       { transform: translate(6px, -7px)  rotate(2.6deg);  }
  80%       { transform: translate(-4px, -5px) rotate(1.1deg);  }
}
@keyframes floatBadge {
  0%, 100% { transform: translate(0,   0);   }
  50%       { transform: translate(3px, -6px); }
}

/* ── Float wrappers ──────────────────────────────────────────────── */

.float-wrap { will-change: transform; }

.float-wrap--badge {
  position: absolute;
  top: -22px;
  right: 20px;
  z-index: 10;
  animation: floatBadge 5.5s ease-in-out infinite;
  animation-delay: -1s;
}

.float-wrap--tA {
  position: absolute;
  top: 0;
  right: -164px;
  left: auto;
  z-index: 2;
  animation: floatD 7.2s ease-in-out infinite;
  animation-delay: -2.8s;
}

.float-wrap--tB {
  position: absolute;
  bottom: 0;
  right: -164px;
  left: auto;
  z-index: 2;
  animation: floatB 6.6s ease-in-out infinite;
  animation-delay: -1.2s;
}

/* ── Card panel container ────────────────────────────────────────── */

.dash-panel {
  padding: var(--space-5);
  margin-top: var(--space-8);
  animation: floatPanel 6s ease-in-out infinite;
  animation-delay: -1s;
}

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

/* ── Card grid ───────────────────────────────────────────────────── */

/* ── Column chart card ───────────────────────────────────────────── */

.dc-card {
  padding: 0;
  transition: translate 0.7s var(--ease-out);
  will-change: translate;
}

.dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dc-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(40,31,81,0.5);
  transition: opacity 0.25s;
}

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

.dc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dc-dot--blue { background: var(--color-blue); }
.dc-dot--lime { background: var(--color-lime); }

.dc-leg-lbl {
  font-size: 10px;
  color: rgba(40,31,81,0.4);
  letter-spacing: 0.04em;
  margin-right: 8px;
}

.dc-body { position: relative; }

.dc-grid {
  position: absolute;
  inset: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.dc-gridline {
  width: 100%;
  height: 1px;
  background: rgba(40,31,81,0.08);
}

.dc-columns {
  display: flex;
  gap: 6px;
  height: 160px;
}

.dc-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.dc-bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.dc-bar {
  width: 100%;
  height: 0;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--color-blue), rgba(90,122,224,0.45));
  transition: height 0.9s var(--ease-out);
}

.dc-bar--accent {
  background: linear-gradient(to top, var(--color-lime), rgba(195,213,52,0.55));
}

.dc-lbl {
  font-size: 9px;
  color: rgba(40,31,81,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
}

/* ── Legacy card class kept for .services-card ───────────────────── */
.services-card {
  background: var(--color-sapphire);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow:
    0 20px 50px rgba(40,31,81,0.24),
    0 6px 16px rgba(40,31,81,0.14),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── Badge ───────────────────────────────────────────────────────── */

.dash-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(195, 213, 52, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(195, 213, 52, 0.28);
  color: var(--color-lime);
  padding: 6px var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(195, 213, 52, 0.15);
  transition: translate 0.7s var(--ease-out);
  will-change: translate;
}

#dashBadgeText {
  display: inline-block;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

/* ── KPI internals ───────────────────────────────────────────────── */

.kpi-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity 0.25s var(--ease-out);
}

.kpi-value {
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.kpi-value--accent { color: var(--color-lime); }

.kpi-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  transition: opacity 0.25s var(--ease-out);
}

.kpi-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: var(--space-1);
}

.kpi-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.2s var(--ease-out);
  width: 0;
}

.kpi-fill--sapphire { background: linear-gradient(to right, var(--color-blue), #5A7AE0); }
.kpi-fill--blue     { background: linear-gradient(to right, #5A7AE0, #7B9BF0); }
.kpi-fill--lime     { background: linear-gradient(to right, var(--color-lime), #D8ED4A); }

/* ── Chart card ──────────────────────────────────────────────────── */

.chart-lbl {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity 0.25s var(--ease-out);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--color-blue), rgba(90, 122, 224, 0.5));
  border-radius: 3px 3px 0 0;
  height: 0;
  transition: height 0.9s var(--ease-out);
}

.bar:last-child        { background: linear-gradient(to top, var(--color-lime), rgba(195, 213, 52, 0.6)); }
.bar:nth-last-child(2) { background: linear-gradient(to top, #5A7AE0, rgba(90, 122, 224, 0.75)); }

/* ── Services card ───────────────────────────────────────────────── */

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
}

.s-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.s-dot--blue { background: #5A7AE0; box-shadow: 0 0 6px rgba(90,122,224,0.7); }
.s-dot--lime { background: var(--color-lime); box-shadow: 0 0 6px rgba(195,213,52,0.7); }
.s-dot--gray { background: rgba(255,255,255,0.25); }

.s-name   { color: rgba(255,255,255,0.75); flex: 1; font-weight: 400; }
.s-status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.35); }

.service-item:has(.s-dot--blue) .s-status,
.service-item:has(.s-dot--lime) .s-status { color: var(--color-lime); }

/* ── Testimonial slots ───────────────────────────────────────────── */

.t-slot {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  width: 220px;
  opacity: 0;
  transform: scale(0.88) translateY(12px);
  transition:
    translate 0.7s var(--ease-out),
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
  pointer-events: none;
  will-change: translate, transform;
}

.t-slot.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Pattern burst — sibling behind the card, peeking from the corner */
@keyframes patternBurst {
  0%   { opacity: 0;    transform: scale(0.3)  rotate(-22deg); }
  22%  { opacity: 0.85; transform: scale(0.88) rotate(-5deg);  }
  62%  { opacity: 0.55; transform: scale(1.02) rotate(2deg);   }
  100% { opacity: 0;    transform: scale(1.12) rotate(6deg);   }
}

.t-pattern-burst {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
  animation: patternBurst 0.75s ease-out forwards;
}

.t-burst-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.t-card__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: var(--color-white);
  flex-shrink: 0;
}

.t-card__header {
  display: flex; align-items: center; gap: var(--space-2);
  margin-bottom: var(--space-1);
}

.t-card__name  { font-size: var(--text-xs); font-weight: 700; color: var(--color-sapphire); line-height: 1.2; }
.t-card__role  { font-size: 10px; color: var(--color-ink-muted); line-height: 1.2; }
.t-card__quote { font-size: var(--text-sm); color: var(--color-ink-muted); line-height: 1.55; }
.t-card__stars { display: none; }

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

@media (max-width: 960px) {
  .dash-wrap { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 560px) {
  .dash-wrap { max-width: 100%; }
  .kpi-value { font-size: var(--text-2xl); }
  .float-wrap--tA,
  .float-wrap--tB { display: none; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   SECTION 2 — THE ZainTECH EDGE (Three Options)
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── Shared base ────────────────────────────────────────────────────────── */

.edge-sec {
  padding-block: var(--space-32);
  position: relative;
  overflow: hidden;
}

.edge-option-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-lime);
  background: rgba(195, 213, 52, 0.12);
  border: 1px solid rgba(195, 213, 52, 0.25);
  padding: 4px var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.edge-head {
  text-align: center;
  margin-bottom: var(--space-16);
}

.edge-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.edge-sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-relaxed);
}

.edge-rule {
  margin: var(--space-8) auto 0;
  max-width: 560px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.edge-rule__beam {
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, transparent 0%, var(--color-lime) 50%, transparent 100%);
  transition: left 1.1s var(--ease-out);
  transition-delay: 0.2s;
}

.edge-rule__beam.is-active { left: 0; }


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   OPTION A — Clean counter + sweep line + hover glow
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.edge-sec--a {
  background: linear-gradient(155deg, #1a1640 0%, #281F51 45%, #344C98 100%);
}

.ea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.ea-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-10) var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  cursor: default;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s,
    box-shadow 0.35s;
}

.ea-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(195, 213, 52, 0.2);
  box-shadow: 0 0 50px rgba(195, 213, 52, 0.08), 0 16px 40px rgba(40, 31, 81, 0.3);
}

.ea-icon svg {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.35s;
}

.ea-stat:hover .ea-icon svg { color: rgba(195, 213, 52, 0.7); }

.ea-num {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  transition: color 0.35s;
  font-variant-numeric: tabular-nums;
}

.ea-stat:hover .ea-num { color: var(--color-lime); }

.ea-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--leading-relaxed);
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   OPTION B — Aurora background + glass cards + hover expand
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.edge-sec--b {
  background: #0e0b2a;
}

/* Aurora blobs */
@keyframes auroraMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.08); }
  66%       { transform: translate(-25px, 20px) scale(0.95); }
}

.eb-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.eb-aurora::before,
.eb-aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.eb-aurora::before {
  width: 55%;
  height: 180%;
  top: -40%;
  left: -10%;
  background: radial-gradient(circle, rgba(52, 76, 152, 0.55) 0%, transparent 65%);
  animation: auroraMove 16s ease-in-out infinite;
}

.eb-aurora::after {
  width: 50%;
  height: 160%;
  bottom: -50%;
  right: -5%;
  background: radial-gradient(circle, rgba(195, 213, 52, 0.22) 0%, transparent 65%);
  animation: auroraMove 20s ease-in-out infinite reverse;
  animation-delay: -8s;
}

.eb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.eb-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  cursor: default;
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.4s,
    box-shadow 0.4s;
  overflow: hidden;
}

.eb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(195, 213, 52, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.eb-card:hover {
  transform: translateY(-10px);
  border-color: rgba(195, 213, 52, 0.28);
  box-shadow:
    0 28px 60px rgba(40, 31, 81, 0.4),
    0 0 0 1px rgba(195, 213, 52, 0.08);
}

.eb-card:hover::before { opacity: 1; }

.eb-icon svg {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: var(--space-4);
  transition: color 0.4s;
}

.eb-card:hover .eb-icon svg { color: var(--color-lime); }

.eb-num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  font-variant-numeric: tabular-nums;
}

.eb-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--leading-relaxed);
}

/* Hover-expand extra detail */
.eb-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.45s var(--ease-out),
    opacity 0.45s var(--ease-out),
    margin-top 0.45s var(--ease-out);
}

.eb-card:hover .eb-reveal {
  max-height: 60px;
  opacity: 1;
  margin-top: var(--space-4);
}

.eb-reveal p {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  color: var(--color-lime);
  line-height: 1.6;
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   OPTION C — Live terminal ticker + grid background
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.edge-sec--c {
  background: #080818;
}

.ec-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 76, 152, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 76, 152, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Live badge */
.ec-live-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(195, 213, 52, 0.1);
  border: 1px solid rgba(195, 213, 52, 0.28);
  color: var(--color-lime);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

@keyframes livePulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.25; transform: scale(0.75); }
}

.ec-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-lime);
  animation: livePulse 1.3s ease-in-out infinite;
}

/* Stats grid */
.ec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.ec-stat {
  position: relative;
  border: 1px solid rgba(52, 76, 152, 0.35);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ec-stat:hover {
  border-color: rgba(195, 213, 52, 0.45);
  box-shadow:
    0 0 30px rgba(195, 213, 52, 0.07),
    inset 0 0 30px rgba(195, 213, 52, 0.03);
}

/* Travelling scan line per card */
@keyframes scanLine {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(400%); opacity: 0; }
}

.ec-scan {
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(195, 213, 52, 0.05), transparent);
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
}

.ec-stat:nth-child(2) .ec-scan { animation-delay: -1.3s; }
.ec-stat:nth-child(3) .ec-scan { animation-delay: -2.7s; }

.ec-stat__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.ec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}

.ec-stat:nth-child(2) .ec-dot { animation-delay: -0.6s; }
.ec-stat:nth-child(3) .ec-dot { animation-delay: -1.3s; }

.ec-stat-lbl-top {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.ec-num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
  transition: color 0.15s;
}

.ec-num.is-ticking { color: var(--color-lime); }

.ec-label {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

.ec-bar {
  margin-top: var(--space-5);
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.ec-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(to right, var(--color-blue), var(--color-lime));
  transition: width 1.4s var(--ease-out);
}

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

@media (max-width: 720px) {
  .ea-grid, .eb-grid, .ec-grid { grid-template-columns: 1fr; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   BENTO GRID OPTIONS (D · E · F)
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.bento-sec {
  padding-block: var(--space-32);
  position: relative;
  overflow: hidden;
}

/* Edge-head variant for light bg */
.bd-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-sapphire);
  margin-bottom: var(--space-4);
}

.bd-sub {
  font-size: var(--text-base);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
}

.bd-tag { color: var(--color-blue) !important; border-color: rgba(52,76,152,0.3) !important; background: rgba(52,76,152,0.07) !important; }


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   OPTION D — Stat-forward · Light background
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.bento-sec--d {
  background: var(--color-gray-50);
}

/* Override edge-rule beam for light section */
.bd-beam { background: linear-gradient(to right, transparent 0%, var(--color-blue) 50%, transparent 100%); }

.bd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

/* Hero cell: spans col 1, rows 1-2 */
.bd-cell--hero { grid-column: 1; grid-row: 1 / 3; }

/* Stat cells: col 2 and 3, row 1 (auto-placed after hero) */
.bd-cell--stat { grid-row: 1; }

/* Fact + CTA: row 2 */
.bd-cell--fact { grid-column: 2; grid-row: 2; }
.bd-cell--cta  { grid-column: 3; grid-row: 2; }

.bd-cell {
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-100);
  border-radius: 4px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  cursor: default;
}

.bd-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(40, 31, 81, 0.1);
  border-color: rgba(52, 76, 152, 0.2);
}

.bd-icon-wrap {
  color: var(--color-sapphire);
}

.bd-icon { width: 56px; height: 56px; }
.bd-icon--md { width: 44px; height: 44px; }
.bd-icon--sm { width: 36px; height: 36px; }

.bd-num {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-sapphire);
  font-variant-numeric: tabular-nums;
  margin-top: auto;
}

.bd-cell--hero .bd-num { margin-top: var(--space-4); }

.bd-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
  line-height: var(--leading-snug);
}

.bd-sub-text {
  font-size: var(--text-xs);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
}

.bd-pill {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  background: rgba(52, 76, 152, 0.07);
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(52, 76, 152, 0.15);
}

/* Fact cell */
.bd-fact-num {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-sapphire);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: auto;
}

.bd-fact-lbl {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ink);
}

.bd-fact-sub { display: none; }

/* CTA cell */
.bd-cell--cta {
  background: var(--color-sapphire);
  border-color: transparent;
  justify-content: space-between;
}

.bd-cell--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(40, 31, 81, 0.25);
  border-color: transparent;
}

.bd-cta-text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.bd-cell--cta .btn-primary {
  align-self: flex-start;
  background-image: linear-gradient(to right, var(--color-lime) 50%, rgba(195,213,52,0.8) 50%);
  color: var(--color-sapphire);
  margin-top: var(--space-4);
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   ZAINTECH EDGE — Full dark · map left · stats right
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.zze-section {
  background: #fff;
  border-top: 4px solid var(--color-lime);
  transition: background-color 0.7s ease;
}

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

.zze-stat {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zze-stat:first-child { padding-left: 0; }
.zze-stat:last-child  { padding-right: 0; }

.zze-stat__num {
  font-family: 'Zain', sans-serif;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  font-weight: 900;
  color: var(--color-sapphire);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.zze-stat:hover .zze-stat__num { color: var(--color-lime); }

.zze-stat__num--static { /* no counter animation needed */ }

.zze-stat__label {
  font-size: var(--text-sm);
  color: rgba(40,31,81,0.55);
  line-height: 1.5;
  font-weight: 400;
  max-width: 200px;
  transition: color 0.7s ease;
}

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

@media (max-width: 480px) {
  .zze-grid { grid-template-columns: 1fr; }
  .zze-stat { padding: 28px 24px; }
}

.be-beam { background: linear-gradient(to right, transparent 0%, var(--color-blue) 50%, transparent 100%); }

.be-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 14px;
  min-height: 520px;
}

/* Map cell: col 1, spans all 3 rows */
.be-cell--map  { grid-column: 1; grid-row: 1 / 4; }

/* Stats stacked in col 2 */
.be-cell--wide { grid-column: 2; grid-row: 1; }
.be-cell--stat:not(.be-cell--wide) { grid-column: 2; }

.be-cell {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.be-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 20% 20%, rgba(52, 76, 152, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.be-cell:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 76, 152, 0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(52,76,152,0.1);
}

/* Map cell fills its grid area */
.be-cell--map {
  min-height: 0;
}

/* Stat cards compact in narrow right column */
.be-cell--stat {
  min-height: 0;
  padding: var(--space-5) var(--space-6);
}

/* Map cell specifics */
.be-cell--map .be-cell::before { display: none; }

.be-cell__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  background: rgba(52, 76, 152, 0.15);
  border: 1px solid rgba(52, 76, 152, 0.2);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.be-map-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
}

.be-map-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: var(--space-4);
}

/* ── World Map ─────────────────────────────────────────────── */
.be-wmap-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  border-radius: 4px;
  overflow: hidden;
}

.be-wmap-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.be-wmap-bg {
  filter: invert(1) sepia(0.35) hue-rotate(185deg) brightness(0.32) saturate(2);
}

.be-cm__line {
  stroke: #344C98;
  stroke-width: 0.8;
  stroke-dasharray: 3 3;
  opacity: 0.5;
}

@keyframes mapRingPulse {
  0%   { r: 4; opacity: 0.65; }
  70%  { r: 13; opacity: 0; }
  100% { r: 13; opacity: 0; }
}

.be-cm__ring {
  fill: #344C98;
  animation: mapRingPulse 2.6s ease-out infinite;
}

.be-cm__dot {
  fill: #5A7AE0;
  cursor: pointer;
  transition: fill 0.2s;
  pointer-events: all;
  filter: drop-shadow(0 0 3px rgba(90,122,224,0.8));
}

.be-cm {
  pointer-events: all;
  cursor: pointer;
}

.be-cm:hover .be-cm__dot {
  fill: #C3D534;
  filter: drop-shadow(0 0 5px rgba(195,213,52,0.9));
}


.be-cell__icon-wrap { margin-bottom: var(--space-2); }
.be-icon { width: 52px; height: 52px; }
.be-icon--md { width: 42px; height: 42px; }

.be-num {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}

.be-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--leading-snug);
}

.be-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.be-kpi-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-top: auto;
}

.be-kpi-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(to right, var(--color-blue), #5A7AE0);
  transition: width 1.4s var(--ease-out);
}

.be-cell.is-visible .be-kpi-fill { width: var(--fill); }


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   OPTION F — Interactive reveal bento
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.bento-sec--f {
  background: #0d0d1e;
}

.bf-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 76, 152, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 76, 152, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.bf-beam { background: linear-gradient(to right, transparent 0%, var(--color-blue) 50%, transparent 100%); }

.bf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bf-card {
  border: 1.5px solid rgba(52, 76, 152, 0.22);
  border-radius: 4px;
  padding: var(--space-8);
  cursor: default;
  transition:
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    background 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.bf-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(52, 76, 152, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.bf-card:hover {
  border-color: rgba(52, 76, 152, 0.55);
  background: rgba(52, 76, 152, 0.07);
  box-shadow:
    0 0 0 1px rgba(52, 76, 152, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(-6px);
}

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

/* Accent card (middle): slightly highlighted */
.bf-card--accent {
  border-color: rgba(52, 76, 152, 0.35);
  background: rgba(52, 76, 152, 0.06);
}

.bf-card--accent:hover {
  border-color: rgba(195, 213, 52, 0.45);
  background: rgba(52, 76, 152, 0.12);
}

.bf-card--accent::after {
  background: linear-gradient(to right, transparent, rgba(195, 213, 52, 0.5), transparent);
}

.bf-card__collapsed {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.bf-icon {
  width: 52px;
  height: 52px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.bf-card:hover .bf-icon { color: rgba(255, 255, 255, 0.95); }
.bf-card--accent .bf-icon { color: rgba(255, 255, 255, 0.85); }

.bf-num {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}

.bf-card--accent .bf-num { color: var(--color-lime); }

.bf-lbl {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

/* Reveal section — appears on hover */
.bf-card__reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s var(--ease-out),
    opacity 0.4s var(--ease-out),
    margin-top 0.5s var(--ease-out);
  margin-top: 0;
}

.bf-card:hover .bf-card__reveal {
  max-height: 120px;
  opacity: 1;
  margin-top: var(--space-5);
}

.bf-detail {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--leading-relaxed);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bf-card--accent .bf-detail { color: rgba(255, 255, 255, 0.65); }

.bf-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-top: var(--space-4);
}

.bf-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(to right, var(--color-blue), #5A7AE0);
  transition: width 1s var(--ease-out);
}

.bf-card--accent .bf-bar__fill {
  background: linear-gradient(to right, var(--color-lime), #D8ED4A);
}

.bf-card:hover .bf-bar__fill { width: var(--fill); }

.bf-caption {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Bento responsive ──────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .bd-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bd-cell--hero { grid-column: 1 / 3; grid-row: 1; }
  .bd-cell--stat:nth-of-type(1) { grid-column: 1; grid-row: 2; }
  .bd-cell--stat:nth-of-type(2) { grid-column: 2; grid-row: 2; }
  .bd-cell--fact { grid-column: 1; grid-row: 3; }
  .bd-cell--cta  { grid-column: 2; grid-row: 3; }

  .be-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .be-cell--map  { grid-column: 1 / 4; grid-row: 1; min-height: 320px; }
  .be-cell--wide { grid-column: 1; grid-row: 2; }
  .be-cell--stat:not(.be-cell--wide) { grid-column: auto; grid-row: 2; }
}

@media (max-width: 640px) {
  .bd-grid, .be-grid, .bf-grid { grid-template-columns: 1fr; }
  .bd-cell--hero, .bd-cell--stat, .bd-cell--fact, .bd-cell--cta,
  .be-cell--map, .be-cell--wide, .be-cell--stat { grid-column: 1 !important; grid-row: auto !important; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   OUR VALUES — Bento Grid
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── Keyframes ───────────────────────────────────────────────────────── */

@keyframes val-pulse {
  0%, 100% { transform: scale(1);    opacity: inherit; }
  50%       { transform: scale(1.12); opacity: 0.15; }
}

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

@keyframes val-breathe {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}



.vd-section {
  background: var(--color-bg);
  transition: background-color 0.7s ease;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

body.page-dark .vd-section {
  background: #151128;
}

.vd-header {
  margin-bottom: var(--space-12);
}

.vd-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-blue);
  margin-bottom: var(--space-3);
  transition: color 0.7s ease;
}

body.page-dark .vd-eyebrow {
  color: var(--color-lime);
}

.vd-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  letter-spacing: 0.02em;
  line-height: var(--leading-tight);
  transition: color 0.7s ease;
}

body.page-dark .vd-heading {
  color: #fff;
}

.vd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Card base ──────────────────────────────────────────────────────────── */

.vd-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background: #f5f3ff;
  border: 1px solid rgba(40, 31, 81, 0.08);
  transition: background 0.7s ease, border-color 0.7s ease;
}

body.page-dark .vd-card {
  background: var(--color-sapphire);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ── Icon area (fills the flex space above the front label) ─────────────── */

.vd-card__icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.vd-card__icon img {
  width: 64px;
  height: 64px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.vd-card:hover .vd-card__icon {
  transform: translateY(-12px) scale(0.9);
  opacity: 0.15;
}

/* ── Front label (pill + title, visible at rest) ────────────────────────── */

.vd-card__front {
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 0.25s ease;
}

.vd-card:hover .vd-card__front {
  opacity: 0;
}

/* ── Hover overlay (slides up from bottom) ──────────────────────────────── */

.vd-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-sapphire);
  transform: translateY(100%);
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

body.page-dark .vd-card__overlay {
  background: #0f1840;
}

.vd-card:hover .vd-card__overlay {
  transform: translateY(0);
}

/* Content inside overlay fades in with stagger */
.vd-card__overlay .vd-pill,
.vd-card__overlay .vd-name,
.vd-card__overlay .vd-desc {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.vd-card:hover .vd-card__overlay .vd-pill {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.vd-card:hover .vd-card__overlay .vd-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.20s;
}

.vd-card:hover .vd-card__overlay .vd-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

/* Overlay text always white regardless of theme */
.vd-card__overlay .vd-name,
body.page-dark .vd-card__overlay .vd-name {
  color: #fff;
}

.vd-card__overlay .vd-desc,
body.page-dark .vd-card__overlay .vd-desc {
  color: rgba(255, 255, 255, 0.68);
  max-width: none;
}

.vd-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: val-pulse 3.2s ease-in-out infinite;
}
.vd-ring--1 { animation-delay: 0s;    opacity: 0.85; }
.vd-ring--2 { animation-delay: 0.75s; opacity: 0.55; }
.vd-ring--3 { animation-delay: 1.5s;  opacity: 0.3;  }

.vd-spin-g {
  animation: val-spin 14s linear infinite;
  transform-origin: 40px 40px;
}

.vd-node {
  transform-box: fill-box;
  transform-origin: center;
}
.vd-node--1 { animation: val-breathe 2.8s ease-in-out infinite 0s;    }
.vd-node--2 { animation: val-breathe 2.8s ease-in-out infinite 0.95s; }
.vd-node--3 { animation: val-breathe 2.8s ease-in-out infinite 1.9s;  }

.vd-pill {
  display: inline-block;
  background: var(--color-lime);
  color: var(--color-sapphire);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.vd-name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-sapphire);
  line-height: var(--leading-snug);
  position: relative;
  z-index: 1;
  transition: color 0.7s ease;
}

body.page-dark .vd-name {
  color: #fff;
}


.vd-desc {
  font-size: var(--text-base);
  color: rgba(40,31,81,0.6);
  line-height: var(--leading-relaxed);
  max-width: 42ch;
  position: relative;
  z-index: 1;
  transition: color 0.7s ease;
}

body.page-dark .vd-desc {
  color: rgba(255,255,255,0.5);
}


/* ── Values responsive ───────────────────────────────────────────────── */

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


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   BUSINESS CHALLENGES INTRO
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.bc-section {
  padding-block: var(--space-24);
  background: #fff;
}

.bc-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: var(--space-4);
}

.bc-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-sapphire);
  margin-bottom: var(--space-6);
}

.bc-body {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: 1.7;
  max-width: 68ch;
}


/* ── Challenges flip grid ── */

.chg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.chg-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(40, 31, 81, 0.09);
  border-radius: 4px;
  padding: 18px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

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

.chg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-sapphire);
}

.chg-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-sapphire);
  stroke-width: 1.5;
}

.chg-label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   SECTION 4 — Modernize Your Digital Foundation
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.s4-section {
  background: var(--color-bg);
  padding: var(--section-py) 0;
  position: relative;
  overflow: visible;
  transition: background-color 0.7s ease;
}

body.page-dark .s4-section {
  background: #151128;
}

body.page-dark .s4-heading {
  color: #fff;
}

body.page-dark .s4-head__rule {
  background: linear-gradient(to right, rgba(255,255,255,0.4), transparent);
}

body.page-dark .s4-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

body.page-dark .s4-item--open {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

body.page-dark .s4-icon {
  background: rgba(255,255,255,0.1);
}

body.page-dark .s4-item--open .s4-icon {
  background: var(--color-lime);
}

body.page-dark .s4-icon svg {
  stroke: rgba(255,255,255,0.7);
}

body.page-dark .s4-item--open .s4-icon svg {
  stroke: var(--color-sapphire);
}

body.page-dark .s4-trigger-label {
  color: var(--color-lime);
}

body.page-dark .s4-trigger-title {
  color: #fff;
}

body.page-dark .s4-chevron {
  color: rgba(255,255,255,0.3);
}

body.page-dark .s4-item--open .s4-chevron {
  color: #fff;
}

body.page-dark .s4-body-inner p {
  color: rgba(255,255,255,0.55);
}


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

.s4-head {
  margin-bottom: 60px;
}

.s4-head__row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.s4-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: var(--leading-snug);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: color 0.7s ease;
}

.s4-head__rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--color-sapphire), transparent);
  border-radius: 2px;
  opacity: 0.2;
}

/* ── Layout ─────────────────────────────────────────────────────────────── */

.s4-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── Accordion ──────────────────────────────────────────────────────────── */

.s4-accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.s4-item {
  border-radius: 4px;
  border: 1px solid rgba(40, 31, 81, 0.1);
  border-left: 3px solid transparent;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-left-color 0.25s ease, box-shadow 0.25s ease, background 0.7s ease, border-color 0.7s ease;
  overflow: hidden;
}

.s4-item--open {
  border-left-color: var(--color-lime);
  box-shadow: 0 4px 20px rgba(40,31,81,0.1);
}

.s4-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.s4-trigger:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: -2px;
  border-radius: 4px;
}

.s4-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(52, 76, 152, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.s4-item--open .s4-icon {
  background: var(--color-sapphire);
}

.s4-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-blue);
  transition: stroke 0.25s ease;
}

.s4-item--open .s4-icon svg {
  stroke: var(--color-lime);
}

.s4-trigger-text {
  flex: 1;
}

.s4-trigger-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  opacity: 0.6;
  display: block;
  margin-bottom: 2px;
  transition: opacity 0.25s ease, color 0.7s ease;
}

.s4-item--open .s4-trigger-label {
  opacity: 1;
}

.s4-trigger-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  transition: color 0.7s ease;
}

.s4-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(40,31,81,0.35);
  transition: transform 0.3s ease, color 0.25s ease;
}

.s4-item--open .s4-chevron {
  transform: rotate(180deg);
  color: var(--color-sapphire);
}

.s4-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.s4-body-inner {
  padding: 0 20px 20px 70px;
}

.s4-body-inner p {
  font-size: var(--text-base);
  color: rgba(40,31,81,0.6);
  line-height: var(--leading-relaxed);
  margin: 0;
  transition: color 0.7s ease;
}

/* ── Sticky visual panel ────────────────────────────────────────────────── */

.s4-panel {
  position: sticky;
  top: 100px;
  height: 520px;
}

.s4-vis-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.s4-vis {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.s4-vis--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.s4-vis svg {
  width: 100%;
  height: 100%;
  max-height: 316px;
}

/* ── Hub diagram ────────────────────────────────────────────────────────── */

.s4-vis-wrap {
  overflow: visible;
}

.s4-hub {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s4-hub__inner {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  max-height: 100%;
}

.s4-hub__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.s4-hub__node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(40,31,81,0.14);
  box-shadow: 0 2px 8px rgba(40,31,81,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  z-index: 2;
}

.s4-hub__node svg {
  width: 20px;
  height: 20px;
  color: var(--color-blue);
  flex-shrink: 0;
  pointer-events: none;
  transition: color 0.22s ease;
}

.s4-hub__node:hover,
.s4-hub__node:focus-visible {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 6px 20px rgba(40,31,81,0.18);
  border-color: var(--color-blue);
  z-index: 10;
}

.s4-hub__node--active {
  background: var(--color-sapphire);
  border-color: var(--color-sapphire);
  box-shadow: 0 4px 20px rgba(40,31,81,0.22);
}

.s4-hub__node--active svg {
  color: #fff;
}

.s4-hub__node--active:hover,
.s4-hub__node--active:focus-visible {
  background: var(--color-blue);
  border-color: var(--color-blue);
  transform: translate(-50%, -50%) scale(1.2);
}

.s4-hub__spoke--active {
  stroke: var(--color-blue) !important;
  stroke-dasharray: none !important;
  opacity: 0.45;
}

/* Tooltip spans are kept as data only — hidden, replaced by floating tip */
.s4-hub__tooltip { display: none; }

.s4-hub__float-tip {
  position: fixed;
  background: var(--color-sapphire);
  color: #fff;
  font-family: 'Zain', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  width: 130px;
  padding: 8px 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 0.16s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.s4-hub__float-tip.is-visible { opacity: 1; }

/* ── Section 4 responsive ───────────────────────────────────────────────── */

@media (max-width: 960px) {
  .s4-layout {
    grid-template-columns: 1fr;
  }
  .s4-panel {
    position: static;
    height: 380px;
    order: -1;
  }
  .s4-head__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .s4-head__rule {
    width: 100%;
  }
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   Section 5 – Streamline
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.s5-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}


.s5-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

/* ── Static stacked boxes (left column) ──────────────────────────────────── */

.s5-boxes {
  display: flex;
  flex-direction: column;
}

.s5-box {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 3px solid var(--color-lime);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  background: transparent;
  transition: background 0.25s ease;
}

.s5-box:hover {
  background: var(--color-lime);
}

.s5-box__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: invert(13%) sepia(47%) saturate(879%) hue-rotate(221deg) brightness(85%) contrast(102%);
}

.s5-box__text {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-sapphire);
  line-height: 1.5;
  margin: 0;
}

/* ── Right content ───────────────────────────────────────────────────────── */

.s5-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s5-eyebrow {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  text-transform: uppercase;
  margin: 0;
  transition: color 0.7s ease;
}

.s5-heading {
  font-family: 'Zain', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
  transition: color 0.7s ease;
}

.s5-body {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-lg);
  font-weight: 400;
  color: rgba(40, 31, 81, 0.7);
  line-height: 1.7;
  margin: 0;
  transition: color 0.7s ease;
}

.s5-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--color-sapphire);
  color: #fff;
  font-family: 'Zain', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.s5-cta:hover {
  background: var(--color-lime);
  color: var(--color-sapphire);
  transform: translateY(-2px);
}

/* ── Section 5 responsive ───────────────────────────────────────────────── */

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

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   REAL BUSINESS OUTCOMES — dgo-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.dgo-section {
  padding: 100px 0 80px;
  background: #151128;
  overflow: hidden;
}

.dgo-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.dgo-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-turquoise);
  margin-bottom: 0.5rem;
}

.dgo-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

/* Scroll track */
.dgo-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}
.dgo-track-wrap::-webkit-scrollbar { display: none; }

.dgo-track {
  display: flex;
  gap: 20px;
  padding: 0 var(--container-pad, 5vw);
  width: max-content;
}

/* Card */
.dgo-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 4px;
  background: var(--color-sapphire);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-snap-align: start;
  transition: background 0.25s ease;
}
.dgo-card:hover { background: var(--color-blue); }

.dgo-card__icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
}
.dgo-card__icon svg { width: 48px; height: 48px; stroke: var(--color-lime); stroke-width: 1.5; }

.dgo-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin: 0;
}

.dgo-card__body {
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0;
}

/* Dots */
.dgo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.dgo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.dgo-dot--active {
  background: var(--color-lime);
  transform: scale(1.35);
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   INDUSTRY USE CASES — iuc-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.iuc-section {
  padding: 100px 0;
  background: #fff;
}

.iuc-header { margin-bottom: 60px; }

.iuc-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 16px;
}

.iuc-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0;
}

.iuc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.iuc-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

/* ── gradient "image" backgrounds ── */
.iuc-card__bg {
  position: absolute;
  inset: 0;
  transition: opacity 0.55s ease;
}

.iuc-card__bg--gov {
  background-image:
    linear-gradient(180deg, transparent 45%, rgba(5,10,30,0.72) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=700&q=80&fit=crop&crop=center');
  background-size: cover;
  background-position: center;
}

.iuc-card__bg--vr {
  background-image:
    linear-gradient(180deg, transparent 45%, rgba(5,3,20,0.78) 100%),
    url('https://images.unsplash.com/photo-1593508512255-86ab42a8e620?w=700&q=80&fit=crop&crop=center');
  background-size: cover;
  background-position: center;
}

.iuc-card__bg--drone {
  background-image:
    linear-gradient(180deg, transparent 45%, rgba(5,15,5,0.72) 100%),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=700&q=80&fit=crop&crop=center');
  background-size: cover;
  background-position: center;
}

/* ── blue hover overlay ── */
.iuc-card__blue {
  position: absolute;
  inset: 0;
  background: var(--color-blue);
  opacity: 0;
  transition: opacity 0.55s ease;
}

/* ── on hover: swap bg → blue ── */
.iuc-card:hover .iuc-card__bg  { opacity: 0; }
.iuc-card:hover .iuc-card__blue { opacity: 1; }

/* ── content layer ── */
.iuc-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 40%, transparent 100%);
  transition: background 0.55s ease;
  z-index: 1;
}

.iuc-card:hover .iuc-card__content { background: transparent; }

.iuc-card__title {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  order: 1;
}

.iuc-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 12px 0 0;
  order: 2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease 0.08s;
}

.iuc-card:hover .iuc-card__desc {
  max-height: 200px;
  opacity: 1;
}

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


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   WHY ZAINTECH DELIVERS — wzd-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.wzd-section {
  padding: 100px 0;
  background: #fff;
}

/* Section header — same pattern as all other sections */
.wzd-header { margin-bottom: 48px; }

.wzd-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 16px;
  transition: color 0.7s ease;
}

.wzd-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0 0 20px;
  transition: color 0.7s ease;
}

.wzd-desc {
  font-size: var(--text-lg);
  color: rgba(40,31,81,0.55);
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
  transition: color 0.7s ease;
}

/* Cards layout: 5 equal columns */
.wzd-layout {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Individual card */
.wzd-card {
  background: #f5f4f9;
  border: 1px solid rgba(40,31,81,0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.wzd-card:hover {
  background: var(--color-lime);
  border-color: var(--color-lime);
  transform: translateY(-6px);
}

/* Icon */
.wzd-card__icon {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.wzd-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-sapphire);
  stroke-width: 1.5;
}

.wzd-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-sapphire);
  line-height: 1.3;
  margin: 0 0 14px;
}

.wzd-card__body {
  font-size: 0.88rem;
  color: rgba(40,31,81,0.6);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1100px) {
  .wzd-layout { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .wzd-layout { grid-template-columns: repeat(2, 1fr); }
}

/* wzd dark-mode overrides */


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   RELATED SOLUTIONS — rs-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.rs-section {
  padding: 100px 0 80px;
  background: #fff;
  overflow: clip;
  overflow-clip-margin: 0;
}

/* Header row: eyebrow+title left, button right */
.rs-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.rs-top .btn { flex-shrink: 0; margin-top: calc(14px * 1.4 + 12px); }

.rs-head { min-width: 0; }

.rs-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 12px;
}

.rs-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-sapphire);
  margin: 0;
  line-height: 1.15;
}

.rs-card__tag {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  background: var(--color-lime);
  color: var(--color-sapphire);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 0 0 9999px 0;
}

.rs-card__title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-sapphire);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.2;
}

.rs-card__excerpt {
  font-size: 1rem;
  color: rgba(40,31,81,0.62);
  line-height: 1.65;
  margin: 0;
}

.rs-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-lime);
  text-decoration: none;
  margin-top: auto;
  padding-top: 12px;
  align-self: flex-end;
  transition: gap 0.2s, opacity 0.2s;
}
.rs-card__link:hover { gap: 10px; opacity: 0.8; }

/* Dots for RS section — dark dots on white bg */
.rs-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 32px;
}
.rs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(40,31,81,0.3);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.rs-dot--active { background: var(--color-sapphire); border-color: var(--color-sapphire); }

/* Card overrides for white background context */
.rs-section .hp-ind-icard {
  background: var(--color-sapphire);
  border: none;
}
.rs-section .hp-ind-icard__title { color: #fff; }
.rs-section .hp-ind-icard__text  { color: rgba(255,255,255,0.6); }


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   OUR IMPACT — oi-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.oi-section {
  padding: 100px 0;
  background: #151128;
}

.oi-header { margin-bottom: 56px; }

.oi-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-turquoise);
  margin-bottom: 0.5rem;
}

.oi-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* Two-column layout */
.oi-layout {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 64px;
  align-items: start;
}

/* Chart column — sticky while scrolling rows */
.oi-chart-col {
  position: sticky;
  top: 100px;
}

.oi-radar {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}

/* Tabs */
.oi-tabs {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 8px;
}

.oi-tab {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 16px 14px 0;
  font-family: 'Zain', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.28);
  cursor: pointer;
  text-align: left;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.oi-tab:hover { color: #fff; }
.oi-tab--active {
  color: var(--color-turquoise);
  border-bottom-color: var(--color-turquoise);
}

/* Row groups */
.oi-rows         { display: none; }
.oi-rows--active { display: block; }

/* Problem row */
.oi-row { border-bottom: 1px solid rgba(255,255,255,0.08); }

.oi-row__hd {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.oi-row__problem {
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.oi-row__icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s ease, color 0.2s ease;
}
.oi-row--open .oi-row__icon { transform: rotate(45deg); color: var(--color-blue); }

/* Expandable body */
.oi-row__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), padding-bottom 0.45s ease;
}
.oi-row--open .oi-row__body { max-height: 400px; padding-bottom: 20px; }

/* Cards */
.oi-card {
  border-left: 3px solid rgba(255,255,255,0.2);
  padding: 4px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oi-card--outcome { border-left-color: var(--color-lime); }

.oi-card__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.oi-card--outcome .oi-card__label { color: var(--color-lime); }

.oi-card__value {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
}
.oi-card--outcome .oi-card__value { color: #fff; }

/* Responsive */
@media (max-width: 960px) {
  .oi-layout       { grid-template-columns: 1fr; }
  .oi-chart-col    { position: static; }
  .oi-radar        { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .oi-row__body    { grid-template-columns: 1fr; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   HOW WE OPERATE — hwo-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.hwo-section {
  padding: 80px 0;
  background: #151128;
}

.hwo-header {
  margin-bottom: 3rem;
  max-width: 800px;
}

.hwo-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.hwo-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

.hwo-acc {
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  transition: background 0.25s ease;
}

.hwo-acc--open {
  background: var(--color-sapphire);
}

.hwo-acc__hd {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.hwo-acc__num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.22);
  min-width: 52px;
  line-height: 1;
}

.hwo-acc--open .hwo-acc__num { color: rgba(255,255,255,0.3); }

.hwo-acc__name {
  flex: 1;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hwo-acc--open .hwo-acc__name { color: #fff; }

.hwo-acc__chevron {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hwo-acc--open .hwo-acc__chevron {
  transform: rotate(180deg);
  color: rgba(255,255,255,0.6);
}

.hwo-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.hwo-acc--open .hwo-acc__body { max-height: 400px; }

.hwo-acc__desc {
  padding: 0 28px 28px calc(28px + 52px + 24px);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   CORE DIGITAL CAPABILITIES — cdp-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.cdp-section {
  padding: 80px 0;
  background: #151128;
}

.cdp-header {
  margin-bottom: 3rem;
  max-width: 700px;
}

.cdp-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}

.cdp-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* Tab bar */
.cdp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cdp-tabs::-webkit-scrollbar { display: none; }

.cdp-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 16px 28px;
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.cdp-tab:hover { color: rgba(255,255,255,0.75); }
.cdp-tab--active {
  color: #fff;
  border-bottom-color: var(--color-lime);
}

/* Panels */
.cdp-panel {
  display: none;
  animation: cdpFadeIn 0.35s ease forwards;
}
.cdp-panel--active { display: block; }

@keyframes cdpFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cdp-acc__desc {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 780px;
}

.cdp-acc__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 14px;
  row-gap: 0;
}
.cdp-acc__cards--three { grid-template-columns: repeat(3, 1fr); }

.cdp-acc__card {
  background: transparent;
  border-left: 3px solid var(--color-lime);
  border-radius: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease;
}
.cdp-acc__card:hover { border-left-color: #fff; }

.cdp-acc__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cdp-acc__icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 1.5; }

.cdp-acc__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cdp-eyebrow { color: var(--color-turquoise); }
.cdp-title   { color: #fff; }

@media (max-width: 960px) {
  .cdp-tab { padding: 14px 20px; font-size: 0.9rem; }
  .cdp-acc__cards { grid-template-columns: repeat(2, 1fr); }
  .cdp-acc__cards--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cdp-acc__cards,
  .cdp-acc__cards--three { grid-template-columns: 1fr; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   WHY CHOOSE — split layout · left white content · right 3D globe
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.swc-section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  transition: background-color 0.7s ease;
}

body.page-dark .swc-section { background: #151128; }

.swc-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 760px;
}

/* ── Left ─────────────────────────────────────────────────────────── */

.swc-left {
  padding: 80px clamp(32px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.swc-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.1;
  letter-spacing: 0.02em;
  max-width: 600px;
  transition: color 0.7s ease;
}

body.page-dark .swc-heading { color: #fff; }

.swc-sub {
  font-size: var(--text-base);
  color: #667;
  margin-top: 14px;
  transition: color 0.7s ease;
}

body.page-dark .swc-sub { color: rgba(255, 255, 255, 0.6); }

.swc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.swc-card {
  background: var(--color-sapphire);
  border-radius: 4px;
  padding: 26px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, background 0.7s ease;
  transition: transform 0.3s ease, background 0.7s ease;
}

.swc-card:hover { transform: translateY(-4px); }

.swc-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.swc-card__body {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ── Right: globe panel ───────────────────────────────────────────── */

.swc-right {
  position: relative;
}

.swc-globe-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -28vw; /* bleeds 28vw past the right edge of the section */
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   SOLUTIONS — light section · heading + horizontal scroll card row
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.sol-section {
  background: var(--color-bg);
  padding: var(--section-py) 0;
  position: relative;
  transition: background-color 0.7s ease;
}

/* ── Header row ───────────────────────────────────────────────────── */

.sol-head {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.sol-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.1;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: color 0.7s ease;
}

.sol-rule {
  flex: 1;
  height: 1px;
  background: var(--color-blue);
  opacity: 0.3;
  transition: background 0.7s ease;
}

/* ── Scroll track ─────────────────────────────────────────────────── */

.sol-track-viewport {
  overflow: hidden;
  width: 100%;
}

.sol-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-block: 16px;
  animation: solScroll 53s linear infinite;
  cursor: grab;
}
.sol-track:hover { animation-play-state: paused; }

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

.sol-card {
  flex: 0 0 400px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(40, 31, 81, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.7s ease;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(40, 31, 81, 0.12);
}

.sol-card__img {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  background: #0b1639;
}

.sol-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sol-card:hover .sol-card__img img { transform: scale(1.04); }

.sol-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sol-pill {
  display: inline-block;
  border: 1px solid var(--color-sapphire);
  color: var(--color-sapphire);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
  transition: border-color 0.7s ease, color 0.7s ease;
}

.sol-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.35;
  transition: color 0.7s ease;
}

/* ── Dark mode ────────────────────────────────────────────────────── */

body.page-dark .sol-section  { background: #151128; }
body.page-dark .sol-heading  { color: #fff; }
body.page-dark .sol-rule     { background: rgba(255,255,255,0.2); opacity: 1; }
body.page-dark .sol-card     { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
body.page-dark .sol-pill     { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }
body.page-dark .sol-card__title { color: #fff; }

.swc-globe-tooltip {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  background: #fff;
  color: #151128;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  z-index: 10;
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   Section 6 – Industries Bento
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.ind-section {
  background: var(--color-bg);
  padding-block: 100px;
  position: relative;
  transition: background-color 0.7s ease;
}

.ind-head {
  margin-bottom: 56px;
}

.ind-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 14px;
}

.ind-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  transition: color 0.7s ease;
}

/* Bento grid */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.ind-card--bfsi,
.ind-card--energy,
.ind-card--telecom    { grid-column: span 2; }

.ind-card--construction,
.ind-card--digital    { grid-column: span 3; }

/* Card base */
.ind-card {
  background: #f5f4fb;
  border: 1px solid rgba(40, 31, 81, 0.07);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(40, 31, 81, 0.10);
  background: #fff;
}

/* Icon container */
.ind-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(52, 76, 152, 0.10);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-blue);
}

.ind-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.2;
  transition: color 0.7s ease;
}

.ind-card__body {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(40, 31, 81, 0.65);
  flex: 1;
  transition: color 0.7s ease;
}

/* Dark mode */
body.page-dark .ind-section        { background: #151128; }
body.page-dark .ind-heading        { color: #fff; }
body.page-dark .ind-card           { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
body.page-dark .ind-card:hover     { background: rgba(255,255,255,0.10); }
body.page-dark .ind-card__icon     { background: rgba(52,76,152,0.25); }
body.page-dark .ind-card__title    { color: #fff; }
body.page-dark .ind-card__body     { color: rgba(255,255,255,0.55); }

/* Responsive */
@media (max-width: 900px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-card--bfsi, .ind-card--energy, .ind-card--telecom,
  .ind-card--construction, .ind-card--digital { grid-column: span 1; }
}

@media (max-width: 600px) {
  .ind-section  { padding-block: 64px; }
  .ind-grid     { grid-template-columns: 1fr; }
  .ind-card     { padding: 28px 24px 32px; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   Section 8 – IDC Validation
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.idcv-section {
  background: var(--color-bg);
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}

/* Large ghosted watermark anchored bottom-right — bleeds off bottom */
.idcv-watermark {
  position: absolute;
  bottom: -38%;
  right: -40px;
  width: 65%;
  max-width: 960px;
  pointer-events: none;
  user-select: none;
  border: none;
}


.idcv-layout {
  display: flex;
  align-items: center;
  gap: 88px;
}

.idcv-badge-col {
  flex-shrink: 0;
  width: 260px;
}

.idcv-badge {
  width: 100%;
  height: auto;
  display: block;
}

.idcv-content {
  flex: 1;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.idcv-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  transition: color 0.7s ease;
}

.idcv-rule {
  width: 100%;
  height: 1px;
  background: rgba(40, 31, 81, 0.15);
  margin-bottom: 26px;
  transition: background 0.7s ease;
}

.idcv-body {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: rgba(40, 31, 81, 0.72);
  transition: color 0.7s ease;
}

/* Dark mode */
body.page-dark .idcv-section   { background: #151128; }
body.page-dark .idcv-heading   { color: #fff; }
body.page-dark .idcv-rule      { background: rgba(255,255,255,0.15); }
body.page-dark .idcv-body      { color: rgba(255,255,255,0.60); }

/* Responsive */
@media (max-width: 860px) {
  .idcv-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
  .idcv-badge-col { width: 200px; }
  .idcv-watermark { width: 90%; right: -20px; bottom: -10px; }
}

@media (max-width: 600px) {
  .idcv-section  { padding-block: 64px; }
  .idcv-badge-col { width: 160px; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   Section 9 – CTA
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.cta-section {
  background: #151128;
  padding-block: 40px;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: transparent;
  padding: 60px 60px;
  text-align: center;
  position: relative;
}

.cta-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.cta-body {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 660px;
  margin: 0 auto 44px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-blue);
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: var(--color-lime);
  color: var(--color-sapphire);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 860px) {
  .cta-card { padding: 64px 60px; }
}

@media (max-width: 600px) {
  .cta-section { padding-block: 48px; }
  .cta-card    { padding: 52px 32px; }
  .cta-body    { font-size: var(--text-base); }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   Section 10 – FAQ Scroll
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.faq-section {
  background: var(--color-bg);
  padding-block: 100px 80px;
  position: relative;
  transition: background-color 0.7s ease;
}

.faq-head {
  margin-bottom: 52px;
}

.faq-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 14px;
}

.faq-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  transition: color 0.7s ease;
}

/* Track wrapper — clips overflow and hosts edge fades */
.faq-track-wrap {
  position: relative;
  overflow: hidden;
  padding-block: 12px 32px;
  cursor: grab;
}

.faq-track-wrap:active { cursor: grabbing; }

/* Left / right edge fade */
.faq-track-wrap::before,
.faq-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}
.faq-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}
.faq-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

/* Scrolling track */
.faq-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: flex-start;
  padding-inline: max(var(--section-px), calc((100vw - var(--container-max)) / 2 + var(--section-px)));
  will-change: transform;
}

/* Card base */
.faq-card {
  flex-shrink: 0;
  background: #f5f4fb;
  border: 1px solid rgba(40, 31, 81, 0.07);
  border-radius: 4px;
  padding: 28px 28px 56px;
  position: relative;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  user-select: none;
}

.faq-card--sm { width: 280px; }
.faq-card--md { width: 360px; }
.faq-card--lg { width: 460px; }

.faq-card:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(40, 31, 81, 0.09);
}

/* Number */
.faq-card__num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: var(--color-blue);
  background: rgba(52, 76, 152, 0.10);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 16px;
}

/* Question */
.faq-card__q {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.35;
  transition: color 0.7s ease;
}

/* Answer — grid trick for smooth height animation */
.faq-card__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.42s ease, opacity 0.35s ease;
}

.faq-card__answer > div { overflow: hidden; }

.faq-card--open .faq-card__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-card__divider {
  height: 1px;
  background: rgba(40, 31, 81, 0.12);
  margin-block: 16px 14px;
}

.faq-card__a {
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(40, 31, 81, 0.65);
  transition: color 0.7s ease;
}

/* Toggle button */
.faq-card__toggle {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(40, 31, 81, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sapphire);
  transition: background 0.2s ease, transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-card__toggle svg {
  width: 14px;
  height: 14px;
}

.faq-card:hover .faq-card__toggle {
  background: rgba(40, 31, 81, 0.14);
}

.faq-card--open .faq-card__toggle {
  transform: rotate(45deg);
  background: var(--color-sapphire);
  color: #fff;
}

/* Dark mode */
/* FAQ dark mode — responds normally to body.page-dark */
body.page-dark .faq-section         { background: #151128; }
body.page-dark .faq-heading         { color: #fff; }
body.page-dark .faq-card            { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
body.page-dark .faq-card:hover      { background: rgba(255,255,255,0.09); }
body.page-dark .faq-card__q         { color: #fff; }
body.page-dark .faq-card__a         { color: rgba(255,255,255,0.55); }
body.page-dark .faq-card__divider   { background: rgba(255,255,255,0.10); }
body.page-dark .faq-card__num       { background: rgba(195,213,52,0.15); color: var(--color-lime); }
body.page-dark .faq-card__toggle    { background: rgba(255,255,255,0.10); color: #fff; }
body.page-dark .faq-card--open .faq-card__toggle { background: #fff; color: var(--color-sapphire); }
body.page-dark .faq-track-wrap::before { background: linear-gradient(to right, #151128, transparent); }
body.page-dark .faq-track-wrap::after  { background: linear-gradient(to left,  #151128, transparent); }


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   Search overlay — srch-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.srch-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.srch-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.srch-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 30, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.srch-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin-top: 120px;
  padding: 0 20px;
  transform: translateY(-16px);
  transition: transform 0.28s ease;
}

.srch-overlay.is-open .srch-inner {
  transform: translateY(0);
}

/* Search bar row */
.srch-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1e1840;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 20px;
}

.srch-bar__icon {
  color: rgba(255,255,255,0.40);
  display: flex;
  flex-shrink: 0;
}

.srch-bar__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Zain', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  caret-color: var(--color-lime);
}

.srch-bar__input::placeholder { color: rgba(255,255,255,0.30); }
.srch-bar__input::-webkit-search-cancel-button { display: none; }

.srch-bar__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: rgba(255,255,255,0.40);
  display: flex;
  transition: color 0.15s;
  flex-shrink: 0;
}
.srch-bar__close:hover { color: #fff; }

/* Body (suggestions + results container) */
.srch-body { margin-top: 10px; }

.srch-results--main { display: none; }

/* Section label above suggestions */
.srch-section-label {
  font-family: 'Zain', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.30);
  padding: 12px 20px 6px;
}

/* Results list */
.srch-results {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.srch-results__item {}

.srch-results__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.srch-results__link:hover { background: rgba(255,255,255,0.06); }

.srch-results__title {
  font-family: 'Zain', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.srch-results__desc {
  font-family: 'Zain', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}

.srch-results__empty {
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.40);
  padding: 20px;
  text-align: center;
}

.srch-results mark {
  background: none;
  color: var(--color-lime);
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   Footer
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.site-footer {
  background: #0e0b1e;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Newsletter bar ──────────────────────────────────────────────────── */
.ft-newsletter {
  padding-block: 52px 48px;
  background: #0e0b1e;
  color: rgba(255, 255, 255, 0.8);
}

.ft-nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.ft-nl-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.ft-nl-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.60);
}

.ft-nl-form {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  flex-shrink: 0;
  width: 500px;
  max-width: 100%;
  overflow: hidden;
}

.ft-nl-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 24px;
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  color: #fff;
  outline: none;
  min-width: 0;
}

.ft-nl-input::placeholder { color: rgba(255,255,255,0.4); }

.ft-nl-btn {
  background: #fff;
  color: var(--color-sapphire);
  border: none;
  padding: var(--space-3) var(--space-8);
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  cursor: pointer;
  margin: 4px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.ft-nl-btn:hover { background: var(--color-lime); color: var(--color-sapphire); box-shadow: var(--shadow-md); }

/* Divider */
.ft-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
}

/* ── Main columns ────────────────────────────────────────────────────── */
.ft-cols {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 40px 48px;
  padding-block: 60px 56px;
}

/* Brand column */
.ft-brand { display: flex; flex-direction: column; }

.ft-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 28px;
}

.ft-logo__img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.ft-contact-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 8px;
}

.ft-contact-link {
  display: block;
  font-size: 0.9rem;
  color: var(--color-lime);
  text-decoration: none;
  margin-bottom: 5px;
  transition: opacity 0.2s ease;
}

.ft-contact-link:hover { opacity: 0.72; }

.ft-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 20px;
}

.ft-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.ft-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lime);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.ft-social:hover { background: var(--color-lime); color: #151128; }

.ft-social svg { width: 15px; height: 15px; }

/* Nav columns */
.ft-col__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.ft-col__title .brand { text-transform: uppercase; }

.ft-col__title--sub {
  margin-top: 28px;
}

.ft-col__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ft-col__links a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.ft-col__links a:hover { color: #fff; }

/* Locations list */
.ft-col__links--locations { gap: 22px; }

.ft-loc__city {
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  margin: 0 0 4px;
}

.ft-loc__addr {
  font-style: normal;
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
}

.ft-signin {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-signin:hover { color: #fff; }

/* ── Bottom bar ──────────────────────────────────────────────────────── */
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-block: 24px;
}

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

.ft-copy {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.50);
}

.ft-copy a { color: inherit; text-decoration: none; }

.ft-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.40);
}

.ft-legal a {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-legal a:hover { color: #fff; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ft-cols { grid-template-columns: 220px repeat(4, 1fr); gap: 32px; }
}

@media (max-width: 860px) {
  .ft-nl-inner  { flex-direction: column; align-items: flex-start; }
  .ft-nl-form   { width: 100%; }
  .ft-cols      { grid-template-columns: 1fr 1fr; }
  .ft-brand     { grid-column: span 2; }
}

@media (max-width: 600px) {
  .ft-cols            { grid-template-columns: 1fr; }
  .ft-brand           { grid-column: span 1; }
  .ft-bottom-inner    { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   HOMEPAGE — hp-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── Shared homepage section helpers ───────────────────────────────── */
.hp-section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.hp-section-head--left { text-align: left; margin: 0 0 48px; }
.hp-section-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 12px;
}
.hp-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0 0 16px;
}
.hp-section-sub {
  font-size: var(--text-lg);
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── btn outline light (CTA section) ──────────────────────────────── */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  padding: var(--space-3) var(--space-8);
  border-radius: 4px;
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* ╝╝╝╝╝╝ HP HERO ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   HOMEPAGE HERO v3 — split slider
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.hp-hero-v3 {
  position: relative;
  background: #fff;
  overflow: hidden;
  margin-top: -68px;
  padding-top: 68px;
  user-select: none;
  transition: background-color 0.7s ease;
}
body.page-dark .hp-hero-v3 { background: #151128; }

.hp-hero-v3__viewport {
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 67vh;
  min-height: 500px;
}

.hp-hero-v3__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
}
.hp-hero-v3__track.is-dragging { transition: none; cursor: grabbing; }

/* Each slide */
.hp-hero-v3__slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.hp-hero-v3__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Text content */
.hp-hero-v3__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 50%;
  padding-left: max(48px, calc((100vw - 1280px) / 2 + 48px));
  padding-right: 48px;
}

.hp-hero-v3__eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime);
}

.hp-hero-v3__title {
  font-family: 'Zain', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hp-hero-v3__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  box-sizing: border-box;
  height: 40px;
  padding: 0 32px;
  background: #fff;
  color: var(--color-blue);
  font-family: 'Zain', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.hp-hero-v3__cta:hover { background: var(--color-lime); color: var(--color-sapphire); }

/* Dots — mirrored 2-col grid to sit under the image column */
.hp-hero-v3__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hp-hero-v3__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}
.hp-hero-v3__dot--active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

@media (max-width: 860px) {
  .hp-hero-v3__slide {
    grid-template-columns: 1fr;
    padding-inline: 32px;
  }
  .hp-hero-v3__right { aspect-ratio: 16 / 9; }
}

/* Pattern — hero v3 (behind image card) */
.zn-pat-wrap--hp-v3 {
  position: absolute;
  left: 42%;
  top: 5%;
  width: 300px;
  height: 300px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.zn-pat--hp-v3 {
  filter: brightness(0) saturate(100%) invert(13%) sepia(47%) saturate(900%) hue-rotate(222deg) brightness(80%);
  opacity: 0.12;
}
body.page-dark .zn-pat--hp-v3 {
  filter: brightness(0) invert(1);
  opacity: 0.08;
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   HOMEPAGE HERO v2 — IDC banner
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.hp-hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -68px; /* pull up behind transparent sticky nav */
}

.hp-hero-v2__bg {
  position: absolute;
  inset: 0;
  background: url('icons/IDC-1.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hp-hero-v2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 188px; /* 120px + 68px nav height */
  padding-bottom: 120px;
}

.hp-hero-v2__content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hp-hero-v2__eyebrow {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime);
}

.hp-hero-v2__title {
  font-family: 'Zain', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

/* word-by-word entrance animation */
.hv2-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: hv2WordIn 0.5s ease forwards;
}

@keyframes hv2WordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hp-hero-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 12px 32px;
  background: var(--color-lime);
  color: var(--color-sapphire);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hp-hero-v2__cta:hover {
  background: #d4e840;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .hp-hero-v2__title { font-size: 2.4rem; }
  .hp-hero-v2__inner { padding-block: 80px; }
}

/* ── hp-hero-wrap (v1, hidden) ──────────────────────────────────────── */

.hp-hero-wrap {
  position: relative;   /* globe col positioned relative to this */
  z-index: 2;           /* sits above section 2 in stacking order */
}

.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;     /* safe — globe is now a sibling, not a child */
  padding: 100px 0;
  transition: background-color 0.7s ease;
}
body.page-dark .hp-hero { background: #151128; }
body.page-dark .hp-hero__title   { color: #fff;                      transition: color 0.7s ease; }
body.page-dark .hp-hero__eyebrow { color: var(--color-lime);         transition: color 0.7s ease; }
body.page-dark .hp-hero__body    { color: rgba(255,255,255,0.62);    transition: color 0.7s ease; }

body.page-dark .hp-hero .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  transition: color 0.7s ease, border-color 0.7s ease, background-color 0.7s ease;
}
body.page-dark .hp-hero .btn-secondary:hover {
  background-color: #fff;
  color: var(--color-sapphire);
  border-color: #fff;
}
body.page-dark .hp-hero .btn-secondary::before { background: #fff; }

.hp-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hp-hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(40,31,81,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,31,81,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hp-hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}
.hp-hero__bg-glow--1 {
  width: 700px; height: 700px;
  top: -180px; right: -80px;
  background: radial-gradient(circle, rgba(52,76,152,0.10) 0%, transparent 70%);
}
.hp-hero__bg-glow--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, rgba(195,213,52,0.10) 0%, transparent 70%);
}
.hp-hero__bg-glow--3 {
  width: 800px; height: 800px;
  top: 50%; left: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(195,213,52,0.07) 0%, rgba(52,76,152,0.05) 45%, transparent 70%);
  animation: hpGlowPulse 7s ease-in-out infinite;
}
@keyframes hpGlowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}

.hp-hero__inner {
  position: relative;
  z-index: 1;
  pointer-events: none; /* let events reach globe on the right */
}

.hp-hero__content {
  max-width: 640px;
  pointer-events: all; /* re-enable for text/buttons */
}

/* Globe column: right 40% — overflow:hidden is the hard left boundary */
.hp-hero__globe-col {
  position: absolute;
  left: 55%;
  top: 0;
  bottom: -20vh;
  right: -32vw;
  z-index: 999;
  pointer-events: none;
  will-change: transform;
}

.hp-hero__globe-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
}

.hp-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 20px;
}

.hp-hero__title {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-sapphire);
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

.hp-hero__body {
  font-size: var(--text-lg);
  color: #4a4a5a;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 40px;
}

.hp-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stats bar */
.hp-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  padding: 32px 40px;
  background: var(--color-sapphire);
  border-radius: 4px;
  max-width: 760px;
}

.hp-stat { flex: 1; text-align: center; }

.hp-stat__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-lime);
  line-height: 1;
  margin-bottom: 6px;
}

.hp-stat__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin: 0;
}

.hp-stat__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Decorative ring pattern — partially behind globe in hero wrapper */
.zn-pat-wrap--hp-ring {
  position: absolute;
  left: 62%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  z-index: 5;           /* above hero bg, below globe (999) */
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.zn-pat--hp-ring {
  filter: brightness(0) saturate(100%) invert(56%) sepia(55%) saturate(460%) hue-rotate(153deg) brightness(87%);
  opacity: 0.5;
}

/* Pattern placement - hero */
.zn-pat-wrap--hp-hero {
  top: -8%;
  right: -14%;
  width: 48%;
  z-index: 0;
}
.zn-pat--hp-hero {
  filter: brightness(0) saturate(100%) invert(13%) sepia(47%) saturate(900%) hue-rotate(222deg) brightness(80%);
  opacity: 0.5;
}

/* ╝╝╝╝╝╝ HP SOLUTIONS ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.hp-solutions {
  position: relative;
  padding: 80px 0;
  background: #151128;
  overflow: hidden;
}
.hp-solutions .hp-section-eyebrow { color: var(--color-lime); }
.hp-solutions .hp-section-title   { color: #fff; }
.hp-solutions .hp-section-sub     { color: rgba(255,255,255,0.62); }

.hp-sol-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.hp-sol-card {
  flex: 1;
  min-width: 0;
  min-height: 300px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    flex 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.hp-sol-grid:has(.hp-sol-card:hover) .hp-sol-card:hover {
  flex: 1.6;
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

.hp-sol-grid:has(.hp-sol-card:hover) .hp-sol-card:not(:hover) {
  flex: 0.85;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.05);
}

.hp-sol-card__title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.hp-sol-grid:has(.hp-sol-card:hover) .hp-sol-card:hover .hp-sol-card__title {
  color: #fff;
}

.hp-sol-card__foot {
  flex: 1;
  position: relative;
  margin-top: 16px;
  min-height: 52px;
}

.hp-sol-card__icon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.hp-sol-card__icon img,
.hp-sol-card__icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
  filter: none;
  stroke-width: 1.5;
}

.hp-sol-grid:has(.hp-sol-card:hover) .hp-sol-card:hover .hp-sol-card__icon {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.hp-sol-card__text {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-base);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity 0.25s ease 0.15s;
}

.hp-sol-grid:has(.hp-sol-card:hover) .hp-sol-card:hover .hp-sol-card__text {
  opacity: 1;
}

.hp-sol-card__cta {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity 0.25s ease 0.2s;
  pointer-events: none;
}
.hp-sol-grid:has(.hp-sol-card:hover) .hp-sol-card:hover .hp-sol-card__cta {
  opacity: 1;
}


/* Pattern placement - solutions */
.zn-pat-wrap--hp-sol {
  top: -10%;
  right: -15%;
  width: 44%;
  z-index: 0;
}
.zn-pat--hp-sol {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(74%) sepia(66%) saturate(415%) hue-rotate(26deg) brightness(105%);
}
body.page-dark .zn-pat--hp-sol {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(74%) sepia(66%) saturate(415%) hue-rotate(26deg) brightness(105%);
}

/* ╝╝╝╝╝╝ HP INDUSTRIES ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.hp-industries {
  position: relative;
  padding-top: 80px;
  padding-bottom: 0;
  background: #151128;
  isolation: isolate;
}
.hp-industries .hp-section-eyebrow { color: var(--color-lime); }
.hp-industries .hp-section-title   { color: #fff; }
.hp-industries .hp-section-sub     { color: rgba(255,255,255,0.62); }

/* Track wrapper */
.hp-ind-track-wrap {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding-block: 12px 32px;
  cursor: grab;
}
.hp-ind-track-wrap:active { cursor: grabbing; }


.hp-ind-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: flex-start;
  padding-inline: max(var(--section-px), calc((100vw - var(--container-max)) / 2 + var(--section-px)));
  will-change: transform;
}

/* Card */
.hp-ind-track { align-items: flex-start; }

.hp-ind-card {
  flex-shrink: 0;
  width: 360px;
  min-height: 180px;
  background: #111;
  border: none;
  border-radius: 4px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: box-shadow 0.35s ease;
  cursor: pointer;
  user-select: none;
  align-self: flex-start;
}
.hp-ind-card--sm,
.hp-ind-card--md,
.hp-ind-card--lg { width: 360px; }

/* Background image */
.hp-ind-card__img {
  position: absolute;
  inset: 0;
  background: var(--color-sapphire);
  z-index: 0;
}

/* Overlay — subtle darken on hover */
.hp-ind-card__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.35s ease;
  z-index: 1;
}
.hp-ind-card:hover .hp-ind-card__overlay {
  background: rgba(0,0,0,0.15);
}
.hp-ind-card:hover {
  box-shadow: 0 12px 40px rgba(40,31,81,0.35);
}

/* Icon */
.hp-ind-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease, height 0.35s cubic-bezier(0.4,0,0.2,1), margin-bottom 0.35s ease;
}
.hp-ind-card__icon img {
  width: 36px; height: 36px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.hp-ind-card:hover .hp-ind-card__icon {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
}

/* Title */
.hp-ind-card__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}
.hp-ind-card:hover .hp-ind-card__title { color: #fff; }

/* Body — hidden by default, unfolds below title on hover */
.hp-ind-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.hp-ind-card:hover .hp-ind-card__body {
  max-height: 200px;
  opacity: 1;
}

.hp-ind-card__divider {
  width: 32px; height: 2px;
  background: var(--color-lime);
  border-radius: 2px;
  margin: 16px 0 12px;
}

.hp-ind-card__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}


/* ── Industries grid layout ───────────────────────────────── */
.hp-industries .container {
  position: relative;
  z-index: 1;
}

.hp-ind-head {
  margin-bottom: 40px;
  max-width: 640px;
}
.hp-ind-head .hp-section-eyebrow { color: var(--color-lime); }
.hp-ind-head .hp-section-title   { color: #fff; margin-bottom: 16px; }
.hp-ind-head .hp-section-sub     { color: rgba(255,255,255,0.62); }

/* Scroll wrapper — aligned left with container, overflows right */
.hp-ind-scroll-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  cursor: grab;
  padding-left: max(var(--section-px), calc((100vw - var(--container-max)) / 2 + var(--section-px)));
  padding-bottom: 4px;
}
.hp-ind-scroll-wrap::-webkit-scrollbar { display: none; }
.hp-ind-scroll-wrap:active { cursor: grabbing; }

/* Cards row */
.hp-ind-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
}

/* Card */
.hp-ind-icard {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* Image area */
.hp-ind-icard__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.hp-ind-icard:hover .hp-ind-icard__visual img {
  transform: scale(1.05);
}
.hp-ind-icard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text */
.hp-ind-icard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hp-ind-icard__title {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.2;
}
.hp-ind-icard__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* Header row: text left, button aligned with title */
.hp-ind-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.hp-ind-top .btn {
  margin-top: calc(14px * 1.4 + 12px); /* eyebrow line-height + margin-bottom */
  flex-shrink: 0;
}

.hp-ind-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 64px;
}
.hp-ind-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hp-ind-dot--active {
  background: var(--color-lime);
  border-color: var(--color-lime);
  transform: scale(1.2);
}

/* Pattern placement - industries */
.zn-pat-wrap--hp-ind {
  top: -15%;
  right: -12%;
  left: auto;
  width: 36%;
  z-index: -1;
  pointer-events: none;
}
.zn-pat--hp-ind {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(74%) sepia(66%) saturate(415%) hue-rotate(26deg) brightness(105%);
}

/* ╝╝╝╝╝╝ HP ALLIANCES ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.hp-alliances {
  padding: 80px 0;
  background: #fff;
}

.hp-al-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.hp-al-header .btn {
  margin-top: calc(14px * 1.4 + 12px);
  flex-shrink: 0;
}

/* Track */
.hp-al-track-wrap {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  padding-block: 16px;
}

.hp-al-track-wrap::before,
.hp-al-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 1;
  pointer-events: none;
}
.hp-al-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--color-bg), transparent); }
.hp-al-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--color-bg), transparent); }

.hp-al-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.hp-al-logo {
  flex-shrink: 0;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-out);
}

.hp-al-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.35s var(--ease-out);
  display: block;
}

.hp-al-logo:hover {
  transform: scale(1.08);
}

/* Per-logo size corrections */
.hp-al-logo img[alt="Amazon Web Services"] { height: 64px; }
.hp-al-logo img[alt="Fortinet"]            { height: 22px; }
.hp-al-logo img[alt="Google Cloud"]        { height: 44px; }
.hp-al-logo img[alt="Microsoft Azure"]     { height: 40px; }
.hp-al-logo img[alt="Microsoft"]           { height: 36px; }


/* ╝╝╝╝╝╝ HP INSIGHTS ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.hp-insights {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

/* Section header: INSIGHTS ──── View All → */
.hp-ins-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.hp-ins-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.1;
  transition: color 0.7s ease;
}

.hp-ins-rule { display: none; }

.hp-ins-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}
.hp-ins-view-all:hover { gap: 14px; }

/* Sub heading */
.hp-ins-sub {
  max-width: 700px;
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
  margin: -28px 0 52px;
  transition: color 0.7s ease;
}

/* Track */
.hp-ins-track-wrap {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 0 0 32px;
  cursor: grab;
}
.hp-ins-track-wrap::-webkit-scrollbar { display: none; }
.hp-ins-track-wrap.is-dragging { cursor: grabbing; }

.hp-ins-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: flex-start;
}

/* Card — 4:3 base, expands down on click */
.hp-ins-card {
  flex-shrink: 0;
  width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ECEAF5;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background-color 0.35s ease;
  align-self: flex-start;
}
.hp-ins-card:hover { background: #D8D5EA; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(40,31,81,0.10); }

/* Body */
.hp-ins-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 180px; /* 360 × 1/2 = 180 */
}

.hp-ins-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-lime);
  color: var(--color-sapphire);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.hp-ins-card__title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.3;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hp-ins-card__excerpt {
  font-size: var(--text-base);
  color: rgba(40,31,81,0.65);
  line-height: 1.65;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.35s ease;
}
.hp-ins-card--expanded .hp-ins-card__excerpt,
.hp-ins-card:hover .hp-ins-card__excerpt {
  max-height: 220px;
  opacity: 1;
  margin: 0 0 20px;
}

.hp-ins-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
  flex-shrink: 0;
}
.hp-ins-card:hover .hp-ins-card__link { gap: 10px; }


/* ── Insights featured slider ─────────────────────────────── */
.hp-ins-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
  cursor: grab;
}
.hp-ins-slider.is-dragging { cursor: grabbing; }

/* All slides hidden by default; JS adds state classes */
.hp-ins-slide {
  display: none;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  background: #F0EEF8;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px;
}
/* Active slide: in normal flow, sets container height */
.hp-ins-slide.is-active {
  display: grid;
  position: relative;
}
/* Entering / exiting slides: layered on top, don't affect height */
.hp-ins-slide.is-entering,
.hp-ins-slide.is-exiting {
  display: grid;
  position: absolute;
  inset: 0;
  width: 100%;
}

/* Left: hero image */
.hp-ins-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-sapphire) 50% 50%/cover no-repeat;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background-position 0.6s ease;
}
.hp-ins-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(10,8,25,0.85) 100%);
  pointer-events: none;
}
.hp-ins-hero__tag {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  background: var(--color-lime);
  color: var(--color-sapphire);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 0 0 9999px 0;
}
.hp-ins-hero__foot {
  position: relative;
  z-index: 2;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-ins-hero__title {
  font-family: 'Zain', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}
.hp-ins-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  height: 40px;
  padding: 0 24px;
  border-radius: 4px;
  box-sizing: border-box;
  background: #fff;
  color: var(--color-blue);
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hp-ins-hero__cta:hover { background: var(--color-lime); color: var(--color-sapphire); }

/* Right column */
.hp-ins-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

/* Stats panel */
.hp-ins-stats {
  flex: 1;
  background: var(--color-sapphire);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.hp-ins-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hp-ins-stat__num {
  font-family: 'Zain', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 900;
  color: var(--color-lime);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hp-ins-stat__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  margin-top: 6px;
}

/* Animated bar */
.hp-ins-bar {
  height: 3px;
  background: rgba(195,213,52,0.18);
  border-radius: 2px;
  overflow: hidden;
}
.hp-ins-bar__fill {
  height: 100%;
  width: 0;
  background: var(--color-lime);
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.hp-ins-stat.is-active .hp-ins-bar__fill {
  width: var(--bar);
}

/* Before/after compare */
.hp-ins-stat--compare .hp-ins-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hp-ins-stat--compare .hp-ins-bar {
  position: relative;
  overflow: visible;
}
.hp-ins-stat--compare .hp-ins-bar span {
  position: absolute;
  right: 0;
  top: -16px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.hp-ins-bar--before .hp-ins-bar__fill { background: rgba(195,213,52,0.35); }
.hp-ins-bar--after  .hp-ins-bar__fill { background: var(--color-lime); }
.hp-ins-stat--compare.is-active .hp-ins-bar--before .hp-ins-bar__fill { width: var(--bar); }
.hp-ins-stat--compare.is-active .hp-ins-bar--after  .hp-ins-bar__fill { width: var(--bar); }

/* Description panel */
.hp-ins-desc {
  background: #E4E1F2;
  border-radius: 4px;
  padding: 24px;
}
.hp-ins-desc p {
  font-size: var(--text-base);
  color: rgba(40,31,81,0.75);
  line-height: 1.7;
  margin: 0;
}

/* Dots */
.hp-ins-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.hp-ins-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(40,31,81,0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hp-ins-dot--active {
  background: var(--color-sapphire);
  border-color: var(--color-sapphire);
  transform: scale(1.2);
}
body.page-dark .hp-ins-dot { border-color: rgba(255,255,255,0.3); }
body.page-dark .hp-ins-dot--active { background: #fff; border-color: #fff; }

@media (max-width: 860px) {
  .hp-ins-slide { grid-template-columns: 1fr; }
  .hp-ins-hero { min-height: 300px; }
}

/* ╝╝╝╝╝╝ HP NEWS ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.hp-news {
  padding: 80px 0;
  background: #151128;
}

.hp-news .hp-section-eyebrow { color: var(--color-lime); }
.hp-news .hp-section-title   { color: #fff; }

.hp-section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  max-width: none;
  text-align: left;
}

.hp-section-head--split .hp-section-head__text { flex: 1; }
.hp-section-head--split .hp-section-head__text .hp-section-title { margin-bottom: 0; }
.hp-section-head--split .hp-news-cta { flex-shrink: 0; align-self: flex-end; }

/* ── Homepage News grid (hn-*) ──────────────────────────────────────────── */
.hn-grid {
  display: flex;
  gap: 24px;
  height: 440px;
}

/* Big card — 66% */
.hn-big {
  flex: 0 0 66%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.hn-big__img {
  position: absolute;
  inset: 0;
}
.hn-big__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}
.hn-big:hover .hn-big__img img { transform: scale(1.06); }
.hn-big__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,28,0.92) 0%, rgba(10,8,28,0.45) 55%, rgba(10,8,28,0.1) 100%);
}
.hn-big__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  text-decoration: none;
  color: #fff;
}
.hn-big__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  line-height: var(--leading-snug);
  margin: 14px 0 18px;
}

/* Small cards — 34% */
.hn-smalls {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hn-small {
  flex: 1;
  border-radius: var(--radius-lg);
  background: var(--color-sapphire);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}
.hn-small:hover { background: #352870; }
.hn-small__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 72px 24px 24px;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
}
.hn-small__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 10px 0 0;
  flex: 1;
}

/* Shared meta / tag / arrow */
.hn-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hn-tag {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-sapphire);
  background: var(--color-lime);
  border-radius: 0 0 9999px 0;
  padding: 6px 16px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}
.hn-date {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.hn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-lime);
  transition: gap 0.2s;
  margin-top: 14px;
  flex-shrink: 0;
  align-self: flex-end;
}
.hn-big__content:hover .hn-arrow,
.hn-small__content:hover .hn-arrow { gap: 14px; }

/* White button variant on the big image card */
.hn-arrow--btn {
  height: 40px;
  padding: 0 24px;
  border-radius: 4px;
  box-sizing: border-box;
  background: #fff;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 20px;
  transition: background 0.2s, color 0.2s, gap 0.2s;
}
.hn-big__content:hover .hn-arrow--btn { background: var(--color-lime); color: var(--color-sapphire); gap: 12px; }


/* ╝╝╝╝╝╝ HP CTA ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.hp-cta {
  position: relative;
  background: var(--color-sapphire);
  padding: 120px 0;
  overflow: hidden;
}

.hp-cta__inner { position: relative; z-index: 1; }

.hp-cta__content { max-width: 640px; }

.hp-cta__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hp-cta__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 40px;
}

.hp-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Pattern placement - CTA */
.zn-pat-wrap--hp-cta {
  bottom: -20%;
  right: -6%;
  width: 40%;
  z-index: 0;
}
.zn-pat--hp-cta {
  opacity: 0.5;
  filter: brightness(0) invert(1);
}

/* ╝╝╝╝╝╝ HP RESPONSIVE ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
@media (max-width: 1200px) {
  .hp-sol-grid { flex-wrap: wrap; }
  .hp-sol-card { flex: 1 1 calc(33.333% - 12px); }
}

@media (max-width: 700px) {
  .hp-sol-card { flex: 1 1 calc(50% - 8px); }
}

@media (max-width: 960px) {
  .hp-ind-layout { grid-template-columns: 1fr; gap: 48px; }
  .hp-ind-visual { position: static; }
  .hp-insights-grid { grid-template-columns: 1fr 1fr; }
  .hp-hero__stats { padding: 24px 28px; }
}

@media (max-width: 768px) {
  .hp-hero { padding: 120px 0 60px; }
  .hp-hero__globe-col { display: none; }
  .hp-hero__stats { flex-direction: column; gap: 24px; }
  .hp-stat__divider { width: 48px; height: 1px; }
  .hp-sol-card { flex: 1 1 100%; }
  .hp-insights-grid { grid-template-columns: 1fr; }
  .hp-alliances-strip { gap: 0; }
  .hp-alliance-logo { border-right: none; border-bottom: 1px solid #ddd; width: 50%; }
}

@media (max-width: 560px) {
  .hp-sol-card { flex: 1 1 100%; }
  .hp-news-item { flex-direction: column; gap: 12px; }
  .hp-news-item__date { flex-direction: row; gap: 6px; align-items: baseline; }
  .hp-alliance-logo { width: 100%; }
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   ABOUT PAGE — au-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── Shared about-page helpers ──────────────────────────────────────── */
.au-section-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 12px;
}
.au-section-eyebrow--light { color: var(--color-lime); }

/* ╝╝╝╝╝╝ AU HERO ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-hero {
  padding: 140px 0 100px;
  background: #fff;
  overflow: hidden;
}

.au-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.au-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.au-hero__title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0 0 24px;
}

.au-hero__body {
  font-size: var(--text-lg);
  color: #4a4a5a;
  line-height: 1.7;
  margin: 0 0 16px;
}

.au-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.au-hero__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.au-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.au-hero__visual-pat {
  position: absolute;
  top: -160%;
  right: -10%;
  width: 55%;
  opacity: 0.38;
  filter: brightness(0) saturate(100%) invert(11%) sepia(63%) saturate(950%) hue-rotate(237deg) brightness(80%);
  animation: znPatRotate 60s linear infinite reverse;
  pointer-events: none;
}

.au-hero__visual-logo {
  position: relative;
  z-index: 1;
  width: 76%;
}

.au-hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-hero__logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  opacity: 0.92;
}

/* ╝╝╝╝╝╝ AU SHARED HEADING ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0;
}

/* ╝╝╝╝╝╝ AU VISION ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-vision {
  background: #ffffff;
  padding: 60px 0 120px;
  position: relative;
  overflow: hidden;
}

.au-vision__inner { position: relative; z-index: 1; }

.au-vision__head { margin-bottom: 36px; }

.au-vision__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.au-vision__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0;
}

.au-vision__statement {
  font-size: var(--text-lg);
  color: #2a2242;
  line-height: 1.7;
  max-width: 840px;
  margin: 0 0 56px;
  font-weight: 400;
}

.au-vision__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 4px solid var(--color-lime);
  padding-top: 40px;
}

.au-vision__pillar {
  padding: 0 40px 0 0;
}
.au-vision__pillar:last-child { padding-left: 40px; padding-right: 0; }
.au-vision__pillar:nth-child(2) { padding: 0 40px; }

.au-vision__pillar-label {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: 10px;
}

.au-vision__pillar-text {
  font-size: var(--text-base);
  color: #4a4a5a;
  line-height: 1.65;
  margin: 0;
}

/* pattern positioning */
.zn-pat-wrap--au-vis { top: -21%; right: -14%; width: 42%; }
.zn-pat-wrap--au-vis .zn-pat {
  filter: brightness(0) saturate(100%) invert(26%) sepia(72%) saturate(620%) hue-rotate(208deg) brightness(92%);
  opacity: 0.50;
}

/* ╝╝╝╝╝╝ AU VALUES ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-values {
  background: #151128;
  padding: 120px 0;
}

.au-values .au-section-eyebrow { color: var(--color-lime); }
.au-values .au-section-title   { color: #fff; }

.au-values__head { margin-bottom: 56px; }

.au-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.au-value-card {
  background: var(--color-sapphire);
  border-radius: 4px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.au-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(40,31,81,0.25);
}

.au-value-card__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.au-value-card__pat-img {
  position: absolute;
  width: 110%;
  opacity: 0.1;
}

.au-value-card__pat-img--heart    { top: -25%; right: -20%; filter: brightness(0) invert(1); }
.au-value-card__pat-img--radiance { top: -15%; right: -25%; filter: brightness(0) invert(1); }
.au-value-card__pat-img--belonging{ top: -20%; right: -20%; filter: brightness(0) invert(1); }

.au-value-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.au-value-card__tag {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0 0 9999px 0;
  padding: 6px 20px;
  background: var(--color-lime);
  color: var(--color-sapphire);
  z-index: 2;
  line-height: 1.6;
}


.au-value-card__name {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.au-value-card__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0;
}

/* ╝╝╝╝╝╝ AU OPERATE ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-operate {
  background: #151128;
  overflow: hidden;
  position: relative;
}

.au-operate__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.au-operate__visual {
  position: relative;
  overflow: hidden;
}

.au-operate__visual-scene {
  position: absolute;
  inset: 0;
}

.au-operate__visual-bg {
  position: absolute;
  inset: 0;
  background: var(--color-sapphire);
}

.au-operate__visual-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 50%, rgba(52,76,152,0.55) 0%, transparent 65%);
}

.au-operate__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(195,213,52,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195,213,52,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.au-operate__visual-nodes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-op-lines {
  position: absolute;
  width: 300px;
  height: 300px;
}

.au-op-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 16px rgba(195,213,52,0.7);
}

.au-op-node--1 { top: calc(50% - 108px); left: calc(50% - 108px); }
.au-op-node--2 { top: calc(50% - 108px); left: calc(50% +  96px); }
.au-op-node--3 { top: calc(50% +  96px); left: calc(50% - 108px); }
.au-op-node--4 { top: calc(50% +  96px); left: calc(50% +  96px); }

.au-op-center {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 28px rgba(195,213,52,0.85), 0 0 56px rgba(195,213,52,0.3);
  flex-shrink: 0;
}

.zn-pat-wrap--au-op {
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 80%;
  pointer-events: none;
}

.zn-pat--au-op { filter: brightness(0) invert(1); opacity: 0.5; }

.au-operate__content {
  padding: 100px 80px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.au-operate__title {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 40px;
}

.au-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
}

.au-principle {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.au-principle__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-lime);
  margin-top: 3px;
}

.au-principle__icon svg { width: 18px; height: 18px; }

.au-principle__text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0;
}

/* ╝╝╝╝╝╝ AU PLATFORM BANNER ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-platform {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

.au-platform__bg {
  position: absolute;
  inset: 0;
}

.au-platform__bg-scene {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #12093a 0%, #1a2e5a 45%, #0a2318 100%);
}

.au-platform__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(52,76,152,0.4) 0%, transparent 60%);
}

.zn-pat-wrap--au-plat {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 50%;
  pointer-events: none;
}

.au-platform__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.au-platform__content {
  max-width: 820px;
  text-align: center;
}

.au-platform__title {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 28px;
}

.au-platform__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  margin: 0 0 40px;
}

.au-platform__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.au-platform__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.au-platform__dot--active { background: var(--color-lime); }

/* ╝╝╝╝╝╝ AU JOURNEY ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-journey {
  background: #fff;
  padding: 120px 0;
}

.au-journey__head { margin-bottom: 48px; }

.au-journey__sub {
  font-size: var(--text-lg);
  color: #4a4a5a;
  line-height: 1.72;
  max-width: 700px;
  margin: 20px 0 0;
}

/* ── Timeline bar ── */
/* ── Tooltip Timeline ── */
.au-tl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 16px;
  margin-inline: calc(-1 * max(var(--section-px), (100vw - var(--container-max)) / 2 + var(--section-px)));
}

.au-tl-track {
  display: flex;
  position: relative;
  width: 100%;
  min-width: 860px;
  padding: 0 max(var(--section-px), (100vw - var(--container-max)) / 2 + var(--section-px)) 48px;
  align-items: flex-start;
}

/* horizontal connecting line — gray base */
.au-tl-track::before {
  content: '';
  position: absolute;
  top: calc(180px + 9px);
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(40,31,81,0.10);
  z-index: 0;
}

/* lime fill — anchored right, grows leftward to active node */
.au-tl-track::after {
  content: '';
  position: absolute;
  top: calc(180px + 9px);
  right: 0;
  width: var(--au-tl-fill, 8.33%);
  height: 3px;
  background: var(--color-lime);
  z-index: 1;
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}

.au-tl-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  z-index: 1;
  min-width: 160px;
}

.au-tl-node__space {
  height: 180px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* speech bubble */
.au-tl-bubble {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 420px;
  height: 200px;
  background: #f2f2f6;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.au-tl-bubble--img-right {
  flex-direction: row-reverse;
}

.au-tl-bubble__img {
  width: 160px;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  border-radius: 4px 0 0 4px;
}

.au-tl-bubble--img-right .au-tl-bubble__img {
  border-radius: 0 4px 4px 0;
}

.au-tl-bubble__content {
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.au-tl-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f2f2f6;
}

.au-tl-node--active .au-tl-bubble {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.au-tl-bubble__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-sapphire);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.au-tl-bubble__icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.au-tl-bubble__title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-sapphire);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
  line-height: 1.3;
}

.au-tl-bubble__desc {
  font-size: 0.78rem;
  color: #4a4a5a;
  line-height: 1.55;
  margin: 0;
}

/* dot */
.au-tl-pip {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d0ccdf;
  position: relative;
  z-index: 2;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}

.au-tl-pip::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
  transition: opacity 0.25s;
  opacity: 0;
}

.au-tl-node--active .au-tl-pip {
  border-color: var(--color-lime);
  background: var(--color-lime);
  box-shadow: 0 0 0 4px rgba(195,213,52,0.22);
}

.au-tl-node--active .au-tl-pip::after { opacity: 1; }

/* year + label */
.au-tl-year {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-sapphire);
  letter-spacing: 0.02em;
  margin-top: 10px;
  transition: color 0.25s, opacity 0.25s, transform 0.25s;
  opacity: 0.35;
}

.au-tl-node:hover .au-tl-year {
  transform: scale(1.12);
}

.au-tl-node--active .au-tl-year {
  color: var(--color-sapphire);
  opacity: 1;
}

.au-tl-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sapphire);
  margin-top: 4px;
  transition: color 0.25s, opacity 0.25s;
  opacity: 0.35;
}

.au-tl-node--active .au-tl-label {
  color: var(--color-sapphire);
  opacity: 1;
}

/* Capability grid (2022, 2025 panels) */
.au-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.au-cap-card {
  background: #f4f3fb;
  border-radius: 4px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.au-cap-card__icon {
  width: 28px;
  height: 28px;
  color: var(--color-blue);
}

.au-cap-card__icon svg { width: 20px; height: 20px; }

.au-cap-card p {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-sapphire);
  margin: 0;
  line-height: 1.5;
}

/* Impact grid (2023, 2024, 2026 panels) */
.au-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.au-impact-card {
  background: #f4f3fb;
  border-radius: 4px;
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s;
}

.au-impact-card:hover { background: #eceafc; }

.au-impact-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-blue);
  margin-top: 2px;
}

.au-impact-card__icon svg { width: 18px; height: 18px; }

.au-impact-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-sapphire);
  margin: 0;
  line-height: 1.5;
}

/* ╝╝╝╝╝╝ AU STORY SLIDER — au-ss-* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-ss-section { padding: 0 0 80px; background: #fff; }

.au-ss-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #eeeef7;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(40,31,81,0.07);
}

.au-ss-slide {
  display: none;
  grid-template-columns: 3fr 2fr;
  min-height: 460px;
}

.au-ss-slide--active {
  display: grid;
  flex: 1 0 auto;
  animation: auSsIn 0.4s ease;
}

@keyframes auSsIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Left image panel */
.au-ss-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background-size: cover;
  background-position: center;
}

/* dark gradient overlay */
.au-ss-left__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,6,30,0.85) 0%, rgba(10,6,30,0.2) 55%, transparent 100%);
}

.au-ss-left__content {
  position: relative;
  z-index: 1;
}

.au-ss-num {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.au-ss-title {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.15;
}

/* Right text panel */
.au-ss-right {
  background: #eeeef7;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.au-ss-right p {
  font-size: var(--text-base);
  color: #3a3556;
  line-height: 1.75;
  margin: 0;
}

/* Dots */
.au-ss-dots {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  background: transparent;
}

.au-ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(40,31,81,0.18);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.au-ss-dot--active {
  background: var(--color-sapphire);
  width: 24px;
  border-radius: 4px;
}

/* ╝╝╝╝╝╝ AU CAPABILITY LAYER ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-capability {
  background: #f7f5fd;
  padding: 120px 0;
}

.au-capability__head { margin-bottom: 56px; }

.au-capability__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.au-capability__item {
  background: #fff;
  border: 1px solid rgba(40,31,81,0.08);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.au-capability__item:hover {
  border-color: rgba(52,76,152,0.2);
  box-shadow: 0 8px 24px rgba(40,31,81,0.07);
}

.au-capability__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-sapphire);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lime);
}

.au-capability__icon svg { width: 20px; height: 20px; }

.au-capability__label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  margin: 0;
  line-height: 1.45;
  padding-top: 8px;
}

/* ╝╝╝╝╝╝ AU IMPACT STRIP ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-impstrip {
  background: #f7f5fd;
  padding: 100px 0 120px;
}

.au-impstrip__head { margin-bottom: 56px; }

.au-impstrip__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0;
}

.au-impstrip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.au-impstrip__card {
  background: #fff;
  border: 1px solid rgba(40,31,81,0.08);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.au-impstrip__card:hover {
  border-color: rgba(52,76,152,0.2);
  box-shadow: 0 8px 24px rgba(40,31,81,0.07);
}

.au-impstrip__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-sapphire);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lime);
}

.au-impstrip__icon svg { width: 20px; height: 20px; }

.au-impstrip__label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  margin: 0;
  line-height: 1.45;
  padding-top: 8px;
}

/* ╝╝╝╝╝╝ AU SUSTAINABILITY ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.au-sustain {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

.au-sustain__bg {
  position: absolute;
  inset: 0;
}

.au-sustain__bg-scene {
  position: absolute;
  inset: 0;
  background: #151128;
}

.au-sustain__bg-overlay {
  position: absolute;
  inset: 0;
}

.zn-pat-wrap--au-sus {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 55%;
  pointer-events: none;
}

.au-sustain__inner {
  position: relative;
  z-index: 1;
}

.au-sustain__content { max-width: 780px; }

.au-sustain__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 28px;
}

.au-sustain__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  margin: 0 0 36px;
}

.au-sustain__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  background: #fff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 4px;
  border: none;
  transition: background 0.25s, gap 0.25s, box-shadow 0.25s;
}

.au-sustain__cta:hover {
  background: var(--color-lime);
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* ╝╝╝╝╝╝ AU RESPONSIVE ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
@media (max-width: 1100px) {
  .au-operate__content { padding: 80px 48px 80px 48px; }
}

@media (max-width: 960px) {
  .au-hero__inner    { grid-template-columns: 1fr; gap: 48px; }
  .au-hero__right    { max-width: 440px; }
  .au-values__grid   { grid-template-columns: 1fr; gap: 16px; }
  .au-value-card     { min-height: 280px; }
  .au-operate__inner { grid-template-columns: 1fr; }
  .au-operate__visual { height: 340px; }
  .au-vision__pillars { grid-template-columns: 1fr; gap: 24px; }
  .au-vision__pillar  { padding: 24px 0 0 !important; }
  .au-vision__pillar:first-child { padding-top: 0 !important; }
  .au-journey-layer__layout { grid-template-columns: 1fr; gap: 32px; }
  .au-cap-grid        { grid-template-columns: repeat(2, 1fr); }
  .au-capability__grid { grid-template-columns: repeat(2, 1fr); }
  .au-impstrip__grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .au-hero        { padding: 120px 0 60px; }
  .au-vision      { padding: 80px 0; }
  .au-values      { padding: 80px 0; }
  .au-platform    { padding: 100px 0; }
  .au-journey     { padding: 80px 0; }
  .au-capability  { padding: 80px 0; }
  .au-impstrip    { padding: 60px 0 80px; }
  .au-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .au-values__grid    { grid-template-columns: 1fr; }
  .au-cap-grid        { grid-template-columns: 1fr; }
  .au-impact-grid     { grid-template-columns: 1fr; }
  .au-capability__grid { grid-template-columns: 1fr; }
  .au-impstrip__grid  { grid-template-columns: 1fr; }
  .au-principles-grid { grid-template-columns: 1fr; }
  .au-operate__content { padding: 60px 24px; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   SHARED DRONE VISUAL — cr-drone-card, cr-ring
   (used across careers, job detail, about pages)
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.cr-drone-card { border-radius: 4px; overflow: hidden; }

.cr-drone-card__scene {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}

.cr-drone-card__scene--wide { aspect-ratio: 16/10; }
.cr-drone-card__scene--tall { aspect-ratio: 3/4; }

.cr-drone-card__sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #c8daf5 0%, #9ec4e8 35%, #d6e8f5 60%, #e8f0d8 100%);
}

.cr-drone-card__sky--blue  { background: linear-gradient(160deg, #a8c8f0 0%, #7ab0e0 40%, #b0d0f0 100%); }
.cr-drone-card__sky--teal  { background: linear-gradient(160deg, #a0d4d8 0%, #6ec0c4 40%, #b4dce0 100%); }
.cr-drone-card__sky--lime  { background: linear-gradient(160deg, #c8d890 0%, #a8c050 40%, #d4e080 100%); }

.cr-drone-card__terrain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(180deg, #d4b896 0%, #c9a87c 50%, #b8965a 100%);
}

.cr-drone-card__terrain::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, #d4b896 100%);
  border-radius: 40% 60% 0 0 / 24px;
}

.cr-drone-card__drone {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  animation: auDroneHover 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(40,31,81,0.25));
}

/* Orbit rings on scene */
.cr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(52,76,152,0.22);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cr-ring--1 { width: 52%; padding-bottom: 52%; }
.cr-ring--2 { width: 70%; padding-bottom: 70%; border-style: dashed; border-color: rgba(52,76,152,0.12); }
.cr-ring--card-1 { width: 54%; padding-bottom: 54%; }
.cr-ring--card-2 { width: 76%; padding-bottom: 76%; border-style: dashed; border-color: rgba(52,76,152,0.1); }
.cr-ring--sm-1   { width: 58%; padding-bottom: 58%; border-color: rgba(52,76,152,0.18); }

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   CAREERS PAGE — cr-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── Shared heading helpers ─────────────────────────────────────────── */
.cr-section-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 12px;
}
.cr-section-eyebrow--light { color: var(--color-lime); }

.cr-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0 0 16px;
}

.cr-section-head { margin-bottom: 56px; }
.cr-section-sub  { font-size: var(--text-lg); color: #555; line-height: 1.65; margin: 0; max-width: 720px; }

/* ╝╝╝╝╝╝ CAREERS HERO ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-hero {
  padding: 140px 0 100px;
  background: #fff;
  overflow: hidden;
}

.cr-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.cr-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.cr-hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0 0 20px;
}

.cr-hero__body {
  font-size: var(--text-lg);
  color: #4a4a5a;
  line-height: 1.7;
  margin: 0 0 24px;
}

.cr-hero__quote {
  background: rgba(40,31,81,0.06);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 0 0 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cr-hero__quote-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-lime);
  margin-top: 3px;
}

.cr-hero__quote p {
  font-size: var(--text-base);
  color: var(--color-sapphire);
  line-height: 1.65;
  margin: 0;
}

/* Hero right visual */
.cr-drone-visual {
  border-radius: 4px;
  overflow: hidden;
}

.cr-controller {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 2;
}

/* ╝╝╝╝╝╝ WHAT WE DO ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-whatwedo {
  padding: 64px 0 100px;
  background: #fff;
}

.cr-whatwedo__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

/* Scroll wrapper */
.cr-whatwedo__scroll {
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 8px;
  padding-bottom: 16px;
  padding-right: max(var(--section-px), calc((100vw - var(--container-max)) / 2 + var(--section-px)));
  margin-right: calc(-1 * max(var(--section-px), (100vw - var(--container-max)) / 2 + var(--section-px)));
  scrollbar-width: none;
  cursor: grab;
}
.cr-whatwedo__scroll::-webkit-scrollbar { display: none; }
.cr-whatwedo__scroll:active { cursor: grabbing; }

/* Cards row */
.cr-whatwedo__cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow: visible;
}

/* Individual card — full card with bg, pattern, circle, text */
.cr-whatwedo__card {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  padding: 28px 24px 32px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cr-whatwedo__card:hover {
  transform: translateY(-6px);
}

/* Pattern decoration */
.cr-whatwedo__card-pat {
  position: absolute;
  width: 72%;
  top: -8%;
  right: -8%;
  opacity: 0.13;
  filter: brightness(0) saturate(100%) invert(13%) sepia(47%) saturate(900%) hue-rotate(222deg) brightness(80%);
  pointer-events: none;
  user-select: none;
}

/* Square image */
.cr-whatwedo__card-img {
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 4px;
}
.cr-whatwedo__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cr-whatwedo__card:hover .cr-whatwedo__card-img img {
  transform: scale(1.05);
}

.cr-whatwedo__card-body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cr-whatwedo__card-title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-sapphire);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

.cr-whatwedo__card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) {
  .cr-whatwedo__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ╝╝╝╝╝╝ QUOTE BANNER ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-quote-banner {
  background: var(--color-sapphire);
  padding: 72px 0;
}

.cr-quote-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.cr-quote-banner__text {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  max-width: 760px;
  margin: 0;
}

/* ╝╝╝╝╝╝ WHY JOIN US ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-why {
  padding: 64px 0 100px;
  background: #fff;
}

.cr-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cr-why-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.cr-why-card:hover {
  box-shadow: 0 12px 32px rgba(40,31,81,0.1);
  transform: translateY(-4px);
}

.cr-why-card__img { height: 220px; overflow: hidden; }
.cr-why-card__img .cr-drone-card,
.cr-why-card__img .cr-drone-card__scene { height: 100%; border-radius: 0; }
.cr-why-card__img .cr-drone-card__scene { aspect-ratio: unset; }

.cr-why-card__body { padding: 24px; }

.cr-why-card__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-sapphire);
  margin: 0 0 8px;
}

.cr-why-card__text { font-size: var(--text-base); color: #666; line-height: 1.6; margin: 0; }

/* ╝╝╝╝╝╝ WORKING WITH ZainTECH ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-working {
  padding: 100px 0;
  background: #f8f8fb;
}

.cr-working__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cr-working__item { margin-bottom: 0; }
.cr-working__divider { height: 1px; background: #e0e0ec; margin: 28px 0; }

.cr-working__item-title {
  font-size: var(--text-lg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-sapphire);
  margin: 0 0 10px;
}

.cr-working__item-text { font-size: var(--text-base); color: #555; line-height: 1.7; margin: 0; }

/* ╝╝╝╝╝╝ YOUR GROWTH ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-growth {
  padding: 100px 0;
  background: #151128;
}

.cr-growth .cr-section-eyebrow { color: var(--color-lime); }
.cr-growth .cr-section-title   { color: #fff; }

.cr-growth__head {
  margin-bottom: 64px;
}

.cr-growth__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 16px 0 0;
  max-width: 560px;
}

.cr-growth__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: stretch;
}

.cr-growth__items {
  display: flex;
  flex-direction: column;
}

.cr-growth__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  transition: opacity 0.3s ease;
}

.cr-growth__item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.cr-growth__item-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cr-growth__item-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  line-height: 1.3;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.cr-growth__item.is-active .cr-growth__item-dot { opacity: 1; }

.cr-growth__item.is-active .cr-growth__item-text {
  color: #fff;
  font-weight: 800;
}

.cr-growth__items:hover .cr-growth__item:not(:hover) .cr-growth__item-text {
  color: rgba(255,255,255,0.2);
}

.cr-growth__items:hover .cr-growth__item:hover .cr-growth__item-dot { opacity: 1; }

.cr-growth__items:hover .cr-growth__item:hover .cr-growth__item-text {
  color: #fff;
  font-weight: 800;
}

.cr-growth__panel {
  position: relative;
  height: 100%;
}

.cr-growth__panel-imgs {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.cr-growth__panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}

.cr-growth__panel-img.is-active { opacity: 1; }

/* ╝╝╝╝╝╝ SHARED MINDSET ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-mindset {
  background: #fff;
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cr-mindset__orbs {
  flex: 1;
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.cr-mindset__center {
  flex: 0 0 520px;
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.cr-mindset__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.15;
  margin: 0 0 24px;
}

.cr-mindset__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ddd;
  margin: 0 auto 24px;
  color: #aaa;
}

.cr-mindset__divider svg { width: 18px; height: 18px; }

.cr-mindset__body {
  font-size: var(--text-lg);
  color: #555;
  line-height: 1.75;
  margin: 0;
  font-weight: 400;
}

/* orbs */
.cr-mindset__orb {
  position: absolute;
  width:  var(--s, 120px);
  height: var(--s, 120px);
  top:  var(--t, 20%);
  left: var(--l, 10%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(40,31,81,0.16);
  animation:
    crmPop  0.65s var(--pd, 0s) cubic-bezier(0.34,1.56,0.64,1) both,
    crmFloat var(--fd, 9s) var(--fde, 0s) ease-in-out infinite;
}

.cr-mindset__orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.6s ease;
}

.cr-mindset__orb img.is-changing { opacity: 0; }

@keyframes crmPop {
  0%   { transform: scale(0);    opacity: 0; }
  70%  { transform: scale(1.1);  opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

@keyframes crmPopOut {
  0%   { transform: scale(1);  opacity: 1; }
  100% { transform: scale(0);  opacity: 0; }
}

@keyframes crmFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* ╝╝╝╝╝╝ JOB LISTINGS ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-jobs {
  padding: 100px 0;
  background: #151128;
}

.cr-jobs .cr-section-eyebrow { color: var(--color-lime); }
.cr-jobs .cr-section-title   { color: #fff; }
.cr-jobs .cr-section-sub     { color: rgba(255,255,255,0.6); }

.cr-jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cr-job-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 28px;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s, background 0.25s;
}

.cr-job-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
  border-color: rgba(195,213,52,0.4);
}

.cr-job-card__tag {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sapphire);
  background: var(--color-lime);
  padding: 6px 16px;
  border-radius: 0 0 9999px 0;
  z-index: 1;
}

.cr-job-card__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.cr-job-card__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.cr-job-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: gap 0.2s;
}

.cr-job-card__link svg { width: 14px; height: 14px; }
.cr-job-card__link:hover { gap: 10px; }

/* ╝╝╝╝╝╝ HERO LEFT BORDER ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-hero__left {
}

/* ╝╝╝╝╝╝ HERO IMAGE COLLAGE ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-hero__collage {
  position: relative;
  width: 100%;
  height: 500px;
}

.cr-col-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 16px 48px rgba(40,31,81,0.14);
}

.cr-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ZainTECH pattern behind collage images */
.zn-pat-wrap--cr-hero {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 340px;
  height: 340px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.zn-pat--cr-hero {
  filter: brightness(0) saturate(100%) invert(13%) sepia(47%) saturate(900%) hue-rotate(222deg) brightness(80%);
  opacity: 0.13;
}

/* top-right — behind everything */
.cr-col-img--1 {
  width: 58%;
  aspect-ratio: 1;
  top: -9%;
  right: -7%;
  z-index: 1;
  animation: crFloat1 7s ease-in-out infinite;
}

/* center-left — largest, in front */
.cr-col-img--2 {
  width: 66%;
  aspect-ratio: 1;
  top: 16%;
  left: 0;
  z-index: 3;
  animation: crFloat2 9s ease-in-out infinite 1.5s;
}

/* bottom-right — small, middle layer */
.cr-col-img--3 {
  width: 37%;
  aspect-ratio: 1;
  bottom: 0;
  right: 0;
  z-index: 2;
  animation: crFloat3 6s ease-in-out infinite 0.7s;
}

@keyframes crFloat1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes crFloat2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes crFloat3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* ╝╝╝╝╝╝ WHAT WE DO — 3-card layout ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ╝╝╝╝╝╝ WHY ZAINTECH — benefit tiles ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.cr-why-card2 {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 9 / 11;
  display: flex;
  align-items: flex-end;
}

.cr-why-card2--solid {
  background: var(--color-sapphire);
  align-items: flex-end;
}

.cr-why-card2__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cr-why-card2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,15,40,0.75) 0%, rgba(20,15,40,0.1) 55%, transparent 100%);
}

.cr-why-card2__body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

.cr-why-card2__title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin: 0;
}

/* ╝╝╝╝╝╝ HOW WE WORK ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-howwework {
  padding: 100px 0;
  background: #151128;
}

.cr-howwework__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cr-howwework__head { margin-bottom: 24px; }

.cr-howwework .cr-section-eyebrow { color: var(--color-lime); }
.cr-howwework .cr-section-title   { color: #fff; }

.cr-howwework__intro {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 20px;
}

.cr-howwework__strips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cr-howwework__strip {
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: none;
}

.cr-howwework__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-howwework__stack {
  position: relative;
  width: 100%;
  height: 420px;
}

.cr-howwework__fcard {
  position: absolute;
  width: 210px;
  height: 290px;
  border-radius: 4px;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.65s;
}

.cr-howwework__fcard-img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(40,31,81,0.18);
  transition: box-shadow 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cr-howwework__fcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cr-howwework__fcard-quote {
  position: absolute;
  top: 50%;
  left: calc(100% - 24px);
  transform: translateY(-50%) translateX(8px);
  width: 172px;
  background: #fff;
  border-radius: 4px;
  padding: 16px 14px;
  box-shadow: 0 16px 48px rgba(40,31,81,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
  z-index: 20;
}

.cr-howwework__fcard-quote--left {
  left: auto;
  right: calc(100% - 24px);
  transform: translateY(-50%) translateX(-8px);
}

.cr-howwework__fcard-quote::before {
  content: '\201C';
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-sapphire);
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.cr-howwework__fcard-quote p {
  font-size: 0.78rem;
  color: #333;
  line-height: 1.55;
  margin: 0 0 10px;
  font-style: italic;
}

.cr-howwework__fcard-quote span {
  font-size: 0.7rem;
  color: var(--color-blue);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cr-howwework__fcard:hover {
  transform: scale(1.1) !important;
  z-index: 10 !important;
}

.cr-howwework__fcard:hover .cr-howwework__fcard-img {
  box-shadow: 0 36px 90px rgba(40,31,81,0.28);
}

.cr-howwework__fcard:hover .cr-howwework__fcard-img img {
  transform: scale(1.1);
}

.cr-howwework__fcard:hover .cr-howwework__fcard-quote {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.cr-howwework__fcard:hover .cr-howwework__fcard-quote--left {
  transform: translateY(-50%) translateX(0);
}

.cr-howwework__fcard--1 {
  left: 5%;
  bottom: 0;
  transform: rotate(-7deg);
  z-index: 1;
  animation: crFCard1 8s ease-in-out infinite;
}

.cr-howwework__fcard--2 {
  left: 28%;
  top: 10px;
  transform: rotate(3deg);
  z-index: 2;
  animation: crFCard2 10s 1.2s ease-in-out infinite;
}

.cr-howwework__fcard--3 {
  right: 5%;
  top: 40px;
  transform: rotate(-2deg);
  z-index: 3;
  animation: crFCard3 9s 2.5s ease-in-out infinite;
}

@keyframes crFCard1 {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50%       { transform: rotate(-7deg) translateY(-12px); }
}

@keyframes crFCard2 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%       { transform: rotate(3deg) translateY(-16px); }
}

@keyframes crFCard3 {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(-2deg) translateY(-10px); }
}

/* ╝╝╝╝╝╝ WHO WE LOOK FOR ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.cr-whowelookfor {
  padding: 100px 0;
  background: #fff;
}

.cr-whowelookfor__head {
  margin-bottom: 56px;
}

.cr-whowelookfor__sub {
  font-size: var(--text-lg);
  color: #666;
  line-height: 1.6;
  margin: 16px 0 0;
}

.cr-whowelookfor__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.cr-whowelookfor__img {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.cr-whowelookfor__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cr-whowelookfor__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-content: stretch;
}

.cr-whowelookfor-card {
  background: #eeeef7;
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
}

.cr-whowelookfor-card:hover {
  box-shadow: 0 12px 40px rgba(40,31,81,0.1);
  transform: translateY(-4px);
}

.cr-whowelookfor-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(40,31,81,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sapphire);
  flex-shrink: 0;
}

.cr-whowelookfor-card__icon svg {
  width: 28px;
  height: 28px;
}

.cr-whowelookfor-card__title {
  font-size: var(--text-base);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-sapphire);
  line-height: 1.3;
  margin: 0;
}

.cr-whowelookfor-card__text {
  font-size: var(--text-base);
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── Careers responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cr-why__tiles { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .cr-hero__inner           { grid-template-columns: 1fr; gap: 48px; }
  .cr-whatwedo__slide       { grid-template-columns: 1fr; }
  .cr-whatwedo__slide-img   { height: 280px; }
  .cr-howwework__inner      { grid-template-columns: 1fr; }
  .cr-whowelookfor__cards   { grid-template-columns: 1fr; }
  .cr-working__inner        { grid-template-columns: 1fr; }
  .cr-growth__inner         { grid-template-columns: 1fr; }
  .cr-why__grid             { grid-template-columns: 1fr; }
  .cr-why__tiles            { grid-template-columns: 1fr 1fr; }
  .cr-jobs__grid            { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .cr-growth__grid  { grid-template-columns: 1fr; }
  .cr-jobs__grid    { grid-template-columns: 1fr; }
  .cr-why__tiles    { grid-template-columns: 1fr; }
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   JOB DETAIL PAGE — jd-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ╝╝╝╝╝╝ JD HERO ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.jd-hero {
  padding: 120px 0 90px;
  background: #151128;
  overflow: hidden;
}

.jd-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.jd-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-lime);
  text-decoration: none;
  margin-bottom: 20px;
  transition: gap 0.2s;
  opacity: 0.85;
}

.jd-back svg { width: 14px; height: 14px; }
.jd-back:hover { gap: 12px; opacity: 1; }

.jd-hero__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sapphire);
  background: var(--color-lime);
  padding: 6px 16px;
  border-radius: 0 0 9999px 0;
  margin-top: 28px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.jd-hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
}

.jd-hero__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 28px;
}

.jd-hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 32px;
}

.jd-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

.jd-meta-item svg { width: 15px; height: 15px; color: var(--color-lime); flex-shrink: 0; }

/* Controller */
.jd-hero__visual {
  position: relative;
  height: 540px;
  border-radius: 4px;
  overflow: hidden;
}
.jd-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jd-hero__controller {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  z-index: 2;
}
.jd-ctrl {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 4px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.jd-ctrl__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  padding: 0 16px;
}
.jd-ctrl__item:first-child { padding-left: 0; }
.jd-ctrl__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #999;
}
.jd-ctrl__value {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-sapphire);
  white-space: nowrap;
}
.jd-ctrl__sep {
  width: 1px;
  height: 28px;
  background: #e0e0e0;
  flex-shrink: 0;
}

/* ╝╝╝╝╝╝ JD DETAILS ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.jd-details {
  padding: 80px 0 100px;
  background: #fff;
}

.jd-details__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.jd-details__heading {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-sapphire);
  margin: 0 0 24px;
}

.jd-details__heading--accent { color: var(--color-sapphire); }

.jd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jd-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: #444;
  line-height: 1.6;
}

.jd-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
  flex-shrink: 0;
  margin-top: 8px;
}

.jd-list--accent li::before { background: var(--color-blue); }

.jd-role-box {
  background: #eeeef7;
  border-radius: 4px;
  padding: 36px 40px;
}

/* ╝╝╝╝╝╝ JD APPLY ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */
.jd-apply {
  background: #151128;
  padding: 80px 0;
}

.jd-apply__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.jd-apply .cr-section-title {
  color: #fff;
  margin: 0 0 24px;
}

.jd-form { display: flex; flex-direction: column; gap: 16px; }
.jd-form__group { width: 100%; }

.jd-form__input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.jd-form__input::placeholder { color: rgba(255,255,255,0.4); }
.jd-form__input:focus        { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); box-shadow: none; }

.jd-apply__docs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Upload button */
.jd-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 4px;
  background: var(--color-lime);
  color: var(--color-sapphire);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.jd-upload-btn:hover { background: #d4e640; }
.jd-upload-btn svg   { width: 18px; height: 18px; flex-shrink: 0; }

.jd-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-8);
  background: #fff;
  color: var(--color-blue);
  border: none;
  border-radius: 4px;
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
  width: fit-content;
  align-self: flex-end;
  transition: background 0.2s, transform 0.15s;
}

.jd-apply-btn:hover { background: var(--color-lime); color: var(--color-sapphire); transform: translateY(-1px); }

.jd-hero .btn-accent {
  background-color: #fff;
  background-image: none;
  color: var(--color-sapphire);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.jd-hero .btn-accent:hover {
  background-color: var(--color-lime);
  background-image: none;
  color: var(--color-sapphire);
  filter: none;
}

/* ── JD responsive ────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .jd-hero__inner    { grid-template-columns: 1fr; gap: 40px; }
  .jd-details__inner { grid-template-columns: 1fr; gap: 48px; }
  .jd-apply__inner   { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .cr-why__grid { grid-template-columns: 1fr; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   NEWS PAGE — nw-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── 1. Hero ─────────────────────────────────────────────────────────── */

.nw-hero {
  padding: 72px 0 48px;
  background: #fff;
}

.nw-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.nw-hero__title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-sapphire);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* ── 2. Filters bar ──────────────────────────────────────────────────── */

.nw-filters-bar {
  padding: 0 0 48px;
  background: #fff;
}

.nw-filters__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nw-filters__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Shared filter button */
.nw-filter-select {
  position: relative;
}

.nw-filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gray-700);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
  user-select: none;
}

.nw-filter-btn:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.nw-filter-btn__arrow {
  transition: transform 0.2s var(--ease-inout);
  flex-shrink: 0;
}

.nw-filter-select.is-open .nw-filter-btn__arrow {
  transform: rotate(180deg);
}

.nw-filter-btn__icon {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Dropdown */
.nw-filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

.nw-filter-select.is-open .nw-filter-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nw-filter-option {
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-gray-700);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.nw-filter-option:hover {
  background: var(--color-gray-50);
  color: var(--color-blue);
}

.nw-filter-option--active {
  color: var(--color-blue);
  font-weight: 700;
}

/* Search */
.nw-search {
  position: relative;
  width: 260px;
}

.nw-search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
  pointer-events: none;
}

.nw-search__input {
  padding-left: 46px;
  border-radius: 4px;
}

.nw-search__input::placeholder {
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-sm);
  font-weight: 700;
}

/* ── 3. News grid ────────────────────────────────────────────────────── */

.nw-grid-section {
  background: #fff;
  padding-bottom: var(--space-24);
}

.nw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* Card — full image cover */
.nw-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out);
}

.nw-card:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-xl);
}

/* Background image layer */
.nw-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nw-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.nw-card:hover .nw-card__bg img {
  transform: scale(1.08);
}

/* Dark gradient overlay */
.nw-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 28, 0.92) 0%,
    rgba(10, 8, 28, 0.65) 45%,
    rgba(10, 8, 28, 0.15) 100%
  );
}

/* Content sits above overlay */
.nw-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  text-decoration: none;
  color: #fff;
}

/* Meta row: tag + date */
.nw-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.nw-card__tag {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  background: var(--color-lime);
  color: var(--color-sapphire);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 0 0 9999px 0;
  white-space: nowrap;
}

.nw-card__date {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
}

.nw-card__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  line-height: var(--leading-snug);
  margin-bottom: 18px;
}

.nw-card__arrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  transition: gap 0.2s var(--ease-out);
}

.nw-card:hover .nw-card__arrow {
  gap: 14px;
}

/* Hidden cards (filtered out) */
.nw-card--hidden {
  display: none;
}

/* Empty state */
.nw-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  gap: 16px;
}

.nw-empty[hidden] { display: none; }

.nw-empty__icon {
  color: var(--color-gray-300);
  margin-bottom: 8px;
}

.nw-empty__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-gray-800);
}

.nw-empty__body {
  font-size: var(--text-base);
  color: var(--color-ink-muted);
  max-width: 360px;
  line-height: var(--leading-normal);
}

.nw-empty__reset {
  margin-top: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--color-sapphire);
  background: transparent;
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.18s, color 0.18s;
}

.nw-empty__reset:hover {
  background: var(--color-lime);
  color: var(--color-sapphire);
}

/* ── 4. Pagination ───────────────────────────────────────────────────── */

.nw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nw-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  background: transparent;
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gray-700);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nw-page-btn:hover:not(:disabled):not(.nw-page-btn--active) {
  background: var(--color-gray-50);
  color: var(--color-blue);
}

.nw-page-btn--active {
  background: var(--color-sapphire);
  color: #fff;
  pointer-events: none;
}

.nw-page-btn--prev,
.nw-page-btn--next {
  font-weight: 700;
  color: var(--color-gray-700);
  padding: 0 20px;
}

.nw-page-btn--next {
  background: var(--color-sapphire);
  color: #fff;
}

.nw-page-btn--next:hover {
  background: var(--color-blue) !important;
  color: #fff !important;
}

.nw-page-btn[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
}

.nw-page-ellipsis {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  color: var(--color-gray-400);
  padding: 0 4px;
  line-height: 44px;
}

/* ╝╝ NEWS RESPONSIVE ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

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

@media (max-width: 640px) {
  .nw-hero__title { font-size: 4rem; }
  .nw-filters__inner { flex-direction: column; align-items: stretch; }
  .nw-filters__left { flex-direction: column; }
  .nw-filter-btn { width: 100%; justify-content: space-between; }
  .nw-search { width: 100%; }
  .nw-grid { grid-template-columns: 1fr; }
}



/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   404 PAGE — e4-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── Keyframes ───────────────────────────────────────────────────────── */

@keyframes e4FadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes e4ScaleIn {
  from { opacity: 0; transform: scale(0.72); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes e4Float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

@keyframes e4Glitch {
  0%, 88%, 100% {
    text-shadow: none;
    transform: translateX(0) skewX(0deg);
  }
  89% {
    text-shadow: -5px 0 var(--color-lime), 5px 0 var(--color-turquoise);
    transform: translateX(-4px) skewX(-1.5deg);
  }
  91% {
    text-shadow: 5px 0 var(--color-lime), -5px 0 var(--color-turquoise);
    transform: translateX(4px) skewX(1.5deg);
  }
  93% {
    text-shadow: -3px 0 var(--color-turquoise), 3px 0 var(--color-lime);
    transform: translateX(-2px) skewX(-0.5deg);
  }
  95% {
    text-shadow: none;
    transform: translateX(0) skewX(0deg);
  }
}

@keyframes e4HashPulse {
  0%, 100% { color: var(--color-sapphire); }
  50%       { color: var(--color-blue); }
}

@keyframes e4RingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

@keyframes e4GridFade {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.08; }
}

@keyframes e4DotPulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%       { transform: scale(1.8); opacity: 0.7; }
}

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

.e4-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

/* ── Background grid ─────────────────────────────────────────────────── */

.e4-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.e4-grid__line {
  position: absolute;
  background: var(--color-sapphire);
  animation: e4GridFade 4s ease-in-out infinite;
}

.e4-grid__line--h {
  left: 0; right: 0;
  height: 1px;
  opacity: 0.08;
}

.e4-grid__line--v {
  top: 0; bottom: 0;
  width: 1px;
  opacity: 0.08;
}

.e4-grid__line:nth-child(2) { animation-delay: 0.8s; }
.e4-grid__line:nth-child(3) { animation-delay: 1.6s; }
.e4-grid__line:nth-child(4) { animation-delay: 0.4s; }
.e4-grid__line:nth-child(5) { animation-delay: 1.2s; }
.e4-grid__line:nth-child(6) { animation-delay: 2.0s; }

.e4-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-sapphire);
  transform: translate(-50%, -50%);
  animation: e4DotPulse 3s ease-in-out infinite;
}

.e4-dot:nth-child(7)  { animation-delay: 0.0s; }
.e4-dot:nth-child(8)  { animation-delay: 0.4s; }
.e4-dot:nth-child(9)  { animation-delay: 0.8s; }
.e4-dot:nth-child(10) { animation-delay: 1.2s; }
.e4-dot:nth-child(11) { animation-delay: 1.6s; }
.e4-dot:nth-child(12) { animation-delay: 2.0s; }
.e4-dot:nth-child(13) { animation-delay: 2.4s; }
.e4-dot:nth-child(14) { animation-delay: 2.8s; }
.e4-dot:nth-child(15) { animation-delay: 3.2s; }

/* ── Inner layout ────────────────────────────────────────────────────── */

.e4-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-block: 80px;
}

/* ── Left copy ───────────────────────────────────────────────────────── */

.e4-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-turquoise);
  margin-bottom: 16px;
  opacity: 0;
  animation: e4FadeUp 0.6s var(--ease-out) 0.1s forwards;
}

.e4-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: var(--leading-snug);
  margin-bottom: 20px;
  opacity: 0;
  animation: e4FadeUp 0.6s var(--ease-out) 0.25s forwards;
}

.e4-body {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: var(--leading-relaxed);
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: e4FadeUp 0.6s var(--ease-out) 0.4s forwards;
}

.e4-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: e4FadeUp 0.6s var(--ease-out) 0.55s forwards;
}

.e4-btn-primary {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 13px 28px;
}

.e4-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sapphire);
  text-decoration: none;
  padding: var(--space-3) var(--space-8);
  border-radius: 4px;
  border: 1.5px solid var(--color-sapphire);
  line-height: 1;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.e4-btn-ghost:hover {
  background: var(--color-sapphire);
  color: #fff;
  box-shadow: var(--shadow-md);
}

/* ── Right: #404 ─────────────────────────────────────────────────────── */

.e4-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.e4-code {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  line-height: 1;
  user-select: none;
  animation:
    e4ScaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both,
    e4Float   5s ease-in-out 1.2s infinite;
}

.e4-code__hash {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--color-sapphire);
  letter-spacing: -0.04em;
  animation: e4HashPulse 3s ease-in-out 1.5s infinite;
}

.e4-code__num {
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 900;
  color: var(--color-turquoise);
  letter-spacing: -0.04em;
  animation: e4Glitch 7s ease-in-out 2s infinite;
}

/* Orbiting rings */
.e4-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  pointer-events: none;
}

.e4-ring--1 {
  width: 380px;
  height: 380px;
  border-color: rgba(40, 31, 81, 0.10);
  border-style: dashed;
  animation: e4RingSpin 18s linear infinite;
}

.e4-ring--2 {
  width: 520px;
  height: 520px;
  border-color: rgba(35, 174, 183, 0.12);
  border-style: dashed;
  animation: e4RingSpinR 28s linear infinite;
}

/* ╝╝ 404 RESPONSIVE ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

@media (max-width: 900px) {
  .e4-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .e4-body { margin-inline: auto; }
  .e4-actions { justify-content: center; }
  .e4-hero__right { order: -1; }
  .e4-ring--1 { width: 260px; height: 260px; }
  .e4-ring--2 { width: 360px; height: 360px; }
}

@media (max-width: 480px) {
  .e4-code__hash { font-size: 3.5rem; }
  .e4-code__num  { font-size: 6rem; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   WHISTLEBLOWING POLICY PAGE — wb-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

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

.wb-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--color-border);
}

.wb-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--color-sapphire);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* ── Body ────────────────────────────────────────────────────────────── */

.wb-body {
  padding: 64px 0 96px;
}

/* ── Meta row (copyright + registered office) ───────────────────────── */

.wb-meta-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wb-meta-block {
  min-width: 180px;
}

.wb-meta-block__label {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-muted);
  margin-bottom: 8px;
}

.wb-meta-block__value {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-gray-800);
}

.wb-meta-block__address {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
  font-style: normal;
}

.wb-meta-block__link {
  color: var(--color-blue);
  text-decoration: none;
}

.wb-meta-block__link:hover {
  text-decoration: underline;
}

/* ── Policy sections ─────────────────────────────────────────────────── */

.wb-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.wb-section:last-child {
  border-bottom: none;
}

.wb-section__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.wb-section__num {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-turquoise);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.wb-section__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gray-900);
  letter-spacing: 0.04em;
}

.wb-section__body p {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: var(--leading-relaxed);
  margin-bottom: 14px;
}

.wb-section__body p:last-child {
  margin-bottom: 0;
}

.wb-list {
  list-style: none;
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wb-list li {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: var(--leading-relaxed);
  padding-left: 20px;
  position: relative;
}

.wb-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-turquoise);
  flex-shrink: 0;
}

/* ╝╝ WB RESPONSIVE ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

@media (max-width: 640px) {
  .wb-hero__title { font-size: 2rem; }
  .wb-section__title { font-size: var(--text-lg); }
  .wb-meta-row { flex-direction: column; gap: 16px; }
}

/* ── Force light theme on whistleblowing page (footer stays dark) ──────── */
body.page-dark .wb-hero {
  background: #fff;
  border-bottom-color: var(--color-border);
}
body.page-dark .wb-hero__title { color: var(--color-sapphire); }
body.page-dark .wb-body { background: #fff; }
body.page-dark .wb-meta-block__label { color: var(--color-sapphire); }
body.page-dark .wb-meta-block__value,
body.page-dark .wb-meta-block__address { color: #444; }
body.page-dark .wb-meta-block__link { color: var(--color-blue); }
body.page-dark .wb-section { border-bottom-color: rgba(40,31,81,0.1); }
body.page-dark .wb-section__num { color: var(--color-blue); }
body.page-dark .wb-section__title { color: var(--color-sapphire); }
body.page-dark .wb-section__body p,
body.page-dark .wb-list li { color: #444; }

/* ── DEV LABELS (temporary) ─────────────────────────────────────────────── */


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   THREE PILLARS — hpe-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.hpe-section {
  position: relative;
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.hpe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
}

/* ── Left: orbit stage ────────────────────────────────────────────── */
.hpe-left {
  display: flex;
  justify-content: center;
}

.hpe-stage {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1;
}

.hpe-tracks-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hpe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Core */
.hpe-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}
.hpe-core__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-sapphire);
  z-index: 2;
}
.hpe-core__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(52,76,152,0.35);
  animation: hpePulse 2.4s ease-out infinite;
}
@keyframes hpePulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Nodes */
.hpe-node {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  cursor: pointer;
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* width is set by JS; height is auto so label doesn't stretch the circle */
}

.hpe-node__circle {
  position: relative;  /* so pulse ring is scoped to circle bounds */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(52,76,152,0.30);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  aspect-ratio: 1;
  flex-shrink: 0;
}
body.page-dark .hpe-node__circle { background: #1e1840; border-color: rgba(255,255,255,0.15); }

.hpe-node__circle svg { width: 40%; height: 40%; position: relative; z-index: 1; stroke-width: 1.5; stroke: var(--color-sapphire); transition: stroke 0.22s ease; }

/* Pulse ring — hidden by default, animated when .is-pulsing on the node */
.hpe-node__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  pointer-events: none;
  opacity: 0;
}
.hpe-node--pulsing .hpe-node__pulse {
  animation: hpeNodePulse 1.8s ease-out infinite;
}
.hpe-node__circle--digital    .hpe-node__pulse { border-color: rgba(52,76,152,0.5); }
.hpe-node__circle--intelligent .hpe-node__pulse { border-color: rgba(195,213,52,0.5); }
.hpe-node__circle--resilient   .hpe-node__pulse { border-color: rgba(195,213,52,0.5); }

@keyframes hpeNodePulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Hover: lime background, sapphire icon (not when active) */
.hpe-node:not(.hpe-node--active):hover .hpe-node__circle {
  background: var(--color-lime);
  border-color: var(--color-lime);
}

/* Active (clicked): sapphire background, lime icon */
.hpe-node--active .hpe-node__circle {
  background: var(--color-sapphire);
  border-color: var(--color-sapphire);
}
.hpe-node--active .hpe-node__circle svg { stroke: var(--color-lime); }

.hpe-node__label {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-sapphire);
  white-space: nowrap;
  pointer-events: none;
}
body.page-dark .hpe-node__label { color: rgba(255,255,255,0.7); }

/* Tooltip — fixed bottom-right, never moves */
.hpe-tooltip {
  position: absolute;
  bottom: 6%;
  right: 4%;
  z-index: 30;
  background: var(--color-sapphire);
  color: #fff;
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  width: 260px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: var(--shadow-xl);
}
.hpe-tooltip.is-visible { opacity: 1; }

/* ── Info card — centered, appears on node click ──────────────────── */
.hpe-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  text-align: center;
  z-index: 25;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hpe-info.is-visible { opacity: 1; }

.hpe-info__label {
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-blue);
  margin: 0 0 10px;
}

.hpe-info__desc {
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-sapphire);
  line-height: 1.65;
  margin: 0;
}

/* Fade out orbit rings and core dot when a node is active */
.hpe-tracks-svg { transition: opacity 0.4s ease; }
.hpe-core       { transition: opacity 0.4s ease; }
.hpe-stage--active .hpe-tracks-svg { opacity: 0.08; }
.hpe-stage--active .hpe-core       { opacity: 0.08; }

/* ── Right: copy ──────────────────────────────────────────────────── */
.hpe-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 16px;
}
body.page-dark .hpe-eyebrow { color: var(--color-lime); transition: color 0.7s; }

.hpe-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-sapphire);
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}
body.page-dark .hpe-title { color: #fff; transition: color 0.7s; }

.hpe-body {
  font-size: var(--text-base);
  color: #4a4a5a;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 32px;
}
body.page-dark .hpe-body { color: rgba(255,255,255,0.62); transition: color 0.7s; }

.hpe-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hpe-list__item {
  display: flex;
  gap: 12px;
  font-size: var(--text-base);
  color: #4a4a5a;
  line-height: 1.6;
}
body.page-dark .hpe-list__item { color: rgba(255,255,255,0.62); transition: color 0.7s; }
.hpe-list__item strong { color: var(--color-sapphire); }
body.page-dark .hpe-list__item strong { color: #fff; }

.hpe-list__dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 7px;
}
.hpe-list__dot--digital    { background: var(--color-blue); }
.hpe-list__dot--intelligent { background: var(--color-turquoise); }
.hpe-list__dot--resilient  { background: var(--color-lime); }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hpe-layout { grid-template-columns: 1fr; }
  .hpe-stage  { max-width: 360px; margin: 0 auto; }
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   PILLARS ACCORDION — pil-*
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.pil-section {
  padding: 40px 0 64px;
  background: #fff;
}

/* Header */
.pil-header { margin-bottom: 3rem; max-width: 600px; }
.pil-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}
body.page-dark .pil-eyebrow { color: var(--color-turquoise); }
.pil-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
body.page-dark .pil-title { color: #fff; }

/* ── Accordion rows ── */
.pil-acc {
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: background 0.4s ease;
}

.pil-acc--digital,
.pil-acc--intelligent,
.pil-acc--resilient   { background: rgba(40, 31, 81, 0.07); }

.pil-acc--open.pil-acc--digital,
.pil-acc--open.pil-acc--intelligent,
.pil-acc--open.pil-acc--resilient   { background: var(--color-sapphire); }

.pil-acc__hd {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 44px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.pil-acc__num {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.18;
  min-width: 76px;
  font-family: 'Zain', sans-serif;
  transition: color 0.4s ease, opacity 0.4s ease;
}
.pil-acc--digital .pil-acc__num,
.pil-acc--intelligent .pil-acc__num,
.pil-acc--resilient .pil-acc__num   { color: #281F51; }
.pil-acc--open .pil-acc__num        { color: #fff; opacity: 0.22; }

.pil-acc__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pil-acc__name {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.4s ease;
}
.pil-acc--digital .pil-acc__name,
.pil-acc--intelligent .pil-acc__name,
.pil-acc--resilient .pil-acc__name   { color: var(--color-sapphire); }
.pil-acc--open .pil-acc__name        { color: #fff; }

.pil-acc__sub {
  font-size: 1.05rem;
  color: rgba(40, 31, 81, 0.5);
  transition: color 0.4s ease;
}
.pil-acc--open .pil-acc__sub { color: rgba(255,255,255,0.55); }

.pil-acc__chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: rgba(40,31,81,0.3);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), color 0.4s ease;
}
.pil-acc--intelligent .pil-acc__chevron { color: rgba(52,76,152,0.3); }
.pil-acc--resilient   .pil-acc__chevron { color: rgba(3,65,70,0.3); }
.pil-acc--open .pil-acc__chevron { transform: rotate(180deg); color: rgba(255,255,255,0.6); }

/* ── Body / cards ── */
.pil-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1);
}
.pil-acc--open .pil-acc__body { max-height: 700px; }

.pil-acc__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 4px 44px 44px;
}
.pil-acc__cards--three { grid-template-columns: repeat(3, 1fr); }

.pil-acc__card {
  background: rgba(255,255,255,0.09);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pil-acc__card:hover { background: rgba(255,255,255,0.15); }

.pil-acc__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pil-acc__icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 1.5; }

.pil-acc__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pil-acc__card-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
}

.pil-acc__card-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  align-self: flex-end;
  margin-top: auto;
  transition: color 0.2s ease;
}
.pil-acc__card-link:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .pil-acc__hd { padding: 28px 28px; gap: 20px; }
  .pil-acc__num { font-size: 2.8rem; min-width: 56px; }
  .pil-acc__name { font-size: 1.35rem; }
  .pil-acc__cards { grid-template-columns: repeat(2, 1fr); padding: 4px 28px 32px; }
  .pil-acc__cards--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pil-acc__cards,
  .pil-acc__cards--three { grid-template-columns: 1fr; }
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   UNDER CONSTRUCTION
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.uc-section {
  position: relative;
  min-height: calc(100vh - 72px);
  background: #151128;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.uc-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 120px 0 100px;
  max-width: 640px;
}

.uc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Zain', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-lime);
}

.uc-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-lime);
  flex-shrink: 0;
}

.uc-title {
  font-family: 'Zain', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.uc-title em {
  font-style: normal;
  color: var(--color-lime);
}

.uc-body {
  font-family: 'Zain', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.uc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 28px;
  background: var(--color-lime);
  color: #151128;
  font-family: 'Zain', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.uc-cta:hover { opacity: 0.85; }

.zn-pat-wrap--uc {
  top: -10%;
  right: -8%;
  width: 600px;
  height: 600px;
}

.zn-pat--uc { filter: brightness(0) invert(1); opacity: 0.5; }

/* responsive */
@media (max-width: 640px) {
  .uc-inner { padding: 100px 0 80px; }
  .zn-pat-wrap--uc { width: 340px; height: 340px; right: -20%; }
}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   dfaq — Digital FAQ accordion (dark)
   ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

.dfaq-section {
  background: #151128;
  padding: 100px 0 80px;
}

.dfaq-header {
  margin-bottom: 56px;
}

.dfaq-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-lime);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.dfaq-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.dfaq-list {
  width: 100%;
}

.dfaq-item {
  position: relative;
}

.dfaq-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.dfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Zain', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.dfaq-q:hover,
.dfaq-item.is-open .dfaq-q {
  color: var(--color-lime);
}

.dfaq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.35s ease;
}

.dfaq-item.is-open .dfaq-icon {
  transform: rotate(45deg);
}

.dfaq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.dfaq-item.is-open .dfaq-answer {
  max-height: 300px;
}

.dfaq-a {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 28px;
  padding-right: 48px;
}

@media (max-width: 768px) {
  .dfaq-section { padding: 72px 0 60px; }
  .dfaq-q { font-size: 1rem; padding: 22px 0; }
  .dfaq-a { padding-right: 0; }
}


/* ══════════════════════════════════════════════════════════════════════════
   SUSTAINABILITY PAGE  (su-*)
══════════════════════════════════════════════════════════════════════════ */

/* ── Section 1: Hero ─────────────────────────────────────────────────── */
.su-hero {
  padding: 140px 0 100px;
  background: #fff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.su-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.su-hero__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.su-hero__right {
  position: relative;
  z-index: 1;
}

.su-hero__right canvas {
  width: 100% !important;
  height: 320px !important;
}

.su-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
}

.su-hero__title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0;
}

.su-hero__body {
  font-size: var(--text-lg);
  color: #4a4a5a;
  line-height: 1.7;
  margin: 0;
}

/* Pattern placements */
.zn-pat-wrap--su-hero {
  top: -20%;
  right: -8%;
  width: 44%;
  pointer-events: none;
}
.zn-pat--su-hero {
  opacity: 0.12;
  filter: brightness(0) saturate(100%) invert(26%) sepia(72%) saturate(620%) hue-rotate(208deg) brightness(92%);
}

.zn-pat-wrap--su-acc {
  bottom: -10%;
  left: -8%;
  width: 38%;
  pointer-events: none;
}
.zn-pat--su-acc {
  opacity: 0.08;
  filter: brightness(0) saturate(100%) invert(26%) sepia(72%) saturate(620%) hue-rotate(208deg) brightness(92%);
}

.zn-pat-wrap--su-bento {
  top: -15%;
  right: -6%;
  width: 40%;
  pointer-events: none;
}
.zn-pat--su-bento {
  opacity: 0.07;
  filter: brightness(0) saturate(100%) invert(26%) sepia(72%) saturate(620%) hue-rotate(208deg) brightness(92%);
}

/* ── Section 2: Intro ────────────────────────────────────────────────── */
.su-intro {
  padding: 80px 0;
  background: #f5f5fb;
  position: relative;
  overflow: hidden;
}

.su-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.su-intro__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.su-intro__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.1;
  margin: 0 0 16px;
}

.su-intro__body {
  font-size: var(--text-base);
  color: #4a4a5a;
  line-height: 1.8;
  margin: 0 0 18px;
}

.su-intro__body:last-child { margin-bottom: 0; }

/* ── Section 3: Numbered Accordion ──────────────────────────────────── */
.su-acc-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.su-acc-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.su-acc-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.15;
  margin: 0 0 16px;
}

.su-acc-desc {
  font-size: var(--text-base);
  color: #5a5a72;
  line-height: 1.75;
  margin: 0;
}

.su-acc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.su-acc-item {
  border-radius: 4px;
  border: 1px solid rgba(40,31,81,0.1);
  border-left: 3px solid transparent;
  background: #fafafa;
  overflow: hidden;
  transition: border-left-color 0.25s ease, box-shadow 0.25s ease;
}

.su-acc-item[open] {
  border-left-color: var(--color-lime);
  box-shadow: 0 4px 20px rgba(40,31,81,0.08);
  background: #fff;
}

.su-acc-trigger {
  width: 100%;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
}

.su-acc-trigger::-webkit-details-marker { display: none; }

.su-acc-num {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-blue);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 32px;
  transition: opacity 0.25s ease;
}

.su-acc-item[open] .su-acc-num { opacity: 1; }

.su-acc-trigger-text {
  flex: 1;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.su-acc-chevron {
  flex-shrink: 0;
  stroke: var(--color-sapphire);
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.su-acc-item[open] .su-acc-chevron {
  transform: rotate(180deg);
  opacity: 1;
  stroke: var(--color-blue);
}

.su-acc-body {
  padding: 0 24px 0 68px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1);
}

.su-acc-body p {
  font-size: var(--text-base);
  color: #5a5a72;
  line-height: 1.75;
  margin: 0;
  padding-bottom: 20px;
}

/* ── Section 4: CSS Orbit ────────────────────────────────────────────── */
.su-orbit-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.su-orbit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.su-orbit__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Reuse hpe-stage inside su-orbit */
.su-orbit__visual .hpe-stage {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

/* Right text */
.su-orbit__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.15;
  margin: 0 0 20px;
}

.su-orbit__desc {
  font-size: var(--text-base);
  color: #4a4a5a;
  line-height: 1.8;
  margin: 0 0 28px;
}

.su-orbit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.su-orbit__list li {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-sapphire);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.su-orbit__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
}

/* ── Section 5: Dark Bento Cards ─────────────────────────────────────── */
.su-bento-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.su-bento-head {
  max-width: 700px;
  margin-bottom: 48px;
}

.su-bento-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-sapphire);
  line-height: 1.15;
  margin: 0 0 16px;
}

.su-bento-desc {
  font-size: var(--text-base);
  color: #5a5a72;
  line-height: 1.75;
  margin: 0;
}

.su-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.su-bento-card {
  background: transparent;
  border-left: 3px solid var(--color-lime);
  border-radius: 0 4px 4px 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s ease;
}

.su-bento-card:hover {
  background: var(--color-lime);
}

.su-bento-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: var(--color-sapphire);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.25s ease;
}
.su-bento-card:hover .su-bento-card__icon {
  stroke: var(--color-sapphire);
}

.su-bento-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0;
}

.su-bento-card__body {
  font-size: 0.9rem;
  color: #5a5a72;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.zn-pat-wrap--su-cta {
  bottom: -18%;
  left: -8%;
  width: 42%;
  pointer-events: none;
}
.zn-pat--su-cta {
  opacity: 0.22;
  filter: brightness(0) saturate(100%) invert(74%) sepia(66%) saturate(415%) hue-rotate(26deg) brightness(105%);
}

/* ── Section 6: Dark CTA modifier ───────────────────────────────────── */
.su-cta .cta-heading { margin-bottom: 20px; }
.su-cta .cta-btn { margin-top: 44px; }

.su-cta__body2 {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .su-bento-grid { grid-template-columns: 1fr 1fr; }
  .su-orbit__stage { width: 320px; height: 320px; }
  .su-orbit__ring--outer { width: 260px; height: 260px; }
  .su-orbit__ring--mid   { width: 190px; height: 190px; }
  .su-orbit__ring--inner { width: 120px; height: 120px; }
  .su-orbit__node--1 { left: 160px; top:  8px; }
  .su-orbit__node--2 { left:  47px; top: 207px; }
  .su-orbit__node--3 { left: 273px; top: 207px; }
}

@media (max-width: 860px) {
  .su-hero__inner  { grid-template-columns: 1fr; gap: 40px; }
  .su-hero__right  { order: -1; }
  .su-hero__title  { font-size: 2.8rem; }
  .su-intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .su-intro__panel { min-height: 280px; }
  .su-orbit__inner { grid-template-columns: 1fr; gap: 48px; }
  .su-orbit__visual { order: -1; }
}

@media (max-width: 640px) {
  .su-bento-grid { grid-template-columns: 1fr; }
  .su-acc-body   { padding-left: 24px; }
  .su-hero       { padding: 100px 0 60px; }
  .su-hero__title { font-size: 2.2rem; }
  .su-hero__right canvas { height: 240px !important; }
}
