/* =============================================================
   ZainTech Theme – Custom Styles
   Header: white bar · black text · blue CTA · burger always on
   Mega-menu: dark purple slide-in from left
   ============================================================= */



/* ── Fonts ──
   CSS is at:   assets/css/style.css
   Fonts are at: assets/fonts/
   Relative path from CSS → fonts = ../fonts/
   ─────────────────────────────────────────── */

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_ExtraLight.woff2') format('woff2'),
    url('../fonts/Zain_ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_Light.woff2') format('woff2'),
    url('../fonts/Zain_Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_LightItalic.woff2') format('woff2'),
    url('../fonts/Zain_LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_Regular.woff2') format('woff2'),
    url('../fonts/Zain_Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_Italic.woff2') format('woff2'),
    url('../fonts/Zain_Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_Bold.woff2') format('woff2'),
    url('../fonts/Zain_Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_ExtraBold.woff2') format('woff2'),
    url('../fonts/Zain_ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zain';
  src: url('../fonts/Zain_Black.woff2') format('woff2'),
    url('../fonts/Zain_Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: 'Zain', sans-serif;
  /* Keep old variable names as aliases for backward compatibility */
  --font-main-light: 'Zain', sans-serif;
  --font-main-regular: 'Zain', sans-serif;
  --font-main-bold: 'Zain', sans-serif;
}

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

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: var(--text-base);
}

.font-light {
  font-family: var(--font-main-light);
  font-weight: 300;
}

.font-regular {
  font-family: var(--font-main-regular);
  font-weight: 400;
}

.font-bold {
  font-family: var(--font-main-bold);
  font-weight: 700;
}


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-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);
}

.site-nav__language {
  width: auto;
  min-width: 52px;
  gap: 6px;
  padding: 0 10px;
  border-radius: 18px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav__language-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.site-nav__language-label {
  font-family: 'Zain', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

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

.site-nav__language:hover .site-nav__language-icon {
  opacity: 1;
}

/* ── Mega menu ── */
.site-nav__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 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-icon--image {
  object-fit: contain;
  stroke: none;
  opacity: 0.75;
  transition: opacity 0.15s, filter 0.15s;
}

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

.site-nav__mega-link:hover .site-nav__mega-icon--image {
  opacity: 1;
  filter: brightness(1.15);
}

.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);
}


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

/* ── 1. Newsletter Bar ── */
.footer-newsletter {
  padding: 36px 0;
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-newsletter-text {
  flex: 1;
  min-width: 220px;
}

.footer-newsletter-heading {
  color: var(--color-white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.footer-newsletter-sub {
  font-size: 14px;
  margin: 0;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  max-width: 480px;
  width: 100%;
}

.footer-newsletter-input-wrap {
  position: relative;
  flex: 1;
}

.footer-nl-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

[dir="rtl"] .footer-nl-icon {
  left: auto;
  right: 14px;
}

.footer-newsletter-form input[type="email"] {
  width: 100%;
  padding: 13px 16px 13px 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-right: none;
  border-radius: 40px 0 0 40px;
  color: var(--color-white);
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
  box-sizing: border-box;
}

[dir="rtl"] .footer-newsletter-form input[type="email"] {
  padding: 13px 42px 13px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.footer-newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-nl-btn.btn-primary {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 40px 40px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-left: none !important;
  transform: scale(1) !important;
}

[dir="rtl"] .footer-nl-btn.btn-primary {
  border-radius: 8px 0 0 8px;
}

/* ── 3. Main Footer Body ── */
.footer-body {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 40px 48px;
  padding-block: 60px 40px;
}

/* Column base */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}


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

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

/* Contact list */
.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;
}

/* Social icons */
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.footer-social-btn {
  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;
}

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

.footer-social-btn img, .footer-social-btn svg {
  width: 18px;
  height: 18px;
}

/* — Nav columns — */
.footer-col-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  text-transform: none;
}

.label-footer-col {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}


.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-links li a:hover {
  color: var(--color-white);
}

.footer-links li.current-menu-item>a {
  color: var(--color-white);
}

/* ══════════════════════════════════════════════
   FOOTER RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr 1.4fr;
    gap: 28px 24px;
  }
}

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

  .footer-about {
    grid-column: 1 / -1;
    /* full width on tablet */
  }
}

@media (max-width: 768px) {
  .footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-newsletter-form {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

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

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}





/* ==========================================================
   ABOUT HERO SECTION
========================================================== */

.about-hero {
  padding: 140px 0 100px;
  background: #fff;
  overflow: hidden;
}

.about-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-blue);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero__title {
  margin: 0 0 24px;
  color: var(--color-sapphire);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.about-hero__description {
  margin: 0 0 16px;
  color: #4a4a5a;
  font-size: var(--text-lg);
  line-height: 1.7;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.about-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Optional decorative elements */

.about-hero__pattern {
  position: absolute;
  top: -160%;
  right: -10%;
  width: 55%;
  opacity: 0.38;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(11%) sepia(63%) saturate(950%) hue-rotate(237deg) brightness(80%);
  animation: znPatRotate 60s linear infinite reverse;
}

.about-hero__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__logo-container {
  position: relative;
  z-index: 1;
  width: 76%;
}

.about-hero__logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  opacity: 0.92;
}

/* ==========================================================
   SHARED TITLES
========================================================== */

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

.brand-highlight {
  color: var(--color-blue);
}

/* ==========================================================
   ABOUT VISION SECTION
========================================================== */

.about-vision {
  position: relative;
  padding: 60px 0 120px;
  background: #fff;
  overflow: hidden;
}

.about-vision__container {
  position: relative;
  z-index: 1;
}

.about-vision__header {
  margin-bottom: 36px;
}

.about-vision__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.about-vision__description {
  max-width: 840px;
  margin: 0 0 56px;
  color: #2a2242;
  font-size: var(--text-lg);
  line-height: 1.7;
}

.about-vision__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 40px;
  border-top: 4px solid var(--color-lime);
}

.about-vision__pillar {
  padding-right: 40px;
}

.about-vision__pillar:nth-child(2) {
  padding: 0 40px;
}

.about-vision__pillar:last-child {
  padding-left: 40px;
  padding-right: 0;
}

.about-vision__pillar-title {
  display: block;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-vision__pillar-description {
  margin: 0;
  color: #4a4a5a;
  font-size: var(--text-base);
  line-height: 1.65;
}

/* ==========================================================
   DECORATIVE PATTERN
========================================================== */

.pattern-wrap--vision {
  top: -21%;
  right: -14%;
  width: 42%;
}

.pattern-wrap--vision .zn-pat {
  opacity: 0.5;
  filter: brightness(0) saturate(100%) invert(26%) sepia(72%) saturate(620%) hue-rotate(208deg) brightness(92%);
}

/* =========================================================
   CORE VALUES SECTION
========================================================= */

.au-core-values {
  background: #151128;
  padding: 120px 0;
}

.au-core-values .au-section-eyebrow {
  color: var(--color-lime);
}

.au-core-values .au-section-title {
  color: #fff;
}

.au-core-values__header {
  margin-bottom: 56px;
}

/* =========================================================
   VALUES GRID
========================================================= */

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

/* =========================================================
   VALUE CARD
========================================================= */

.au-core-value {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  min-height: 300px;
  padding: 72px 32px 36px;

  background: var(--color-sapphire);
  border-radius: 4px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.au-core-value:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(40, 31, 81, 0.25);
}

/* =========================================================
   VALUE LABEL
========================================================= */

.au-core-value__label {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;

  padding: 6px 20px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--color-sapphire);
  background: var(--color-lime);

  border-radius: 0 0 9999px 0;
}

/* =========================================================
   VALUE CONTENT
========================================================= */

.au-core-value__content {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.au-core-value__title {
  margin: 0;

  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: #fff;
}

.au-core-value__description {
  margin: 0;

  font-size: var(--text-base);
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   OPTIONAL PATTERN SUPPORT
========================================================= */

.au-core-value__pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.au-core-value__pattern-image {
  position: absolute;
  width: 110%;
  opacity: 0.1;
}

.au-core-value__pattern-image--heart {
  top: -25%;
  right: -20%;
  filter: brightness(0) invert(1);
}

.au-core-value__pattern-image--radiance {
  top: -15%;
  right: -25%;
  filter: brightness(0) invert(1);
}

.au-core-value__pattern-image--belonging {
  top: -20%;
  right: -20%;
  filter: brightness(0) invert(1);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .au-core-values__grid {
    grid-template-columns: 1fr;
  }

  .au-core-value {
    min-height: auto;
  }
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */

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

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

.values-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;
}

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

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

.values-item--active {
  background: var(--color-sapphire);
}

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

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

.values-item--active .values-item__number {
  color: rgba(255, 255, 255, 0.3);
}

.values-item__title {
  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;
}

.values-item--active .values-item__title {
  color: #fff;
}

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

.values-item--active .values-item__icon {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.6);
}

.values-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.values-item--active .values-item__content {
  max-height: 400px;
}

.values-item__text {
  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;
}


.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);
}

/* =========================================================
SECTION
========================================================= */

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

/* =========================================================
LAYOUT
========================================================= */

.pillars-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* =========================================================
ORBIT
========================================================= */

.pillars-visual {
  display: flex;
  justify-content: center;
}

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

.pillars-rings,
.pillars-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pillars-lines {
  pointer-events: none;
}

/* =========================================================
CENTER DOT
========================================================= */

.pillars-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.pillars-center__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-sapphire);
  z-index: 2;
}

.pillars-center__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(52, 76, 152, 0.35);
  animation: pillarsCenterPulse 2.4s ease-out infinite;
}

@keyframes pillarsCenterPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* =========================================================
NODE
========================================================= */

.pillar-node {
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  opacity: 0;
  cursor: pointer;
  will-change: transform;
}

.pillar-node__circle {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  aspect-ratio: 1;

  border-radius: 50%;
  border: 1.5px solid rgba(52, 76, 152, 0.30);
  background: #fff;

  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.pillar-node__label {
  white-space: nowrap;

  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--color-sapphire);
}

/* =========================================================
NODE PULSE
========================================================= */

.pillar-node__pulse {
  position: absolute;
  inset: 0;

  border-radius: 50%;
  border: 1.5px solid transparent;

  opacity: 0;
  pointer-events: none;
}

.pillar-node--pulsing .pillar-node__pulse {
  animation: pillarNodePulse 1.8s ease-out infinite;
}

@keyframes pillarNodePulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* =========================================================
NODE STATES
========================================================= */

.pillar-node:hover .pillar-node__circle {
  background: var(--color-lime);
  border-color: var(--color-lime);
}

.pillar-node--active .pillar-node__circle {
  background: var(--color-sapphire);
  border-color: var(--color-sapphire);
}

/* =========================================================
INFO CARD
========================================================= */

.pillars-info {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 58%;

  text-align: center;

  transform: translate(-50%, -50%);

  opacity: 0;
  transition: opacity 0.35s ease;

  pointer-events: none;
  z-index: 20;
}

.pillars-info.is-visible {
  opacity: 1;
}

.pillars-info__title {
  margin: 0 0 10px;

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--color-blue);
}

.pillars-info__text {
  margin: 0;

  font-size: 1rem;
  line-height: 1.65;

  color: var(--color-sapphire);
}

/* =========================================================
CONTENT
========================================================= */

.pillars-description {

  font-size: var(--text-base);

  max-width: 520px;
  margin: 0;
  line-height: 1.7;
  color: #4a4a5a;
}

/* =========================================================
ACTIVE STATE
========================================================= */

.pillars-rings,
.pillars-center {
  transition: opacity 0.4s ease;
}

.pillars-orbit--active .pillars-rings,
.pillars-orbit--active .pillars-center {
  opacity: 0.08;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .pillars-layout {
    grid-template-columns: 1fr;
  }

  .pillars-orbit {
    max-width: 360px;
    margin: 0 auto;
  }

}




.pillar-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;
}

.pillar-node--active .pillar-node__circle svg {
  stroke: var(--color-lime);
}


/* ════════════════════════════════════════════════
   AU JOURNEY
════════════════════════════════════════════════ */
.au-journey {
  background: #fff;
  padding: 120px 0 0;
  /* Contain the full-bleed timeline so its 100vw-based negative margins
     don't trigger a page-level horizontal scrollbar. */
  overflow-x: clip;
}

.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;
}

/* ════════════════════════════════════════════════
   JOURNEY TIMELINE
════════════════════════════════════════════════ */

.au-journeyTimeline {
  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-journeyTimeline__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;
}

/* Base line */
.au-journeyTimeline__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;
}

/* Active progress line */
.au-journeyTimeline__track::after {
  content: '';
  position: absolute;
  top: calc(180px + 8px);
  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-journeyTimeline__item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.au-journeyTimeline__itemSpace {
  height: 180px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* ════════════════════════════════════════════════
   JOURNEY CARD
════════════════════════════════════════════════ */

.au-journeyCard {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);

  width: 420px;
  height: 200px;

  background: #f2f2f6;
  border-radius: 4px;
  overflow: hidden;

  display: flex;
  align-items: stretch;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.au-journeyCard--imageRight {
  flex-direction: row-reverse;
}

.au-journeyCard--imageLeft {
  flex-direction: row;
}

.au-journeyCard__image {
  width: 160px;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  border-radius: 4px 0 0 4px;
}

.au-journeyCard--imageRight .au-journeyCard__image {
  border-radius: 0 4px 4px 0;
}

.au-journeyCard__content {
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.au-journeyCard::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-journeyTimeline__item--active .au-journeyCard {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.au-journeyCard__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-journeyCard__icon svg,
.au-journeyCard__icon img {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  object-fit: contain;
}

.au-journeyCard__title {
  margin: 0 0 6px;

  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-sapphire);

  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.au-journeyCard__description {
  margin: 0;

  font-size: 0.78rem;
  color: #4a4a5a;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════
   TIMELINE MARKER
════════════════════════════════════════════════ */

.au-journeyTimeline__marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;

  background: #fff;
  border: 2px solid #d0ccdf;

  position: relative;
  z-index: 2;
  flex-shrink: 0;

  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}

.au-journeyTimeline__marker::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.25s;
}

.au-journeyTimeline__item--active .au-journeyTimeline__marker {
  border-color: var(--color-lime);
  background: var(--color-lime);
  box-shadow: 0 0 0 4px rgba(195, 213, 52, 0.22);
}

.au-journeyTimeline__item--active .au-journeyTimeline__marker::after {
  opacity: 1;
}

/* ════════════════════════════════════════════════
   YEAR & LABEL
════════════════════════════════════════════════ */

.au-journeyTimeline__year {
  display: block;
  margin-top: 10px;

  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-sapphire);

  letter-spacing: 0.02em;

  opacity: 0.35;
  transition:
    color 0.25s,
    opacity 0.25s,
    transform 0.25s;
}

.au-journeyTimeline__item:hover .au-journeyTimeline__year {
  transform: scale(1.12);
}

.au-journeyTimeline__item--active .au-journeyTimeline__year {
  opacity: 1;
}

.au-journeyTimeline__label {
  display: block;
  margin-top: 4px;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.1em;

  color: var(--color-sapphire);
  opacity: 0.35;

  transition:
    color 0.25s,
    opacity 0.25s;
}

.au-journeyTimeline__item--active .au-journeyTimeline__label {
  opacity: 1;
}



.story-section {
  padding: 0 0 80px;
  background: #fff;
}

.story-card {
  position: relative;
  background: #eeeef7;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(40, 31, 81, 0.07);
}

.story-slide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 460px;
  transition: 0.5s ease !important;
  left: 12px;
}

.story-slide.swiper-slide-active {
  left: 0;
}

.story-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.story-media__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%);
}

.story-media__content {
  position: relative;
  z-index: 1;
}

.story-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;
}

.story-title {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.15;
}

.story-body {
  background: #eeeef7;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.story-body p {
  font-size: var(--text-base);
  color: #3a3556;
  line-height: 1.75;
  margin: 0;
}

/* Pagination â€” override Swiper defaults */
.story-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
}

.story-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(40, 31, 81, 0.18);
  opacity: 1;
  transition: all 0.25s ease;
  margin: 0;
}

.story-pagination .swiper-pagination-bullet-active {
  background: var(--color-sapphire);
  width: 24px;
  border-radius: 4px;
}

.au-section-eyebrow {
  color: var(--color-blue);
}

.au-section-eyebrow--light {
  color: var(--color-lime);
}

.au-core-capabilities {
  background: #f7f5fd;
  padding: 120px 0 0;
}

.au-core-capabilities.secound {
  background: #f7f5fd;
  padding: 120px 0 60px;
}

.au-core-capabilities__header {
  margin-bottom: 56px;
}

.au-core-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.au-core-capabilities__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-core-capabilities__card:hover {
  border-color: rgba(52, 76, 152, 0.2);
  box-shadow: 0 8px 24px rgba(40, 31, 81, 0.07);
}

.au-core-capabilities__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-core-capabilities__icon svg,
.au-core-capabilities__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.au-core-capabilities__title {
  margin: 0;
  padding-top: 8px;
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-sapphire);
}



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

    .about-vision__pillars {
      grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .story-slide {
      grid-template-columns: 1fr;
    }

    .story-media {
      min-height: 350px;
    }

    .story-body {
      padding: 18px 24px;
    }

    .about-vision__pillar {
        padding: 24px 0 0 !important;
    }
}

@media (max-width: 500px) {
  .au-core-capabilities__grid {
      grid-template-columns: 1fr;
    }
}
/* ═══════════════════════════════════════════════════════════
   AU SUSTAINABILITY
═══════════════════════════════════════════════════════════ */

.au-sustainability {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

.au-sustainability__background {
  position: absolute;
  inset: 0;
}

.au-sustainability__scene {
  position: absolute;
  inset: 0;
  background: #151128;
}

.au-sustainability__overlay {
  position: absolute;
  inset: 0;
}

.zn-pat-wrap--au-sustainability {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 55%;
  pointer-events: none;
}

.au-sustainability__container {
  position: relative;
  z-index: 1;
}

.au-sustainability__content {
  max-width: 780px;
}

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

.au-sustainability__description {
  margin: 0 0 36px;
  font-size: var(--text-lg);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
}

.au-sustainability__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;

  background: #fff;
  color: var(--color-blue);

  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;

  transition:
    background 0.25s,
    gap 0.25s,
    box-shadow 0.25s;
}

.au-sustainability__button:hover {
  background: var(--color-lime);
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}


.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);
}

[dir="rtl"] .ft-nl-input {
  text-align: right;
}

.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);
}

.ft-newsletter .wpcf7 {
  width: 500px;
  max-width: 100%;
  flex-shrink: 0;
}

.ft-newsletter .wpcf7-form .ft-nl-form,
.ft-newsletter .wpcf7-form .ft-nl-form p {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  gap: 0;
}

.ft-newsletter .wpcf7-form {
  margin: 0;
}

.ft-newsletter .wpcf7-form .ft-nl-form {
  width: 100%;
}

.ft-newsletter .wpcf7-form br {
  display: none;
}

.ft-newsletter .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
}

.ft-newsletter .wpcf7-form-control-wrap .ft-nl-input {
  width: 100%;
}

.ft-newsletter .wpcf7-spinner {
  display: none;
}

.ft-newsletter .wpcf7-not-valid-tip {
  position: absolute;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #ffb4b4;
}

.ft-newsletter .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #fff;
}

.ft-locations {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 32px 0 40px;
}


.ft-loc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.ft-loc-card {
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.ft-loc-card:last-child {
  border-right: none;
  padding-right: 0;
}

.ft-loc-card:not(:first-child) {
  padding-left: 24px;
}

.ft-loc__city {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 6px;
}

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

.ft-loc__phone {
  display: block;
  margin-top: 6px;
  font-family: 'Zain', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: opacity 0.2s;
}

.ft-loc__phone:hover {
  opacity: 0.72;
}

.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;
}

.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-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;
}

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

@media (max-width:992px) {
  .ft-loc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ft-loc-card:not(:first-child) {
    padding-left: 16px;
  }
  .ft-loc-card {
    padding: 10px 16px;
  }
}
@media (max-width:768px) {
  .ft-loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-loc-card {
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }
  .ft-loc-card:nth-child(even) {
    border-right: none;
  }
  .ft-loc-card:nth-child(1),
  .ft-loc-card:nth-child(2) {
    border-top: none;
  }

}

/* ══════════════════════════════════════════════════════════════════════════
   NEWS DETAIL PAGE
   ══════════════════════════════════════════════════════════════════════════ */

.news-detail-hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--color-border);
}

.news-detail-back {
  display: inline-block;
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.news-detail-back:hover {
  color: var(--color-sapphire);
}

.news-detail-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--color-sapphire);
  line-height: 1.15;
  letter-spacing: 0.01em;
  max-width: 860px;
  margin-bottom: 20px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-detail-date,
.news-detail-location {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}

.news-detail-meta-divider {
  color: var(--color-ink-muted);
  opacity: 0.4;
}

/* Content */

.news-detail-content {
  padding: 64px 0 80px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: flex-start;
}

/* Article */

.news-detail-article div,
.news-detail-article p {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: 1.75;
}

.news-detail-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem) !important;
  color: var(--color-sapphire) !important;
  font-weight: 600;
  line-height: 1.6 !important;
}


.news-detail-article .primary-color-darker p, 
.news-detail-article .primary-color-darker div {
  color: var(--color-sapphire) !important;
} 
.news-detail-image {
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

.news-detail-article h2 {
  font-family: 'Zain', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: var(--color-sapphire);
  letter-spacing: 0.01em;
  margin: 40px 0 16px;
}

.news-detail-article .wb-list {
  list-style: none;
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.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;
}

.news-detail-quote {
  border-left: 4px solid var(--color-lime);
  padding: 20px 24px;
  background: #f7f5fd;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}

.news-detail-quote p {
  font-size: var(--text-lg) !important;
  font-style: italic;
  color: var(--color-sapphire) !important;
  font-weight: 600;
  margin-bottom: 12px !important;
}

.news-detail-quote cite {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-blue);
  font-weight: 700;
}

/* Sidebar */

.news-detail-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-detail-sidebar-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-detail-sidebar-label {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ink-muted);
  margin: 0;
}

.news-detail-share {
  display: flex;
  gap: 10px;
}

.news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-social svg , .ct-social img {
  width: 18px;
  height: 18px;
}

.ct-social:hover {
  background: var(--color-lime);
  border-color: var(--color-lime);
}

.news-detail-tag--outline {
  background: transparent !important;
  border: 1.5px solid rgba(40, 31, 81, 0.2) !important;
  color: var(--color-sapphire) !important;
  border-radius: 4px !important;
  margin-left: 0 !important;
  position: static !important;
}

.ct-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f7f5fd;
  border: 1.5px solid rgba(40, 31, 81, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sapphire);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

/* Related */

.related-news {
  padding: 0 0 96px;
  border-top: 1px solid var(--color-border);
  padding-top: 64px;
}

.related-news-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--color-sapphire);
  margin-bottom: 36px;
}

.related-news-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1024px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
  }

  .related-news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .related-news-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ─── 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;
}

/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
              NEWS PAGE — nw-*
              ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝ */

/* ── 1. Hero ─────────────────────────────────────────────────────────── */

.nw-hero {
  padding: 72px 0 48px;
  background: #fff;
}

.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 {
  margin-inline: auto;
  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;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nw-filter-option:hover {
  background: var(--color-gray-50);
  color: var(--color-blue);
}

.nw-filter-option--active {
  color: var(--color-blue);
  font-weight: 700;
}

/* Checkbox for multi-select */
.nw-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid #C8C8D8;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.nw-filter-option--active .nw-check {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.nw-filter-option--active .nw-check::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* 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 */
.nw-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out);
}

.nw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Image */
.nw-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.nw-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.nw-card:hover .nw-card__img img {
  transform: scale(1.06);
}

/* Body — solid sapphire */
.nw-card__body {
  flex: 1;
  background: var(--color-sapphire);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.nw-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: 5px 14px;
  border-radius: 0 0 9999px 0;
  white-space: nowrap;
  margin-left: -24px;
}

.nw-card__tag.m-0 {
  margin: 0;
}

.nw-card__title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.nw-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.nw-card__arrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-lime);
  margin-top: auto;
  padding-top: 4px;
  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;
  }
}


/* ══════════════════════════════════════════════════════════════════════════

   COMPLIANCE PAGE — cp-*

   ══════════════════════════════════════════════════════════════════════════ */
.wb-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--color-border);
}


.cp-hero {
  border-bottom: none;
}



.cp-eyebrow {

  font-size: var(--text-sm);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: var(--color-blue);

  margin-bottom: 12px;

}



.cp-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.6;
}

/* Intro */

.cp-intro {
  padding: 56px 0 0;
}

.cp-intro__inner {
  max-width: 760px;
}

.cp-intro__text {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: 1.75;
}



/* Certifications */

.cp-certs {
  padding: 16px 0 96px;
}



.cp-certs__heading {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--color-sapphire);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}



.cp-search-bar {
  position: relative;
  margin-bottom: 32px;
}



.cp-search-bar__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--color-ink-muted);
  pointer-events: none;
}



.cp-search-bar__input {

  width: 100%;

  max-width: 480px;

  padding: 13px 16px 13px 46px;

  background: #f7f5fd;

  border: 1.5px solid rgba(40, 31, 81, 0.12);

  border-radius: 8px;

  font-family: 'Zain', sans-serif;

  font-size: var(--text-base);

  color: var(--color-sapphire);

  outline: none;

  transition: border-color 0.2s, box-shadow 0.2s;

}

.cp-search-bar__input::placeholder {
  color: rgba(40, 31, 81, 0.35);
}

.cp-search-bar__input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(52, 76, 152, 0.10);
  background: #fff;
}



.cp-cert-list {
  display: flex;
  flex-direction: column;
}



.cp-cert-row {
  display: grid;
  grid-template-columns: 280px 1fr 80px;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(40, 31, 81, 0.08);
  transition: background 0.2s;
}

.cp-cert-row:first-child {
  border-top: 1px solid rgba(40, 31, 81, 0.08);
}



.cp-cert-row__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}



.cp-cert-card__badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(40, 31, 81, 0.08);
  color: var(--color-sapphire);
  font-family: 'Zain', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}



.cp-cert-card__name {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.3;
  margin: 0;
  order: -1;
}



.cp-cert-row__desc {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.7;
  margin: 0;
}



.cp-cert-row__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}



.cp-cert-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7f5fd;
  border: 1.5px solid rgba(40, 31, 81, 0.10);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.cp-cert-btn:hover {
  background: var(--color-lime);
  border-color: var(--color-lime);
}

.cp-cert-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-sapphire);
}



@media (max-width: 900px) {

  .cp-cert-row {
    grid-template-columns: 1fr 80px;
    gap: 20px;
  }

  .cp-cert-row__left {
    grid-column: 1;
  }

  .cp-cert-row__desc {
    grid-column: 1;
  }

  .cp-cert-row__actions {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

}

@media (max-width: 560px) {

  .cp-cert-row {
    grid-template-columns: 1fr;
  }

  .cp-cert-row__actions {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    justify-content: flex-start;
  }

}


/* ╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝╝
   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 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);
  }
}


.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;
  }
}


/* ══════════════════════════════════════════════════════════════════════════
   PARTNERS PAGE — pt-*
   ══════════════════════════════════════════════════════════════════════════ */

.pt-hero {
  border-bottom: none !important;
}

.pt-hero__title {
  max-width: 67%;
}

.pt-category {
  padding: 56px 0 0;
}

.pt-category:last-of-type {
  padding-bottom: 80px;
}

.pt-category__title {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 800;
  color: var(--color-sapphire);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-lime);
  display: inline-block;
}

.pt-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pt-partner-card {
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: transform 0.2s;
}

.pt-partner-card:hover {
  transform: translateY(-2px);
}

.pt-partner-card__name {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-sapphire);
  text-align: center;
  margin: 0;
  letter-spacing: 0.01em;
}

.pt-partner-card__logo {
  max-width: 130px;
  max-height: 52px;
  width: 100%;
  object-fit: contain;
}


/* Why partner */
.pt-why {
  background: #f7f5fd;
  padding: 80px 0;
  margin-top: 24px;
}

.pt-why__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--color-sapphire);
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}

.pt-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pt-why__desc {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  color: var(--color-ink-muted);
  line-height: 1.7;
  margin-top: 8px;
}

/* Image overlay cards */
.pt-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pt-why__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color-sapphire);
}

.pt-why__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pt-why__card:hover .pt-why__card-img {
  transform: scale(1.05);
}

.pt-why__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40, 31, 81, 0.88) 0%, rgba(40, 31, 81, 0.15) 55%, transparent 100%);
  transition: background 0.35s ease;
}

.pt-why__card:hover .pt-why__card-overlay {
  background: var(--color-blue);
}

.pt-why__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 28px;
}

.pt-why__card-title {
  font-family: 'Zain', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin: 0;
}

.pt-why__card-desc {
  font-family: 'Zain', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.65;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}

.pt-why__card:hover .pt-why__card-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .pt-why__cards {
    grid-template-columns: 1fr;
  }

  .pt-why__card {
    aspect-ratio: 3 / 2;
  }
}

/* Partnership form */
.pt-form-section {
  padding: 80px 0 96px;
}

.pt-form-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.pt-form-copy__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--color-sapphire);
  margin-bottom: 16px;
}

.pt-form-copy__body {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: 1.7;
}


/* ============================================================
   PILLARS ACCORDION SECTION
   ============================================================ */

.zainPillars {
  padding: 40px 0 64px;
  background: #fff;
}

/* Header */
.zainPillars__header {
  margin-bottom: 3rem;
  max-width: 600px;
}

.zainPillars__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 .zainPillars__eyebrow {
  color: var(--color-turquoise);
}

/* Accordion rows */
.zainPillars__accordion {
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: background 0.4s ease;
  background: rgba(40, 31, 81, 0.07);
}

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

.zainPillars__accordionHead {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 44px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.zainPillars__accordionNumber {
  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;
  color: #281F51;
}

.zainPillars__accordion--open .zainPillars__accordionNumber {
  color: #fff;
  opacity: 0.22;
}

.zainPillars__accordionMeta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zainPillars__accordionName {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.4s ease;
  color: var(--color-sapphire);
}

.zainPillars__accordion--open .zainPillars__accordionName {
  color: #fff;
}

.zainPillars__accordionSub {
  font-size: 1.05rem;
  color: rgba(40, 31, 81, 0.5);
  transition: color 0.4s ease;
}

.zainPillars__accordion--open .zainPillars__accordionSub {
  color: rgba(255, 255, 255, 0.55);
}

.zainPillars__accordionChevron {
  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;
}

.zainPillars__accordion--intelligent .zainPillars__accordionChevron {
  color: rgba(52, 76, 152, 0.3);
}

.zainPillars__accordion--resilient .zainPillars__accordionChevron {
  color: rgba(3, 65, 70, 0.3);
}

.zainPillars__accordion--open .zainPillars__accordionChevron {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.6);
}

/* Expandable body */
.zainPillars__accordionBody {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.zainPillars__accordion--open .zainPillars__accordionBody {
  max-height: 700px;
}

/* Cards grid inside accordion body */
.zainPillars__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 4px 44px 44px;
}

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

.zainPillars__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;
}

.zainPillars__card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.zainPillars__cardIcon {
  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;
}

.zainPillars__cardIcon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.5;
}

.zainPillars__cardTitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zainPillars__cardBody {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  flex: 1;
}

.zainPillars__cardLink {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.zainPillars__cardLink:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
  .zainPillars__accordionHead {
    padding: 28px;
    gap: 20px;
  }

  .zainPillars__accordionNumber {
    font-size: 2.8rem;
    min-width: 56px;
  }

  .zainPillars__accordionName {
    font-size: 1.35rem;
  }

  .zainPillars__cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 4px 28px 32px;
  }

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

@media (max-width: 560px) {

  .zainPillars__cards,
  .zainPillars__cards--three {
    grid-template-columns: 1fr;
  }
}

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

.stats-slider-wrap {
  position: relative;
  overflow: hidden;
}

.stats-slider-wrap::before,
.stats-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.stats-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.stats-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.statistic .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}

.statistic .swiper-slide {
  width: auto !important;
  position: relative;
  flex-shrink: 0;
}

.statistic .swiper-slide::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(40, 31, 81, 0.15);
}

.statistic .swiper-slide:last-child::after {
  display: none;
}

.stats-item {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stats-item__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;
  white-space: nowrap;
  transition: 0.3s ease;
}

.stats-item:hover .stats-item__num {
  color: var(--color-lime);
}

.stats-item__label {
  font-size: var(--text-sm);
  color: rgba(40, 31, 81, 0.55);
  line-height: 1.5;
  font-weight: 400;
  white-space: nowrap;
}

.stats-counter {
  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;
  white-space: nowrap;
  transition: 0.3s ease;
}

.stats-item:hover .stats-counter {
  color: var(--color-lime);
}

.topHomeSlider {
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 67vh;
  min-height: 500px;
}

.topHomeSlider .swiper-slide {
  display: flex;
  align-items: center;
}


.topHomeSlider__slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.topHomeSlider__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Text content */
.topHomeSlider__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: max(48px, calc((100vw - 1280px) / 2 + 48px));
  padding-right: 48px;
}

.topHomeSlider__eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime);
  max-width: 544px;
}

.topHomeSlider__title {
  font-family: 'Zain', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  max-width: 544px;
}



.topHomeSlider__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;
}

.topHomeSlider__cta:hover {
  background: var(--color-lime);
  color: var(--color-sapphire);
}

.topHomeSlider__pagination .swiper-pagination-bullet {
  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;
}

.topHomeSlider__pagination .swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

/* =========================
   SERVICES SECTION
    ========================= */

.services-section {
  position: relative;
  padding: 80px 0;
  background: #151128;
  overflow: hidden;
}

.services-section .section-eyebrow {
  color: var(--color-lime);
}

.services-section .section-description {
  color: rgba(255, 255, 255, 0.62);
}


/* =========================
 SERVICES GRID
  ========================= */

.services-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
}


/* =========================
 SERVICE CARD
========================= */

.service-card {
  flex: 1;
  min-width: 0;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s ease, border-color 0.35s ease !important;
}


/* Active card */

.services-grid:has(.service-card:hover) .service-card:hover {
  flex: 1.6;
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

/* Inactive cards */

.services-grid:has(.service-card:hover) .service-card:not(:hover) {
  flex: 0.85;

  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}


@media (max-width:1200px) {
  .service-card {
    min-width: 25%;
  }
}
@media (max-width:992px) {
  .service-card {
    min-width: calc(40% - 15px);
  }
  .services-grid:has(.service-card:hover) .service-card:not(:hover) {
    flex: 1;
  }
}
@media (max-width:768px) {
  .service-card {
    min-width: 100%;
  }
}


/* =========================
 CARD TITLE
========================= */

.service-card__title {
  margin: 0;

  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #fff;

  transition: color 0.3s ease;
}


/* =========================
 CARD CONTENT
========================= */

.service-card__content {
  flex: 1;

  position: relative;

  margin-top: 16px;
  min-height: 52px;
}


/* =========================
 CARD ICON
========================= */

.service-card__icon {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}

.service-card__icon img,
.service-card__icon svg {
  width: 40px;
  height: 40px;

  color: #fff;
  stroke-width: 1.5;
}

.services-grid:has(.service-card:hover) .service-card:hover .service-card__icon {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}


/* =========================
 CARD TEXT
========================= */

.service-card__text {
  position: absolute;
  inset: 0;

  margin: 0;

  opacity: 0;

  overflow: hidden;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  line-clamp: 9;

  font-size: var(--text-base);
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.72);

  transition: opacity 0.25s ease 0.15s;
}

.services-grid:has(.service-card:hover) .service-card:hover .service-card__text {
  opacity: 1;
}


/* =========================
 CARD LINK
========================= */

.service-card__link {
  position: absolute;
  right: 28px;
  bottom: 28px;

  opacity: 0;
  pointer-events: none;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  color: rgba(255, 255, 255, 0.9);

  transition: opacity 0.25s ease 0.2s;
}

.services-grid:has(.service-card:hover) .service-card:hover .service-card__link {
  opacity: 1;
}



.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header--left {
  text-align: left;
  margin: 0 0 48px;
}


/* ══════════════════════════════════════════════════════
   Industries Section
══════════════════════════════════════════════════════ */

.industries-section {
  position: relative;
  padding: 80px 0 0;
  background: #151128;
  overflow: hidden;
}

.industries-section .section-eyebrow {
  color: var(--color-lime);
}

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

.industries-section .section-description {
  color: rgba(255, 255, 255, 0.62);
}

/* Top */
.industries-section__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.industries-section__header {
  max-width: 640px;
}

/* Slider */
.industries-slider {
  padding-left: max(var(--section-px),
      calc((100vw - var(--container-max)) / 2 + var(--section-px)));
  padding-bottom: 10px;
}

/* Card */
.industry-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  height: auto;
}

/* Image */
.industry-card__image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.industry-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.industry-card:hover .industry-card__image {
  transform: scale(1.05);
}

/* Content */
.industry-card__content {
  padding: 20px;
}

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

.industry-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* Pagination */
.industries-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 64px;
}

.industries-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
}

.industries-pagination .swiper-pagination-bullet-active {
  background: var(--color-lime);
  border-color: var(--color-lime);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {

  .industries-section__top {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* ─── 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);
}


/* ============================================================
ALLIANCES / PARTNERS SECTION
============================================================ */

.zainAlliances {
  padding: 80px 0;
  background: #fff;
}

/* Auto-scroll swiper */
.alliancesSwiper .swiper-slide {
  width: calc((100% - 160px) / 5);
}

@media (max-width: 1200px) {
  .alliancesSwiper .swiper-slide {
    width: calc((100% - 160px) / 4);
  }
}

@media (max-width: 991px) {
  .alliancesSwiper .swiper-slide {
    width: calc((100% - 160px) / 3);
  }
}

@media (max-width: 767px) {
  .alliancesSwiper .swiper-slide {
    width: calc((100% - 160px) / 2);
  }
}

@media (max-width: 550px) {
  .alliancesSwiper .swiper-slide {
    width: calc((100% - 160px) / 1);
  }
}

.alliancesSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.alliancesSwiper {
  overflow: hidden;
}

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

.alliancesLogo img {
  max-height: 60px;
  width: auto;
}

.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;
}


/* =========================================================
   Homepage News Section
========================================================= */

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

/* =========================================================
   Section Header
========================================================= */

.news-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.news-section__heading {
  flex: 1;
}

.news-section__eyebrow {
  color: var(--color-lime);
}

.news-section__title {
  color: #fff;
  margin-bottom: 0;
}

.news-section__button {
  flex-shrink: 0;
}

/* =========================================================
   News Layout
========================================================= */

.news-layout {
  display: flex;
  gap: 24px;
  min-height: 480px;
}

/* =========================================================
   Featured Card
========================================================= */

.news-featured-card {
  position: relative;
  flex: 0 0 66%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.news-featured-card__image {
  position: absolute;
  inset: 0;
}

.news-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.news-featured-card:hover .news-featured-card__image img {
  transform: scale(1.06);
}

.news-featured-card__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.08) 100%);
}

.news-featured-card__content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  width: 100%;
  height: 100%;

  padding: 32px;
  text-decoration: none;
  color: #fff;
}

.news-featured-card__title {
  margin: 14px 0 20px;

  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.3;
}

/* =========================================================
   Sidebar Cards
========================================================= */

.news-sidebar {
  flex: 1;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  position: relative;
  flex: 1;

  overflow: hidden;
  border-radius: var(--radius-lg);

  background: var(--color-sapphire);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.news-card:hover {
  background: #352870;
  transform: translateY(-4px);
}

.news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;

  padding: 72px 24px 24px;

  text-decoration: none;
  color: #fff;
}

.news-card__title {
  margin-top: 12px;

  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.5;
}

/* =========================================================
   Shared Components
========================================================= */

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-xs);
  font-weight: 600;
}

.news-badge {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 5;

  padding: 6px 16px;

  border-radius: 0 0 999px 0;

  background: var(--color-lime);
  color: var(--color-sapphire);

  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 18px;

  color: var(--color-lime);

  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;

  transition: gap 0.25s ease;
}

.news-featured-card__content:hover .news-link,
.news-card__content:hover .news-link {
  gap: 14px;
}

/* Featured Button Style */
.news-link--button {
  width: fit-content;
  height: 42px;

  padding: 0 24px;

  border-radius: 4px;

  background: #fff;
  color: var(--color-blue);

  text-transform: uppercase;
}

.news-featured-card__content:hover .news-link--button {
  background: var(--color-lime);
  color: var(--color-sapphire);
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991px) {

  .news-layout {
    flex-direction: column;
    min-height: auto;
  }

  .news-featured-card {
    min-height: 500px;
  }

  .news-sidebar {
    flex-direction: row;
  }

  .news-card {
    min-height: 280px;
  }

}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

  .news-section {
    padding: 64px 0;
  }

  .news-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .news-layout {
    gap: 20px;
  }

  .news-sidebar {
    flex-direction: column;
    gap: 20px;
  }

  .news-featured-card {
    min-height: 420px;
  }

  .news-card {
    min-height: 240px;
  }

  .news-featured-card__content,
  .news-card__content {
    padding: 64px 20px 20px;
  }

  .news-featured-card__title {
    font-size: 24px;
  }

  .news-card__title {
    font-size: 16px;
  }

  .news-link--button {
    width: 100%;
    justify-content: center;
  }

}

/* ═══════════════════════════════════════════════════════ */
/* Insights Section */
/* ═══════════════════════════════════════════════════════ */

.insights-section {
  padding: 80px 0;
  overflow: hidden;
  background: #fff;
}

/* Header */
.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.insights-header__content {
  max-width: 760px;
}

.insights-title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-sapphire);
}

.insights-description {
  margin: 0;
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-ink-muted);
}

/* Card */
.insight-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #f0eef8;
  overflow: hidden;
}

/* Media */
.insight-card__media {
  display: flex;
  flex-direction: column;
}

.insight-card__image {
  position: relative;
  min-height: 420px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.insight-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      transparent 40%,
      rgba(0, 0, 0, 0.8) 100%);
}

.insight-card__badge {
  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;
}

.insight-card__footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--color-sapphire);
}

.insight-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.insight-card__button {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px;
  border-radius: 4px;
  background: #fff;
  color: var(--color-sapphire);
  text-decoration: none;
  font-weight: 700;
  transition: .3s ease;
}

.insight-card__button:hover {
  background: var(--color-lime);
}

/* Content */
.insight-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Stats */
.insight-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 24px;
  border-radius: 4px;
  background: var(--color-sapphire);
  flex: 1;
}

.insight-stat {
  display: flex;
  flex-direction: column;
}

.insight-stat__number {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-lime);
}

.insight-stat .insight-stat__progress:first-of-type {
  margin-top: 0;
}

.insight-stat__progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  position: relative;
  margin-top: 20px;
}

.insight-stat__progress-fill {
  display: block;
  width: var(--progress-width);
  height: 100%;
  border-radius: inherit;
  background: var(--color-lime);
  position: relative;
}

.insight-stat__progress span {
  position: absolute;
  right: 0;
  top: -16px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.insight-stat__label {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
}

/* Summary */
.insight-summary {
  padding: 24px;
  border-radius: 4px;
  background: #e4e1f2;
}

.insight-summary p {
  margin: 0;
  line-height: 1.8;
  color: rgba(40, 31, 81, .75);
}

/* Pagination */
.insights-pagination {
  position: relative;
  margin-top: 32px;
}

.insights-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, .3);
}

.insights-pagination .swiper-pagination-bullet-active {
  background: var(--color-sapphire);
  border-color: var(--color-sapphire);
}

/* Responsive */
@media (max-width: 991px) {

  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-card__image {
    min-height: 320px;
  }

}

@media (max-width: 767px) {

  .insights-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .insights-nav {
    display: none;
  }

}


/* ══════════════════════════════════════════════════════════════════════════
   EVENTS PAGE — ev-*
   ══════════════════════════════════════════════════════════════════════════ */

.ev-section {
  padding: 0 0 96px;
}

/* Featured Event */
.ev-featured { padding: 0 0 48px; }
.ev-featured__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.ev-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ev-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(40,31,81,0.93) 0%, rgba(40,31,81,0.65) 55%, transparent 100%);
}
.ev-featured__content {
  position: relative;
  z-index: 1;
  padding: 56px;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ev-featured__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-lime);
}
.ev-featured__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.ev-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ev-featured__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.ev-featured__meta-item svg { width: 14px; height: 14px; stroke: var(--color-lime); flex-shrink: 0; }
.ev-featured__desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
}
.ev-featured__content .btn { align-self: flex-start; }

/* Tabs */
.ev-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 48px;
}

.ev-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 14px 28px;
  font-family: 'Zain', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.ev-tab:hover    { color: var(--color-sapphire); }
.ev-tab--active  { color: var(--color-sapphire); border-bottom-color: var(--color-lime); }

/* Panels */
.ev-panel         { display: none; flex-direction: column; gap: 24px; }
.ev-panel--active { display: flex; }

/* Event card */
.ev-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: #f7f5fd;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(40,31,81,0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ev-card:hover {
  border-color: var(--color-blue);
  box-shadow: 0 8px 24px rgba(40,31,81,0.08);
}

.ev-card--past { opacity: 0.72; }
.ev-card--past:hover { opacity: 1; }

.ev-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-sapphire);
  border-radius: 4px;
  padding: 16px 12px;
  text-align: center;
}

.ev-card__day {
  font-family: 'Zain', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-lime);
  line-height: 1;
}

.ev-card__month {
  font-family: 'Zain', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.ev-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ev-card__type {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'Zain', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-sapphire);
  background: rgba(40,31,81,0.08);
  padding: 3px 10px;
  border-radius: 4px;
}

.ev-card__title {
  font-family: 'Zain', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 800;
  color: var(--color-sapphire);
  line-height: 1.3;
  margin: 0;
}

.ev-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin: 0;
}
.ev-card__meta svg { width: 14px; height: 14px; stroke: var(--color-ink-muted); flex-shrink: 0; }

.ev-card__desc {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  color: var(--color-ink-muted);
  line-height: 1.65;
  margin: 0;
}

.ev-card__cta { align-self: flex-start; margin-top: 4px; }

/* Past events list wrapper */
.ev-cards-list { display: flex; flex-direction: column; gap: 24px; }

/* Pagination */
.ev-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}
.ev-pg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1.5px solid rgba(40,31,81,0.18);
  background: #fff;
  color: var(--color-sapphire);
  font-family: 'Zain', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ev-pg-btn:hover:not(:disabled) { background: var(--color-sapphire); color: #fff; border-color: var(--color-sapphire); }
.ev-pg-btn--active { background: var(--color-sapphire); color: #fff; border-color: var(--color-sapphire); }
.ev-pg-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Event detail sidebar card */
.ev-detail-card {
  background: #f7f5fd;
  border: 1.5px solid rgba(40,31,81,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ev-detail-card__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ev-detail-card__row svg { width: 18px; height: 18px; stroke: var(--color-blue); flex-shrink: 0; margin-top: 2px; }

.ev-detail-card__label {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-ink-muted);
  margin: 0 0 4px;
}

.ev-detail-card__value {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  line-height: 1.5;
  margin: 0;
}

.ev-detail-card__cta { width: 100%; }

.ev-detail-card__cal { width: 100%; }

/* Gallery */
.ev-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.ev-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--color-sapphire);
}
.ev-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.ev-gallery__item:hover img { transform: scale(1.06); opacity: 0.85; }

/* Lightbox */
.ev-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(21,17,40,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ev-lightbox--open { opacity: 1; pointer-events: all; }
.ev-lightbox__img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.ev-lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ev-lightbox__close:hover { background: rgba(255,255,255,0.22); }
.ev-lightbox__close svg { width: 20px; height: 20px; stroke: #fff; }
.ev-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ev-lightbox__arrow:hover { background: rgba(255,255,255,0.22); }
.ev-lightbox__arrow svg { width: 22px; height: 22px; stroke: #fff; }
.ev-lightbox__arrow--prev { left: 28px; }
.ev-lightbox__arrow--next { right: 28px; }

/* Event speakers */
.ev-speakers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.ev-speaker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ev-speaker__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sapphire), var(--color-blue));
  flex-shrink: 0;
  overflow: hidden;
}
.ev-speaker__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ev-speaker__name {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-sapphire);
  margin: 0 0 2px;
}

.ev-speaker__role {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin: 0;
}

/* Related solutions sidebar links */
.nd-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nd-sidebar__sol-link {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.nd-sidebar__sol-link:hover { color: var(--color-sapphire); }

/* More events row */
.ev-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .ev-card       { grid-template-columns: 80px 1fr; gap: 20px; padding: 20px; }
  .ev-cards-row  { grid-template-columns: 1fr; }
}


.ev-speakers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.ev-speaker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ev-speaker__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sapphire), var(--color-blue));
  flex-shrink: 0;
  overflow: hidden;
}

.ev-speaker__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ev-speaker__name {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-sapphire);
  margin: 0 0 2px;
}

.ev-speaker__role {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin: 0;
}

.ev-detail-card {
  background: #f7f5fd;
  border: 1.5px solid rgba(40, 31, 81, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ev-detail-card__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ev-detail-card__row svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.ev-detail-card__label {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-ink-muted);
  margin: 0 0 4px;
}

.ev-detail-card__value {
  font-family: 'Zain', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-sapphire);
  line-height: 1.5;
  margin: 0;
}



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

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


  /* ─── 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-image: linear-gradient(to right, var(--color-lime) 50%, var(--color-sapphire) 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
    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-secondary {
    position: relative;
    overflow: hidden;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-sapphire);
    border: 1.5px solid 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);
  }


  /* ─── 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-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;
  }


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

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

  .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;
  }

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

  .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;
  }

  .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.025rem;
    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;
  }

  /* 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__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);
  }

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

  @media (max-width: 1200px) {
    .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;
    }
  }


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

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

  @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 floatD {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-12px);
    }
  }

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

  .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;
  }

  .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);
    }
  }

  /* 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;
  }

  /* 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);
  }

  .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;
  }

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

  @media (max-width: 560px) {
    .dash-wrap {
      max-width: 100%;
    }

    .float-wrap--tA,
    .float-wrap--tB {
      display: none;
    }
  }


  /* ─── 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;
  }

  .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 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;
  }

  .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;
  }

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

  .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;
  }

  .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;
  }

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


  /* ─── Core Digital Capabilities ─────────────────────────────────────────── */

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

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

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

  .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);
  }

  .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-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .cdp-panel__top .cdp-acc__desc {
    margin-bottom: 0;
    flex: 1;
  }

  .cdp-panel-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 var(--space-8);
    background: #fff;
    color: var(--color-sapphire);
    font-family: 'Zain', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }

  .cdp-panel-btn:hover {
    background: var(--color-lime);
  }

  .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;
    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;
  }

  @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;
    }
  }


  /* ─── Our Impact ─────────────────────────────────────────────────────────── */

  .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;
  }

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

  .oi-chart-col {
    position: sticky;
    top: 100px;
  }

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

  .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);
  }

  .oi-rows {
    display: none;
  }

  .oi-rows--active {
    display: block;
  }

  .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);
  }

  .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;
  }

  .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;
  }

  @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;
    }
  }


  /* ─── Real Business Outcomes ─────────────────────────────────────────────── */



  .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;
  }

  .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;
  }

  .dgo-card {
    flex-shrink: 0;
    width: 300px;
    border-radius: 4px;
    background: var(--color-sapphire);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    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;
  }

  .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);
  }


  .dgo-slider {
    padding: 0 var(--container-pad, 5vw);
  }

  .dgo-slider .swiper-wrapper {
    align-items: stretch;
  }

  .dgo-card {
    width: auto;
    height: auto;
  }

  .dgo-pagination {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .dgo-pagination .swiper-pagination-bullet-active {
    background: var(--color-lime);
  }

  /* ─── Industry Use Cases ─────────────────────────────────────────────────── */

  .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;
  }

  .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;
  }

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

  .iuc-card:hover .iuc-card__bg {
    opacity: 0;
  }

  .iuc-card:hover .iuc-card__blue {
    opacity: 1;
  }

  .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 ───────────────────────────────────────────────────────── */

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

  .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;
  }

  .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;
  }

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

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

  .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);
  }

  .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);
    }
  }


  /* ─── Related Solutions ──────────────────────────────────────────────────── */

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

  .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__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;
  }


  .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;
  }

  .rs-section .hp-ind-icard {
    background: var(--color-sapphire);
    border: none;
  }

  .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);
  }

  .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;
  }

  .rs-section .hp-ind-icard__title {
    color: #fff;
  }

  .rs-section .hp-ind-icard__text {
    color: rgba(255, 255, 255, 0.6);
  }



  .rs-slider {
    padding-left: max(var(--section-px),
        calc((100vw - var(--container-max)) / 2 + var(--section-px)));
  }

  .rs-slider .swiper-wrapper {
    align-items: stretch;
  }

  .rs-slider .swiper-slide {
    height: auto;
  }

  .rs-pagination {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-bottom: 32px;
  }

  .rs-pagination .swiper-pagination-bullet-active {
    background: var(--color-lime);
  }

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

  .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);
  }

  @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);
    }
  }


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

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

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

  .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;
    }
  }