/* ============================================================
   OSP Platform — Premium Landing CSS
   ============================================================ */

@font-face { font-family:'Cairo'; src:url('../assets/fonts/Cairo/cairo-300.ttf') format('truetype'); font-weight:300; font-style:normal; }
@font-face { font-family:'Cairo'; src:url('../assets/fonts/Cairo/cairo-400.ttf') format('truetype'); font-weight:400; font-style:normal; }
@font-face { font-family:'Cairo'; src:url('../assets/fonts/Cairo/cairo-500.ttf') format('truetype'); font-weight:500; font-style:normal; }
@font-face { font-family:'Cairo'; src:url('../assets/fonts/Cairo/cairo-600.ttf') format('truetype'); font-weight:600; font-style:normal; }
@font-face { font-family:'Cairo'; src:url('../assets/fonts/Cairo/cairo-700.ttf') format('truetype'); font-weight:700 900; font-style:normal; }

/* ── Design Tokens ── */
:root {
  --p0: #003c12;
  --p1: #0d6124;
  --p2: #268c43;
  --p3: #37ad01;
  --p4: #6dcc50;
  --p5: #d4f5c8;

  --s0: #44384f;
  --s1: #6b5c7a;
  --s2: #9d8eac;
  --s3: #eeeaf2;

  --g0: #111;
  --g1: #1e1e1e;
  --g2: #2d2d2d;
  --g3: #424242;
  --g4: #717171;
  --g5: #a8aaad;
  --g6: #d7d7d7;
  --g7: #f2f2f2;
  --g8: #fafafa;

  --bg:      #f8faf9;
  --surface: #ffffff;
  --text:    #1a1a2e;
  --muted:   #4a4a6a;

  --font: 'Cairo', sans-serif;

  --ease: cubic-bezier(.25,.8,.25,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --sh-xs: 0 2px 8px rgba(0,0,0,.04);
  --sh-sm: 0 4px 16px rgba(0,0,0,.06);
  --sh-md: 0 8px 32px rgba(0,0,0,.09);
  --sh-lg: 0 16px 48px rgba(0,0,0,.12);
  --sh-xl: 0 32px 80px rgba(0,0,0,.18);

  --sh-green: 0 8px 32px rgba(38,140,67,.25);
  --sh-green-lg: 0 20px 60px rgba(38,140,67,.35);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 9999px;

  --nav-h: 80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100vw; max-width: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; width: 100vw; max-width: 100%; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Layout ── */
.container          { max-width: 1380px; margin: 0 auto; padding: 0 2rem; }
.container--narrow  { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section            { padding: 5rem 0; position: relative; }
.section--sm        { padding: 4rem 0; }
.section--lg        { padding: 9rem 0; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 700; line-height: 1.25; color: var(--p0); }
p  { color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  display: inline-block;
  position: relative;
  padding: .4rem 1rem;
  padding-inline-start: 1.75rem;
  border-radius: var(--r-full);
  background: var(--p5); color: var(--p1);
  font-size: clamp(.78rem, .64rem + .45vw, .96rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  inset-inline-start: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p2);
}
[dir="rtl"] .section-eyebrow,
[dir="rtl"] .section-eyebrow.reveal,
[dir="rtl"] .section-eyebrow.reveal.visible {
  direction: rtl;
  letter-spacing: 0;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.section-title {
  font-size: clamp(2.2rem, 5vw + 1rem, 3.8rem);
  font-weight: 800; color: var(--p0);
  margin-bottom: 1.5rem; line-height: 1.15;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--p2), var(--p3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1.1rem; color: var(--muted);
  max-width: 650px; line-height: 1.8;
}
.section-desc--center { margin: 0 auto; text-align: center; }
.section-head { text-align: center; margin-bottom: 2.2rem; }
.section-head .section-eyebrow { margin: 0 auto; }
[dir="rtl"] .section-head .section-eyebrow {
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}
.section-head .section-desc { margin: 1rem auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .8rem 2rem; border-radius: var(--r-full);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: all .3s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
  letter-spacing: .3px;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .3s;
}
.btn:hover::after { background: rgba(255,255,255,.1); }

.btn--primary {
  background: linear-gradient(135deg, var(--p2), var(--p3));
  color: #fff !important; border-color: transparent;
  box-shadow: var(--sh-green);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--sh-green-lg);
}

.btn--outline {
  background: transparent; color: var(--p2) !important;
  border-color: var(--p2);
}
.btn--outline:hover {
  background: var(--p2); color: #fff !important;
  transform: translateY(-3px); box-shadow: var(--sh-green);
}

.btn--ghost {
  background: rgba(255,255,255,.12); color: #fff !important;
  border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22); transform: translateY(-3px);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: .55rem 1.4rem; font-size: .85rem; }

/* ── Premium Pill Badge ── */
.badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  padding: .35rem .95rem; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; letter-spacing: .03em;
  background: linear-gradient(135deg, rgba(212, 245, 200, 0.4) 0%, rgba(212, 245, 200, 0.8) 100%);
  color: var(--p1);
  border: 1px solid rgba(13, 97, 36, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(4px);
  text-transform: capitalize;
  transition: all 0.2s var(--ease);
}
.badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

/* ── Grid ── */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Cards ── */
.card {
  background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden; position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(38,140,67,.12);
}
.card--pad { padding: 2.5rem; }

/* ── NAVBAR ── */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.85); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s, box-shadow .3s, height .3s;
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.header.scrolled .nav-container { height: 65px; }

.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); transition: height .3s;
}

.nav-logo img { height: 46px; width: auto; transition: transform .3s; }
.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-link {
  font-size: .95rem; font-weight: 600; color: var(--g3);
  position: relative; padding: .3rem 0;
  transition: color .25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--p2);
  border-radius: 2px; transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--p2); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--p2); }
.nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.lang-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; border-radius: var(--r-full);
  background: var(--s3); color: var(--s1);
  font-weight: 700; font-size: .85rem; cursor: pointer;
  transition: all .25s;
}
.lang-btn:hover { background: var(--g6); color: var(--s0); }

.nav-login {
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem 1.6rem;
}

.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--p0); padding: .25rem;
  transition: color .25s; border-radius: 8px;
}
.mobile-toggle:hover { color: var(--p2); background: var(--g7); }

/* mobile nav */
@media (max-width: 992px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    height: 100vh; height: 100dvh;
    background: rgba(255,255,255,.98);
    flex-direction: column; align-items: center; justify-content: flex-start;
    padding-top: 4rem; gap: 2.5rem; z-index: 999;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .nav-links.open {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  [dir="rtl"] .nav-links { left: 0; right: 0; }

  .nav-link { font-size: 1.4rem; font-weight: 700; color: var(--g0); }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }

  /* lock scroll when menu opens */
  body:has(.nav-links.open) { overflow: hidden; }
}

/* ══════════════════════════════════════
   HERO — Full-Background Slideshow
════════════════════════════════════════ */

/* ── Base ── */
.hero {
  --hero-slide-duration: 10000ms;
  /* Assure hero height natively accommodates 16:9 aspects to avoid vertical cropping on ultra-wide screens */
  min-height: max(100svh, 56.25vw);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ── Background Slides ── */
.hero__bg-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #07140c;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
  /* No containment — causes child image to mis-resolve 100% on mobile WebKit */
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Neutral scale to ensure the image does not artificially crop 8% on all sides */
  transform: scale(1.0) translateZ(0);
  backface-visibility: hidden;
  image-rendering: high-quality;
  -ms-interpolation-mode: bicubic;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  animation: none;
}

.hero__bg-slide--active {
  opacity: 1;
}
.hero__bg-slide--active .hero__bg-image {
  /* Very subtle kenBurns so it does not crop too much over its duration */
  animation: kenBurns var(--hero-slide-duration) linear forwards;
}

/* Subtle, barely noticeable movement starting from 1.02 to 1.0 */
@keyframes kenBurns {
  from { transform: scale(1.015) translateZ(0); }
  to   { transform: scale(1.0) translateZ(0); }
}

/* ── Dark Overlay ── */
/* Slightly lifted to let HD detail breathe, while keeping text legible */
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    /* left reading shade — keeps content readable */
    linear-gradient(
      100deg,
      rgba(0,15,5,.70) 0%,
      rgba(0,12,4,.48) 38%,
      rgba(0,8,3,.18) 100%
    ),
    /* bottom vignette — grounds the image */
    linear-gradient(
      to top,
      rgba(0,10,3,.60) 0%,
      transparent 55%
    ),
    /* top vignette — frames navbar area */
    linear-gradient(
      to bottom,
      rgba(0,10,3,.30) 0%,
      transparent 25%
    );
  /* Prevent sub-pixel flicker on GPU compositing */
  will-change: auto;
  transform: translateZ(0);
}

/* ── Container ── */
.hero__container {
  padding-top: 2rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── Inner content ── */
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 980px;
  width: 100%;
}
[dir="rtl"] .hero__inner {
  align-items: flex-end;
  text-align: right;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem 1.25rem;
  border-radius: var(--r-full);
  background: rgba(55,173,1,.18);
  border: 1px solid rgba(109,204,80,.35);
  backdrop-filter: blur(10px);
  color: #a8ff78;
  font-size: .85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: fadeUp .6s var(--ease) both;
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6dcc50;
  box-shadow: 0 0 8px #6dcc50;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

.hero__title {
  font-size: clamp(2.2rem, 3.4vw + .4rem, 4.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  animation: fadeUp .8s .1s var(--ease) both;
  text-wrap: balance;
  /* No ch constraint — let the inner width control line length */
}
.hero__title .accent {
  background: linear-gradient(130deg, #6dcc50 0%, #a8ff78 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description block ── */
.hero__desc-block {
  width: 100%;
  max-width: 100ch;
  margin-bottom: 1.6rem;
  animation: fadeUp .85s .18s var(--ease) both;
}

.hero__desc {
  font-size: clamp(.95rem, .85vw + .3rem, 1.15rem);
  color: rgba(255,255,255,.92);
  line-height: 1.72;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero__desc--primary {
  color: #fff;
  font-size: clamp(1rem, .95vw + .35rem, 1.2rem);
  text-shadow: 0 2px 16px rgba(0,0,0,.8);
  font-weight: 600;
  line-height: 1.68;
}
.hero__desc--secondary {
  color: rgba(255,255,255,.88);
  font-size: clamp(.88rem, .75vw + .28rem, 1.05rem);
  line-height: 1.7;
}

/* Separator between the two paragraphs */
.hero__desc-sep {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.3) 30%,
    rgba(255,255,255,.3) 70%,
    transparent
  );
  margin: .9rem 0;
}
[dir="rtl"] .hero__desc-sep {
  background: linear-gradient(
    to left,
    transparent,
    rgba(255,255,255,.3) 30%,
    rgba(255,255,255,.3) 70%,
    transparent
  );
}

/* ── Actions ── */
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center;
  animation: fadeUp .95s .28s var(--ease) both;
}

/* ── Ghost button (on dark bg) ── */
.btn--hero-ghost {
  background: rgba(255,255,255,.1);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}
.btn--hero-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
}

/* ── Slide Indicators ── */
.hero__indicators {
  position: absolute;
  bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .8rem; z-index: 3;
}
.hero__indicator {
  width: 40px; height: 5px; border-radius: 99px;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: all .4s var(--ease);
}
.hero__indicator--active {
  background: #fff;
  width: 70px;
  box-shadow: 0 0 15px rgba(255,255,255,.4);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Responsive ── */
@media (max-width: 768px) {
  .hero__inner {
    max-width: 90vw;
    align-items: flex-start;
    text-align: left;
  }
  [dir="rtl"] .hero__inner { align-items: flex-end; text-align: right; }
  .hero__badge {
    font-size: .72rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: .38rem 1rem;
  }
  .hero__title {
    font-size: clamp(1.5rem, 5.5vw, 2.4rem);
    letter-spacing: -.8px;
    max-width: 100%;
    margin-bottom: .9rem;
  }
  .hero__desc-block {
    max-width: 88vw;
    margin-bottom: 1.2rem;
  }
  .hero__desc        { font-size: .9rem;  line-height: 1.65; }
  .hero__desc--primary   { font-size: .95rem; font-weight: 600; line-height: 1.62; }
  .hero__desc--secondary { font-size: .84rem; line-height: 1.58; }
  .hero__desc-sep { margin: .65rem 0; width: 80vw; }
  .hero__actions { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: .6rem; width: 100%; }
  .hero__actions .btn { width: min(300px, 88vw); }
  .hero__indicators { bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .hero__inner { max-width: 92vw; align-items: flex-start; text-align: left; }
  [dir="rtl"] .hero__inner { align-items: flex-end; text-align: right; }
  .hero__title { font-size: clamp(1.3rem, 6.5vw, 1.9rem); max-width: 100%; }
  .hero__desc-block { max-width: 90vw; }
  .hero__desc        { font-size: .84rem; }
  .hero__desc--primary   { font-size: .88rem; }
  .hero__desc--secondary { font-size: .8rem; }
}

/* ══════════════════════════════════════
   SECTION IMAGE BACKGROUNDS
   KSA community photos as section bg
════════════════════════════════════════ */
.section-img-bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-img-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  background-attachment: scroll;
  z-index: 0;
}
.section-img-bg .container { position: relative; z-index: 2; }
.section-img-bg__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── ABOUT ── */
.about-section { background: var(--surface); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 6rem;
}
.about__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.about__image-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl);
  background: linear-gradient(135deg, var(--p5), #e8f5e9);
  aspect-ratio: 1;
  display: flex; align-items: stretch; justify-content: stretch;
  position: relative;
  width: 100%;
}
.about__dash {
  width: 100%;
  margin: 1rem;
  padding: 1rem;
  border-radius: calc(var(--r-xl) - 10px);
  background: linear-gradient(160deg, rgba(11,36,18,.96), rgba(9,22,14,.94));
  color: #f3fff6;
  border: 1px solid rgba(109,204,80,.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: .85rem;
}
.about__dash-sidebar {
  border-right: 1px solid rgba(255,255,255,.12);
  padding-right: .75rem;
  display: grid;
  align-content: start;
  gap: .8rem;
}
.about__dash-brand {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #e9ffef;
  font-size: .82rem;
}
.about__dash-brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dcc50;
}
.about__dash-nav {
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: .2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(109,204,80,.55) transparent;
}
.about__dash-nav::-webkit-scrollbar {
  width: 6px;
}
.about__dash-nav::-webkit-scrollbar-track {
  background: transparent;
}
.about__dash-nav::-webkit-scrollbar-thumb {
  background: rgba(109,204,80,.5);
  border-radius: 999px;
}
.about__dash-nav:hover::-webkit-scrollbar-thumb {
  background: rgba(109,204,80,.72);
}
.about__dash-role-sidebar {
  display: none;
}
.about__dash-role-sidebar.is-active {
  display: block;
}
.about__dash-menu-list,
.about__dash-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about__dash-menu-list {
  display: grid;
  gap: .45rem;
  max-height: 100%;
}
.about__dash-menu-list > li > ul {
  display: grid;
  gap: .3rem;
}
.about__dash-menu-list .menu-title {
  margin-top: .1rem;
}
.about__dash-menu-list .menu-title span {
  display: block;
  font-size: .52rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(243,255,246,.52);
  font-weight: 700;
}
.about__dash-menu-list .sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: .36rem;
  text-decoration: none;
  color: rgba(243,255,246,.72);
  font-size: .62rem;
  line-height: 1.2;
  padding: .28rem .42rem;
  border-radius: 8px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.about__dash-menu-list .sidebar-nav-link i {
  font-size: .72rem;
  flex: 0 0 auto;
}
.about__dash-menu-list .sidebar-nav-link span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.about__dash-menu-list .sidebar-nav-link.active,
.about__dash-menu-list .sidebar-nav-link:hover {
  background: rgba(109,204,80,.16);
  color: #deffe5;
}
.about__dash-main {
  display: grid;
  gap: .85rem;
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}
.about__dash.is-updating .about__dash-main {
  opacity: .72;
  transform: translateY(2px);
}
.about__dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.about__dash-head h3 {
  margin: 0;
  color: #f3fff6;
  font-size: 1rem;
  font-weight: 700;
}
.about__dash-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .2rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
}
.about__dash-tabs button {
  border: 0;
  cursor: pointer;
  background: transparent;
  padding: .2rem .55rem;
  border-radius: var(--r-full);
  font-size: .68rem;
  color: rgba(243,255,246,.72);
}
.about__dash-tabs button.is-active {
  background: rgba(109,204,80,.24);
  color: #d7ffd9;
  box-shadow: inset 0 0 0 1px rgba(109,204,80,.25);
}
.about__dash-rotation {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.about__dash-ctrl {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: rgba(243,255,246,.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.about__dash-ctrl:hover {
  transform: translateY(-1px);
  background: rgba(109,204,80,.22);
  border-color: rgba(109,204,80,.5);
}
.about__dash-progress {
  width: 96px;
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}
.about__dash-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #6dcc50, #2ea01a);
}
.about__dash-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}
.about__dash-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .6rem .7rem;
}
.about__dash-stat small {
  display: block;
  color: rgba(243,255,246,.68);
  font-size: .67rem;
  margin-bottom: .22rem;
}
.about__dash-stat strong {
  display: block;
  color: #f3fff6;
  font-size: 1.04rem;
  line-height: 1.1;
}
.about__dash-chart {
  border-radius: 12px;
  padding: .6rem .7rem .45rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.about__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
  margin-bottom: .35rem;
}
.about__chart-head span:first-child {
  color: #f3fff6;
  font-size: .74rem;
  font-weight: 600;
}
.about__chart-head span:last-child {
  color: rgba(243,255,246,.65);
  font-size: .66rem;
}
.about__dash-chart svg { width: 100%; height: 108px; }
.about__dash-chart line {
  stroke: rgba(255,255,255,.2);
  stroke-width: 1;
}
.about__dash-chart polyline {
  fill: none;
  stroke: #6dcc50;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all .35s var(--ease);
}
.about__dash-activity {
  display: grid;
  gap: .42rem;
}
.about__activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  font-size: .72rem;
  padding: .45rem .55rem;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
}
.about__activity-item span { color: rgba(243,255,246,.84); }
.about__activity-item em {
  font-style: normal;
  font-size: .63rem;
  padding: .2rem .45rem;
  border-radius: var(--r-full);
  border: 1px solid transparent;
}
.about__activity-item .is-open {
  color: #d9e8ff;
  background: rgba(59,130,246,.18);
  border-color: rgba(59,130,246,.3);
}
.about__activity-item .is-progress {
  color: #fff4d7;
  background: rgba(234,179,8,.16);
  border-color: rgba(234,179,8,.3);
}
.about__activity-item .is-done {
  color: #d8ffe1;
  background: rgba(34,197,94,.16);
  border-color: rgba(34,197,94,.3);
}

.about__accent {
  position: absolute; width: 180px; height: 180px;
  border-radius: var(--r-lg); rotate: 20deg;
  background: linear-gradient(135deg, var(--p2), var(--p3));
  bottom: -30px; right: -30px; z-index: -1;
  opacity: .7;
}
.about__ring {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(38,140,67,.3);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: spin 25s linear infinite;
  pointer-events: none;
}
.about__ring--1 { width: 110%; height: 110%; }
.about__ring--2 { width: 130%; height: 130%; opacity: .5; animation-duration: 40s; animation-direction: reverse; }

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.about__bullets { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about__bullet {
  display: flex; align-items: flex-start; gap: 1rem;
}
.about__bullet-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--p5); color: var(--p2); font-size: 1.1rem;
  margin-top: .1rem;
}
.about__bullet-text { font-size: .95rem; color: var(--muted); line-height: 1.7; }
.about__bullet-title { font-weight: 700; color: var(--g2); margin-bottom: .2rem; }

/* About Mobile Responsive */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__content { order: -1; }
  .about__image-wrap { aspect-ratio: auto; min-height: 480px; }
  .about__dash {
    grid-template-columns: 1fr;
    margin: 0; padding: 1.25rem;
    border-radius: var(--r-xl);
    max-width: 100%;
    box-sizing: border-box;
  }
  .about__dash-sidebar {
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 0 0 .8rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    width: 100%;
  }
  .about__dash-nav {
    display: block;
    max-height: 210px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
  }
  .about__dash-nav::-webkit-scrollbar { width: 4px; }
  .about__dash-menu-list { width: 100%; }
  .about__dash-menu-list .sidebar-nav-link { padding: .35rem .6rem; }

  .about__dash-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    margin-top: .4rem;
    width: 100%;
  }
  .about__dash-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
    padding: .3rem 0;
    max-width: calc(100vw - 4rem);
  }
  .about__dash-tabs::-webkit-scrollbar { display: none; }
  .about__dash-tabs button { white-space: nowrap; padding: .35rem .75rem; }

  .about__dash-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }
}
@media (max-width: 480px) {
  .about__dash {
    padding: 1.1rem;
    border-radius: 0;
  }
  .about__image-wrap { border-radius: 0; }
  .about__dash-stats { grid-template-columns: 1fr; }
  .about__activity-item { flex-direction: column; align-items: flex-start; gap: .4rem; padding: .6rem .75rem; border-radius: 12px; }
}

/* ── CENTRALIZED ── */
.centralized { background: var(--bg); }

/* Two-column layout */
.cent__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}
.cent__body--rtl { direction: rtl; }

/* Left: text */
.cent__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}
.cent__body--rtl .cent__text { align-items: flex-end; }
[dir="rtl"] .centralized .cent__text .section-eyebrow {
  align-self: flex-end;
  margin-left: auto;
  margin-right: 0;
}

.cent__heading {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  font-weight: 800;
  color: var(--p0);
  line-height: 1.2;
  letter-spacing: -.8px;
  margin: .2rem 0 1rem;
}
.cent__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0;
}

/* Right: glass panel (light theme) */
.cent__panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 2.4rem 2.2rem;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--sh-md);
  overflow: hidden;
  color: var(--text);
}
.cent__panel-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,173,1,.12) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  pointer-events: none;
}
[dir="rtl"] .cent__panel-glow { right: auto; left: -80px; }

.cent__panel-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--p1);
  background: var(--p5);
  border-radius: var(--r-full);
  padding: .35rem .9rem;
  margin-bottom: 1.4rem;
}

.cent__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cent__bullet {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.6;
  padding: .7rem .9rem;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,.04);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.cent__bullet:hover {
  background: var(--surface);
  border-color: rgba(38,140,67,.2);
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.cent__bullet-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--p5);
  color: var(--p2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .04rem;
}

/* Cards below */
.centralized__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cent-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--sh-sm);
  text-align: left;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
[dir="rtl"] .cent-card { text-align: right; }
.cent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p2), var(--p3));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
[dir="rtl"] .cent-card::before { transform-origin: right; }
.cent-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(38,140,67,.12); }
.cent-card:hover::before { transform: scaleX(1); }
.cent-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--p5); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem;
  color: var(--p2);
}
.cent-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: .8rem; color: var(--p0); }
.cent-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .cent__body { gap: 2.5rem; }
}
@media (max-width: 860px) {
  .cent__body { grid-template-columns: 1fr; gap: 2rem; }
  .cent__text { align-items: flex-start; }
  .cent__body--rtl .cent__text { align-items: flex-end; }
  .centralized__cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cent__panel { padding: 1.8rem 1.4rem; }
  .cent__bullet { padding: .6rem .8rem; }
  [dir="rtl"] .centralized .cent__text .section-eyebrow {
    justify-content: flex-start;
    text-align: right;
  }
}

/* ── STAKEHOLDERS ── */
.stakeholders { background: var(--surface); }
.stakeholders__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; margin-top: 0;
}
.stake-card {
  border-radius: var(--r-lg); padding: 2.2rem;
  border: 2px solid rgba(0,0,0,.05);
  background: var(--bg); position: relative; overflow: hidden;
  transition: all .35s var(--ease);
}
.stake-card:hover {
  border-color: var(--p3);
  box-shadow: 0 0 0 8px rgba(55,173,1,.06), var(--sh-md);
  transform: translateY(-4px);
}
.stake-card__num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 4rem; font-weight: 900; color: rgba(38,140,67,.06);
  line-height: 1; font-variant-numeric: tabular-nums;
}
[dir="rtl"] .stake-card__num { right: auto; left: 1.5rem; }
.stake-card__icon {
  width: 60px; height: 60px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  background: linear-gradient(135deg, var(--p5), #d4edda);
  margin-bottom: 1.5rem;
  color: var(--p2);
}
.stake-card__title { font-size: 1.4rem; font-weight: 800; color: var(--p0); margin-bottom: 1rem; }
.stake-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ── SOLUTIONS ── */
.solutions { background: var(--bg); }
.solutions__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 0;
}
.sol-card {
  background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.05); padding: 2.5rem;
  box-shadow: var(--sh-sm);
  transition: all .35s var(--ease); overflow: hidden; position: relative;
}
.sol-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--p2), var(--p3));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.sol-card:hover::after { transform: scaleX(1); }
.sol-card__icon {
  width: 64px; height: 64px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  background: linear-gradient(135deg, var(--p5), #ddf4d0);
  margin-bottom: 1.5rem;
  transition: transform .3s var(--ease-spring);
  color: var(--p2);
}
.sol-card:hover .sol-card__icon { transform: scale(1.12) rotate(-5deg); }
.sol-card__title { font-size: 1.35rem; font-weight: 800; color: var(--p0); margin-bottom: .8rem; }
.sol-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ── FEATURES ── */
.features { background: var(--surface); }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 0;
}
.feat-card {
  border-radius: var(--r-lg); padding: 2rem;
  border: 1px solid rgba(0,0,0,.05); background: var(--bg);
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.feat-card:hover {
  background: var(--surface); transform: translateY(-5px);
  box-shadow: var(--sh-md); border-color: rgba(38,140,67,.12);
}
.feat-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: var(--p5); margin-bottom: 1.2rem;
  transition: all .3s var(--ease-spring);
  color: var(--p2);
}
.feat-card:hover .feat-card__icon {
  background: linear-gradient(135deg, var(--p2), var(--p3));
  transform: scale(1.1) rotate(-8deg);
  filter: drop-shadow(0 4px 12px rgba(38,140,67,.3));
  color: #fff;
}
.feat-card__title { font-size: 1.2rem; font-weight: 700; color: var(--p0); margin-bottom: .8rem; }
.feat-card__desc { font-size: .875rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── HOW IT WORKS ── */
.how { background: var(--bg); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.how__intro {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}
.how__command {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 92% 8%, rgba(55,173,1,.12), transparent 42%),
    radial-gradient(circle at 8% 90%, rgba(38,140,67,.12), transparent 40%),
    linear-gradient(165deg, #ffffff, #f7fbf8 55%, #eef7f0 100%);
  border: 1px solid rgba(38,140,67,.16);
  box-shadow: 0 18px 34px rgba(15,59,33,.12);
  animation: dashFloat 8s ease-in-out infinite;
}
.how__command::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.65), transparent 35%);
  pointer-events: none;
}
.how__command-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.how__command-eyebrow {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(20,69,41,.64);
  margin-bottom: .3rem;
}
.how__command-head h3 {
  margin: 0;
  font-size: 1rem;
  color: #0f4f2d;
  line-height: 1.3;
}
.how__command-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: var(--r-full);
  padding: .25rem .55rem;
  font-size: .65rem;
  color: #176239;
  background: rgba(38,140,67,.12);
  border: 1px solid rgba(38,140,67,.25);
}
.how__command-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ea01a;
  box-shadow: 0 0 0 0 rgba(109,204,80,.7);
  animation: pulse 2s infinite;
}
.how__command-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}
.how__command-chip {
  border-radius: 12px;
  padding: .58rem .65rem;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(38,140,67,.13);
}
.how__command-chip small {
  display: block;
  font-size: .64rem;
  color: rgba(20,69,41,.64);
  margin-bottom: .18rem;
}
.how__command-chip strong {
  display: block;
  font-size: .98rem;
  color: #0f4f2d;
  line-height: 1.1;
}
.how__command-chip em {
  display: inline-block;
  margin-top: .22rem;
  font-size: .62rem;
  font-style: normal;
  border-radius: var(--r-full);
  padding: .14rem .42rem;
  border: 1px solid transparent;
}
.how__command-chip .is-up {
  color: #1c6c3f;
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.28);
}
.how__command-chip .is-mid {
  color: #8a6500;
  background: rgba(234,179,8,.16);
  border-color: rgba(234,179,8,.28);
}
.how__command-grid {
  margin-top: .6rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.how__command-card {
  border-radius: 12px;
  padding: .62rem .68rem;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(38,140,67,.13);
}
.how__command-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .45rem;
  margin-bottom: .5rem;
}
.how__command-card-head span:first-child {
  color: #0f4f2d;
  font-size: .72rem;
  font-weight: 600;
}
.how__command-card-head span:last-child {
  color: rgba(20,69,41,.58);
  font-size: .64rem;
}
.how__load-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: .4rem;
  align-items: center;
  margin-top: .38rem;
}
.how__load-row label {
  font-size: .63rem;
  color: rgba(20,69,41,.72);
}
.how__load-row div {
  height: 7px;
  border-radius: var(--r-full);
  background: rgba(15,79,45,.12);
  overflow: hidden;
}
.how__load-row div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2ea01a, #6dcc50);
}
.how__flow {
  display: grid;
  gap: .35rem;
}
.how__flow-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .45rem;
  padding: .36rem .45rem;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,140,67,.11);
}
.how__flow-item strong {
  font-size: .67rem;
  font-weight: 600;
  color: #0f4f2d;
}
.how__flow-item em {
  font-size: .6rem;
  font-style: normal;
  border-radius: var(--r-full);
  padding: .16rem .42rem;
  border: 1px solid transparent;
  white-space: nowrap;
}
.how__flow-item .is-open {
  color: #1d4f80;
  background: rgba(59,130,246,.14);
  border-color: rgba(59,130,246,.25);
}
.how__flow-item .is-progress {
  color: #8a6500;
  background: rgba(234,179,8,.16);
  border-color: rgba(234,179,8,.28);
}
.how__flow-item .is-done {
  color: #1c6c3f;
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.28);
}
.how__command-chart {
  position: relative;
  z-index: 1;
  margin-top: .55rem;
  border-radius: 12px;
  padding: .58rem .68rem .36rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,140,67,.14);
}
.how__command-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: .3rem;
}
.how__command-chart-head span:first-child {
  color: #0f4f2d;
  font-size: .73rem;
  font-weight: 600;
}
.how__command-chart-head span:last-child {
  color: rgba(20,69,41,.6);
  font-size: .65rem;
}
.how__command-chart svg { width: 100%; height: 88px; }
.how__command-chart line {
  stroke: rgba(15,79,45,.16);
  stroke-width: 1;
}
.how__command-chart polyline {
  fill: none;
  stroke: #2ea01a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how__steps {
  display: flex; flex-direction: column; gap: 0; margin-top: 0;
  position: relative;
}
.how__steps::before {
  content: ''; position: absolute;
  left: 28px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--p3), transparent);
  border-radius: 2px; z-index: 0;
}
[dir="rtl"] .how__steps::before { left: auto; right: 28px; }

.how__step {
  display: flex; gap: 2rem; position: relative; padding-bottom: 2.5rem;
}
.how__step:last-child { padding-bottom: 0; }

.how__step-num {
  width: 58px; height: 58px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--p2), var(--p3));
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-green); position: relative; z-index: 1;
  transition: transform .3s var(--ease-spring);
  border: 3px solid var(--bg);
}
.how__step:hover .how__step-num { transform: scale(1.15); }

.how__step-body {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 1.8rem 2rem; flex: 1;
  border: 1px solid rgba(0,0,0,.05); box-shadow: var(--sh-xs);
  transition: all .3s var(--ease);
}
.how__step:hover .how__step-body {
  box-shadow: var(--sh-md); transform: translateX(6px);
  border-color: rgba(38,140,67,.1);
}
[dir="rtl"] .how__step:hover .how__step-body { transform: translateX(-6px); }
.how__step-title { font-size: 1.15rem; font-weight: 700; color: var(--p0); margin-bottom: .6rem; }
.how__step-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; margin: 0; }
.how__step-icon { color: var(--p2); display:inline-flex; float: right; margin-top: -.2rem; }
[dir="rtl"] .how__step-icon { float: left; }

/* ── PRICING ── */
.pricing { background: var(--surface); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; align-items: start; margin-top: 0;
}
.price-card {
  border-radius: var(--r-lg); padding: 2.5rem;
  border: 2px solid rgba(0,0,0,.05); background: var(--bg);
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.price-card--featured {
  background: var(--surface);
  border-color: var(--p2);
  box-shadow: var(--sh-green-lg);
  transform: translateY(-10px);
}
.price-card--featured:hover { transform: translateY(-16px); }
.price-card__ribbon {
  position: absolute; top: 1.5rem; right: -2.5rem;
  background: linear-gradient(135deg, var(--p2), var(--p3));
  color: #fff; font-size: .7rem; font-weight: 800;
  padding: .35rem 3rem; transform: rotate(45deg);
  letter-spacing: 1.5px; text-transform: uppercase; z-index: 5;
}
[dir="rtl"] .price-card__ribbon { right: auto; left: -2.5rem; transform: rotate(-45deg); }
.price-card__icon {
  width: 60px; height: 60px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  background: var(--p5); margin-bottom: 1.5rem;
  color: var(--p2);
}
.price-card--featured .price-card__icon {
  background: linear-gradient(135deg, var(--p2), var(--p3));
  box-shadow: var(--sh-green);
  color: #fff;
}
.price-card__title { font-size: 1.45rem; font-weight: 800; color: var(--p0); margin-bottom: 1rem; }
.price-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.75; margin: 0; }

.pricing__cta {
  text-align: center; margin-top: 4rem;
  padding: 3.5rem; border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--p0), var(--p1));
  position: relative; overflow: hidden;
}
.pricing__cta::before {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.pricing__cta-title { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: .6rem; position: relative; z-index: 1; }
.pricing__cta-desc { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.pricing__cta .btn { position: relative; z-index: 1; }

/* ── DEMO / CONTACT ── */
.demo { background: var(--bg); }
.demo__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: start;
}

.demo__contact-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 2rem; border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--sh-sm); margin-top: 2.5rem;
}
.demo__contact-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 0; border-bottom: 1px solid var(--g7);
}
.demo__contact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.demo__contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--p5); color: var(--p2);
}
.demo__contact-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--g5); font-weight: 600; margin-bottom: .2rem; }
.demo__contact-value { font-size: .95rem; font-weight: 700; color: var(--text); }
.demo__contact-value a { color: inherit; }
.demo__contact-value a:hover { color: var(--p2); }

/* Form */
.form-card {
  background: var(--surface); border-radius: var(--r-xl);
  padding: 3rem; border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--sh-xl); position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--p2), var(--p3), var(--p2));
  background-size: 200% 100%; animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }

.form-title { font-size: 1.6rem; font-weight: 800; color: var(--p0); margin-bottom: 2rem; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row--single { grid-template-columns: 1fr; }

.form-field { position: relative; }
.form-field label {
  display: block; font-size: .8rem; font-weight: 700;
  color: var(--g3); margin-bottom: .5rem; letter-spacing: .3px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--g6); border-radius: var(--r-sm);
  background: var(--bg); color: var(--text);
  font-size: .95rem; transition: all .25s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--p2);
  box-shadow: 0 0 0 4px rgba(38,140,67,.1);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select { appearance: none; cursor: pointer; }
.form-field__select-icon {
  position: absolute; bottom: 0; right: 1rem;
  transform: translateY(-50%); pointer-events: none; color: var(--g5);
  bottom: auto; top: 50%; margin-top: 13px;
}
[dir="rtl"] .form-field__select-icon { right: auto; left: 1rem; }

/* iti override */
.iti { width: 100%; }
.iti__country-list { z-index: 999 !important; color: var(--text); }
.iti--allow-dropdown input[type=tel] { padding-left: 54px !important; }
[dir="rtl"] .iti--allow-dropdown input[type=tel] { padding-left: 1.1rem !important; padding-right: 54px !important; }

.form-submit {
  width: 100%; margin-top: 1.5rem; padding: 1rem;
  font-size: 1rem; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--p2), var(--p3));
  color: #fff; border: none; cursor: pointer; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  box-shadow: var(--sh-green); transition: all .3s var(--ease);
  letter-spacing: .5px;
}
.form-submit:hover {
  transform: translateY(-3px); box-shadow: var(--sh-green-lg);
}
.btn .btn-arrow { transition: transform .3s; }
.btn:hover .btn-arrow { transform: translateX(5px); }
[dir="rtl"] .btn:hover .btn-arrow { transform: translateX(-5px); }
[dir="rtl"] .btn-arrow { transform: scaleX(-1); }

/* ── KEY CAPABILITIES ── */
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0;
}
@media (max-width: 900px) {
  .capabilities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .capabilities__grid { grid-template-columns: 1fr; }
}
.cap-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border-radius: var(--r-md);
  padding: 1.4rem 1.6rem; border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--sh-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.cap-card::before {
  content: ''; position: absolute; inset-inline-start: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--p2), var(--p3));
  border-radius: 3px; transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.cap-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(38,140,67,.15); }
.cap-card:hover::before { transform: scaleY(1); }
.cap-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--p5); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--p2);
}
.cap-card__title {
  font-size: 1rem; font-weight: 700; color: var(--p0); line-height: 1.35;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--p1) 0%, var(--p0) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(55,173,1,.2) 0%, transparent 70%);
}
.cta-banner__title { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: .8rem; position: relative; z-index: 1; }
.cta-banner__desc { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ── FOOTER ── */
.newsletter-box {
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl);
  padding: 3rem; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem; backdrop-filter: blur(10px);
}
.footer {
  background: linear-gradient(to bottom, #071a0d, var(--p0));
  color: rgba(255,255,255,.7); padding-top: 5rem; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(55,173,1,.07) 0%, transparent 60%);
  pointer-events: none;
}
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}


.footer__logo { filter: brightness(0) invert(1); height: 48px; margin-bottom: 1.25rem; }
.footer__brand-desc { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.8; margin-bottom: 1.75rem; }
.footer__socials { display: flex; gap: .75rem; }
.footer__social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7);
  transition: all .25s;
}
.footer__social:hover { background: var(--p2); border-color: var(--p2); color: #fff; transform: translateY(-3px); }

.footer__col-title {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 1.5rem; position: relative; padding-bottom: .9rem;
}
.footer__col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--p3), transparent);
  border-radius: 2px;
}
[dir="rtl"] .footer__col-title::after { left: auto; right: 0; }
.footer__links { display: flex; flex-direction: column; gap: .85rem; }
.footer__link {
  color: rgba(255,255,255,.6); font-size: .9rem; transition: all .25s;
  display: flex; align-items: center; gap: .5rem;
}
.footer__link:hover { color: #fff; transform: translateX(4px); }
[dir="rtl"] .footer__link:hover { transform: translateX(-4px); }
.footer__link::before { content: '→'; font-size: .75rem; opacity: 0; transition: all .25s; }
.footer__link:hover::before { opacity: 1; }
[dir="rtl"] .footer__link::before { content: '←'; }

.footer__contact-item {
  display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.1rem;
}
.footer__contact-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; color: var(--p4); margin-top: .1rem;
}
.footer__contact-val { color: rgba(255,255,255,.8); font-size: .9rem; min-width: 0; }
.footer__contact-meta {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  margin-bottom: .15rem;
}
.footer__contact-email {
  display: inline-block;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.footer__contact-val a { color: inherit; }
.footer__contact-val a:hover { color: #fff; }

.footer__bottom {
  padding: 1.75rem 0; color: rgba(255,255,255,.4);
  font-size: .85rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dashFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109,204,80,.6); }
  70% { box-shadow: 0 0 0 10px rgba(109,204,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,204,80,0); }
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 2000;
  background: linear-gradient(90deg, var(--p2), var(--p3));
  width: 0%; transition: width .1s linear;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p2), var(--p3));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-green); opacity: 0; pointer-events: none;
  transform: translateY(15px); transition: all .35s var(--ease);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.08); box-shadow: var(--sh-green-lg); }
[dir="rtl"] .back-to-top { right: auto; left: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section-head { margin-bottom: 1.9rem; }
  .section-eyebrow {
    font-size: .84rem;
    padding: .38rem .92rem;
    gap: .45rem;
  }
  .section-eyebrow::before { width: 7px; height: 7px; }
  .hero__inner { gap: 0; }
  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .about__dash { margin: .85rem; grid-template-columns: 110px 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .how__intro { max-width: 720px; width: 100%; margin: 0 auto; }
  .demo__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .section-head { margin-bottom: 1.5rem; }
  .section-eyebrow {
    font-size: .78rem;
    padding: .34rem .82rem;
    gap: .4rem;
    margin-bottom: 1.1rem;
  }
  .section-eyebrow::before { width: 6px; height: 6px; }
  .container { padding: 0 1rem; }
  .section { padding: 1.5rem 0; }
  .section--lg { padding: 5rem 0; }
  .hero__container { padding-top: 2rem; padding-bottom: 3rem; }
  .hero__title { letter-spacing: -0.5px; }
  .hero__scroll-hint { margin-top: 2.5rem; }
  .hero__bg-glow--1 { width: 500px; height: 500px; }
  .hero__bg-glow--2, .hero__bg-glow--3 { width: 350px; height: 350px; }
  .centralized__cards { grid-template-columns: 1fr; }
  .stakeholders__grid { grid-template-columns: 1fr; }
  .solutions__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
  .demo__contact-card { padding: 1.5rem; }
  .pricing__cta { padding: 2.5rem 1.5rem; }
  .newsletter-box { padding: 2rem 1.5rem; justify-content: center; text-align: center; }
  .newsletter-box > div { text-align: center !important; }
  .about__visual {
    max-width: 100%;
    overflow: hidden;
  }
  .about__visual.reveal,
  .about__visual.reveal.visible {
    opacity: 1;
    transform: none;
  }
  .about__image-wrap {
    border-radius: 24px;
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
    display: block;
  }
  .about__dash {
    margin: .6rem;
    padding: .7rem;
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none !important;
    overflow: visible !important;
  }
  .about__dash-main { gap: .65rem; }
  .about__dash-head {
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }
  [dir="rtl"] .about__dash-head { align-items: flex-end; }
  .about__accent {
    width: 130px;
    height: 130px;
    right: -12px;
    bottom: -12px;
    opacity: .52;
  }
  .about__ring--1 { width: 102%; height: 102%; }
  .about__ring--2 { width: 114%; height: 114%; }
  .how__command { padding: 1rem; border-radius: 18px; }
  .how__command-head h3 { font-size: .94rem; }
  .how__command-strip { grid-template-columns: 1fr; }
  .how__command-grid { grid-template-columns: 1fr; }
  .how__command-chart svg { height: 84px; }
  .about__dash-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-right: 0;
    padding-bottom: .55rem;
  }
  .about__dash-nav { max-height: 220px; }
  .about__dash-head h3 { font-size: .92rem; }
  .about__dash-progress { width: 78px; }
  .about__dash-stat strong { font-size: .96rem; }
  .about__dash-chart svg { height: 96px; }
  .about__activity-item { font-size: .68rem; }

  /* Navbar scaling */
  .nav-logo img { height: 34px; }
  .nav-actions { gap: 0.4rem; }
  .nav-login { padding: 0.4rem 0.85rem; font-size: 0.85rem; }
  .lang-btn { padding: 0.35rem 0.6rem; font-size: 0.8rem; gap: 0.25rem; }
}

@media (max-width: 480px) {
  .section-eyebrow {
    font-size: .72rem;
    padding: .3rem .72rem;
    padding-inline-start: 1.3rem;
    letter-spacing: .9px;
    max-width: 100%;
    white-space: normal;
    text-align: inherit;
  }
  [dir="rtl"] .section-eyebrow,
  [dir="rtl"] .section-eyebrow.reveal,
  [dir="rtl"] .section-eyebrow.reveal.visible {
    letter-spacing: 0;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
  }
  [dir="rtl"] .section-head .section-eyebrow {
    text-align: center;
  }
  .section-eyebrow::before {
    width: 5px;
    height: 5px;
    inset-inline-start: .52rem;
  }
  .features__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .about__visual { overflow: hidden; }
  .about__image-wrap {
    border-radius: 20px;
    aspect-ratio: auto !important;
    height: auto !important;
    overflow: visible;
  }
  .about__dash {
    margin: .5rem;
    padding: .6rem;
    max-height: none !important;
    overflow: visible !important;
  }
  .about__dash-main { gap: .5rem; }
  .about__accent {
    width: 104px;
    height: 104px;
    right: -8px;
    bottom: -8px;
    opacity: .45;
  }
  .about__ring--1 { width: 98%; height: 98%; }
  .about__ring--2 { width: 108%; height: 108%; }
  .how__command { padding: .85rem; border-radius: 15px; }
  .how__load-row { grid-template-columns: 70px 1fr; }
  .how__flow-item { align-items: flex-start; flex-direction: column; }
  .how__flow-item em { width: fit-content; }
  .about__dash-nav { max-height: 180px; }
  .about__dash-stats { grid-template-columns: 1fr 1fr; }
  .about__dash-tabs button { font-size: .6rem; }
  .about__dash-progress { width: 64px; }
  .about__dash-stat small { font-size: .62rem; }
  .about__dash-stat strong { font-size: .9rem; }
  .about__dash-chart svg { height: 72px; }
  .about__activity-item { font-size: .64rem; }
  /* Navbar ultra-small scaling */
  .nav-logo img { height: 28px; }
  .nav-actions { gap: 0.25rem; }
  .nav-login { padding: 0.3rem 0.6rem; font-size: 0.75rem; border-radius: 8px; }

  /* Lang button becomes icon-only on very small screens */
  .lang-btn { padding: 0.35rem; font-size: 0; background: transparent; color: var(--p0); gap: 0; }
  .lang-btn svg { width: 18px; height: 18px; margin: 0; }

  .mobile-toggle { padding: 0.15rem; }
  .mobile-toggle svg { width: 20px; height: 20px; }

  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.15; }
  .hero__desc { font-size: 1rem; }
  .hero__container { padding-top: 1rem; }
}

/* ── Hero hardening for tablets + phones (overrides) ── */
@media (max-width: 1024px) {
  .hero {
    align-items: center;
    padding-top: calc(var(--nav-h) + .75rem);
  }
  .hero__container {
    padding-top: 1rem;
    padding-bottom: 6.5rem;
  }
  .hero__inner { max-width: min(92%, 740px); }
  .hero__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
  .hero__desc { max-width: 62ch; }
}

@media (min-width: 1280px) {
  .hero__inner {
    max-width: 1120px;
  }
  .hero__title {
    font-size: clamp(2.2rem, 2.2vw + .6rem, 4.2rem);
    line-height: 1.05;
    letter-spacing: -1.4px;
  }
  .hero__desc {
    font-size: clamp(1.1rem, .45vw + .35rem, 1.2rem);
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .nav-container { height: 72px; }
  .header.scrolled .nav-container { height: 64px; }

  .hero {
    min-height: 100svh;
    padding-top: 72px;
  }
  .hero__container {
    padding-top: 1.25rem;
    padding-bottom: calc(4.2rem + env(safe-area-inset-bottom));
  }
  /* On portrait mobile, shift focal point up so landscape images show their subject prominently */
  .hero__bg-image { object-position: center 30%; }
  /* Force bg slides to cover 100% of the hero on mobile — prevent edge gaps */
  .hero__bg-slides,
  .hero__bg-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
  }
  .hero__bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover !important;
  }
  .hero__inner {
    max-width: min(96vw, 29rem);
    margin-inline: auto;
    align-items: center;
    text-align: center;
  }
  [dir="rtl"] .hero__inner {
    align-items: center;
    text-align: center;
  }
  .hero__badge {
    margin-bottom: 1rem;
    font-size: .68rem;
    letter-spacing: 1px;
  }
  .hero__title {
    margin-inline: auto;
    max-width: 21ch;
    font-size: clamp(1.3rem, 5.2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.4px;
  }
  .hero__desc {
    max-width: 92vw;
    margin-inline: auto;
    margin-bottom: .95rem;
    font-size: .9rem;
    line-height: 1.72;
    text-wrap: pretty;
  }
  .hero__desc--primary {
    font-size: .95rem;
    line-height: 1.74;
    font-weight: 600;
  }
  .hero__desc--secondary {
    font-size: .87rem;
    line-height: 1.68;
    color: rgba(255,255,255,.9);
  }
  .hero__desc-sep {
    margin: .85rem auto 1rem;
    width: min(90vw, 28ch);
  }
  .hero__actions {
    width: 100%;
    justify-content: center;
    gap: .55rem;
  }
  .hero__actions .btn {
    width: min(320px, 100%);
    padding: .76rem 1rem;
    font-size: .95rem;
  }
  .hero__indicators { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 68px; }
  .hero__container {
    padding-top: .8rem;
    padding-bottom: calc(3rem + env(safe-area-inset-bottom));
  }
  .hero__badge {
    font-size: .62rem;
    padding: .32rem .72rem;
  }
  .hero__title {
    max-width: 22ch;
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    line-height: 1.22;
    letter-spacing: -0.2px;
  }
  .hero__desc {
    max-width: 93vw;
    margin-bottom: .85rem;
    font-size: .84rem;
    line-height: 1.64;
    text-wrap: pretty;
  }
  .hero__desc--primary {
    font-size: .88rem;
    line-height: 1.68;
  }
  .hero__desc--secondary {
    font-size: .8rem;
    line-height: 1.6;
  }
  .hero__desc-sep {
    margin: .72rem auto .9rem;
    width: min(90vw, 27ch);
  }
  .hero__actions .btn {
    width: 100%;
    max-width: none;
    padding: .68rem .9rem;
    font-size: .9rem;
  }
  .hero__actions .btn svg { width: 16px; height: 16px; }
}

@media (max-width: 390px) {
  .hero__title {
    max-width: 24ch;
    font-size: clamp(1.05rem, 4.8vw, 1.38rem);
    line-height: 1.24;
  }
  .hero__desc {
    max-width: 92vw;
    font-size: .86rem;
    line-height: 1.7;
  }
  .hero__desc--primary { font-size: .9rem; }
  .hero__desc--secondary { font-size: .84rem; }
}

/* Short mobile heights (older iPhones / compact Android) */
@media (max-width: 768px) and (max-height: 820px) {
  .hero__badge { margin-bottom: .7rem; }
  .hero__title {
    font-size: clamp(1.15rem, 4.4vw, 1.52rem);
    line-height: 1.18;
    margin-bottom: .7rem;
  }
  .hero__desc { margin-bottom: .65rem; }
  .hero__desc--primary { font-size: .86rem; line-height: 1.62; }
  .hero__desc--secondary { font-size: .8rem; line-height: 1.56; }
  .hero__desc-sep { margin: .48rem auto .62rem; }
  .hero__actions .btn { padding: .62rem .82rem; font-size: .86rem; }
}

@media (max-width: 768px) and (max-height: 740px) {
  .hero__container { padding-top: .6rem; }
  .hero__title {
    font-size: clamp(1.05rem, 3.8vw, 1.3rem);
    line-height: 1.16;
    margin-bottom: .55rem;
  }
  .hero__desc--primary { font-size: .8rem; line-height: 1.5; }
  .hero__desc--secondary { font-size: .75rem; line-height: 1.45; }
  .hero__desc-sep {
    display: block;
    margin: .4rem auto .52rem;
    width: min(88vw, 26ch);
  }
  .hero__actions { gap: .45rem; }
  .hero__actions .btn { padding: .56rem .78rem; font-size: .82rem; }
}

/* Landscape phones */
@media (max-width: 932px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
    padding-top: 64px;
  }
  .hero__container {
    padding-top: .55rem;
    padding-bottom: calc(1.1rem + env(safe-area-inset-bottom));
  }
  .hero__title {
    max-width: 30ch;
    font-size: clamp(0.95rem, 2vw, 1.18rem);
    line-height: 1.14;
    margin-bottom: .35rem;
  }
  .hero__desc {
    max-width: min(92vw, 62ch);
    margin-bottom: .35rem;
  }
  .hero__desc--primary { font-size: .72rem; line-height: 1.4; }
  .hero__desc--secondary { font-size: .67rem; line-height: 1.36; }
  .hero__desc-sep {
    display: block;
    margin: .3rem auto .4rem;
    width: min(80vw, 34ch);
  }
  .hero__actions {
    flex-direction: row;
    gap: .45rem;
  }
  .hero__actions .btn {
    width: auto;
    min-width: 170px;
    font-size: .78rem;
    padding: .48rem .72rem;
  }
}

/* ── Final mobile hero overrides (readable + CTA visible) ── */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: 72px;
  }
  .hero__container {
    padding-top: 1rem;
    padding-bottom: calc(2.4rem + env(safe-area-inset-bottom));
  }
  .hero__inner {
    max-width: min(95vw, 33rem);
  }
  .hero__title {
    max-width: 100%;
    font-size: clamp(1.4rem, 5.2vw, 1.8rem);
    line-height: 1.18;
    margin-bottom: .85rem;
    letter-spacing: -0.25px;
  }
  .hero__desc {
    max-width: 92vw;
    margin-bottom: .8rem;
    font-size: clamp(.9rem, 2.4vw, 1rem);
    line-height: 1.68;
    text-wrap: pretty;
  }
  .hero__actions {
    gap: .55rem;
    margin-top: .2rem;
  }
  .hero__actions .btn {
    width: min(330px, 100%);
    padding: .74rem 1rem;
    font-size: .94rem;
  }
  .hero__indicators { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 68px; }
  .hero__container {
    padding-top: .72rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
  .hero__title {
    max-width: 100%;
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    line-height: 1.17;
    margin-bottom: .7rem;
  }
  .hero__desc {
    max-width: 93vw;
    margin-bottom: .65rem;
    font-size: clamp(.88rem, 2.2vw, .95rem);
    line-height: 1.64;
  }
  .hero__actions {
    gap: .5rem;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: none;
    padding: .68rem .9rem;
    font-size: .9rem;
  }
}

@media (max-width: 768px) and (max-height: 740px) {
  .hero__title {
    font-size: clamp(1.2rem, 4.4vw, 1.42rem);
    margin-bottom: .55rem;
  }
  .hero__desc {
    margin-bottom: .5rem;
    font-size: .88rem;
    line-height: 1.56;
  }
  .hero__actions .btn {
    padding: .6rem .85rem;
    font-size: .85rem;
  }
}

@media (max-width: 1024px) {
  .hero__desc-sep {
    display: block;
    margin: .7rem auto .85rem;
    width: min(90vw, 30ch);
  }
}

/* ── OSP DEMO SLIDER ENGINES ── */
.demo-slider-box {
  min-height: 520px;
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  --auth-green: var(--p2);
  --auth-green-mid: var(--p1);
  --auth-border: var(--g6);
  --auth-text: var(--p0);
  --auth-muted: var(--g4);
}

.demo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  background: #fff;
}
.demo-slide.active {
  opacity: 1; visibility: visible;
}

/* Auth Layout Mock */
.demo-auth-split {
  display: flex; width: 100%; height: 100%;
}

.demo-auth-brand {
    background: linear-gradient(148deg, var(--p0) 0%, var(--p1) 26%, var(--p2) 60%, var(--p4) 100%);
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    width: 40%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}
.demo-auth-brand-logo {
    width: 60%; height: auto; filter: brightness(0) invert(1);
    animation: fadeInScale 0.8s ease backwards;
}
.demo-auth-form-panel {
    flex: 1; padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; justify-content: center;
    background: #fff; position: relative;
    text-align: left;
}
[dir="rtl"] .demo-auth-form-panel { text-align: right; }
[dir="rtl"] .demo-auth-brand {
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 768px) {
  .demo-slider-box { min-height: 600px; }
  .demo-auth-split { flex-direction: column; }
  .demo-auth-brand {
    width: 100%; height: 120px;
    clip-path: none !important;
    padding: 1rem;
  }
  .demo-auth-brand-logo { width: 120px; }
  .demo-auth-form-panel { padding: 1.5rem; justify-content: flex-start; }
  .demo-srr-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .demo-slider-box { min-height: 540px; }
  .demo-auth-brand { height: 100px; }
  .demo-auth-brand-logo { width: 100px; }
  .demo-auth-form-panel { padding: 1.25rem; }
  .demo-sc-card { height: 100px; }
  .demo-srr-card { padding: 8px; gap: 4px; }
  .demo-srr-icon-wrap { width: 44px; height: 44px; }
  .demo-srr-icon-png { width: 30px; height: 30px; }
}

/* Real Card Mocks */
.demo-sc-list { display: flex; flex-direction: column; gap: 10px; margin-top: 0.8rem; width: 100%; }
.demo-sc-card {
    position: relative; height: 120px; border-radius: 12px; overflow: hidden;
    cursor: pointer; box-shadow: var(--sh-xs);
    border: 2px solid transparent; transition: all 0.3s ease;
}
.demo-sc-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
.demo-sc-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 75%); z-index: 2; }
.demo-sc-card-content { position: absolute; bottom: 10px; left: 15px; right: 15px; z-index: 3; color: #fff; }
.demo-sc-card-title {
    display: inline-block;
    margin: 0 0 6px;
    padding: 3px 10px;
    font-size: 15px;
    font-weight: 800;
    color: #ecfff1;
    background: rgba(8, 35, 20, 0.62);
    border: 1px solid rgba(140, 242, 175, 0.45);
    border-radius: 999px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
}
.demo-sc-card-loc { font-size: 11px; display: flex; align-items: center; gap: 5px; opacity: 0.9; }
.demo-sc-card--selected { border-color: var(--auth-green); transform: translateY(-3px); box-shadow: var(--sh-green); }

.demo-srr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 0.8rem; }
.demo-srr-card {
    position: relative; border: 1px solid var(--g6); border-radius: 16px; background: #fff;
    padding: 10px; display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: pointer; transition: all 0.3s ease; text-align: center;
}
.demo-srr-card--selected { border-color: var(--p2); background: var(--p5); box-shadow: var(--sh-sm); }
.demo-srr-icon-wrap { width: 50px; height: 50px; border-radius: 10px; background: var(--g8); display: flex; align-items: center; justify-content: center; color: var(--p1); }
.demo-srr-icon-png { width: 34px; height: 34px; object-fit: contain; }
.demo-srr-label { color: var(--p0); font-size: 13px; font-weight: 700; line-height: 1.1; }
.demo-srr-role-key { color: var(--g4); font-size: 9px; text-transform: uppercase; font-weight: 700; }

.auth-title {
    font-size: clamp(20px, 2.5vw, 24px); font-weight: 800; color: var(--p0);
    margin-bottom: 4px; line-height: 1.2;
}
.auth-subtitle {
    font-size: clamp(12px, 1.2vw, 14px); color: var(--g4);
    margin-bottom: 20px; line-height: 1.5;
}

.btn-osp {
    width: 100%; padding: 12px; border-radius: 10px; border: none;
    background: linear-gradient(135deg, var(--p1) 0%, var(--p2) 100%);
    color: #fff; font-weight: 700; font-size: 14px; cursor: pointer;
    box-shadow: var(--sh-green); transition: all 0.3s ease;
}
.btn-osp:hover { transform: translateY(-1px); box-shadow: var(--sh-green-lg); }

.form-label {
    display: block; font-size: 12px; font-weight: 700; color: var(--p0); margin-bottom: 6px;
}
.form-control {
    width: 100%; height: 38px; padding: 0 12px; border: 1.5px solid var(--g6);
    border-radius: 8px; background: #fff; font-size: 13px; color: var(--g0);
    display: flex; align-items: center; transition: border-color 0.3s;
}

/* Community Search Toolbar */
.demo-sc-toolbar {
    display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; width: 100%;
}
.demo-sc-search-wrap {
    flex: 1; position: relative;
}
.demo-sc-search-icon {
    position: absolute; top: 50%; left: 12px; transform: translateY(-50%);
    width: 14px; height: 14px; color: var(--g4); pointer-events: none;
}
[dir="rtl"] .demo-sc-search-icon { left: auto; right: 12px; }
.demo-sc-search-input {
    display: block; width: 100%; height: 36px; padding: 0 12px 0 34px;
    font-size: 12px; color: var(--p0); background: #fff;
    border: 1.5px solid var(--g6); border-radius: 10px; outline: none;
    transition: all 0.3s ease;
}
[dir="rtl"] .demo-sc-search-input { padding: 0 34px 0 12px; }
.demo-sc-search-input:focus { border-color: var(--p2); box-shadow: 0 0 0 3px rgba(38,140,67,0.1); }

.demo-sc-sort-btn {
    flex-shrink: 0; width: 36px; height: 36px; background: #fff;
    border: 1.5px solid var(--g6); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--g4); transition: all 0.3s;
}
.demo-sc-sort-btn:hover { border-color: var(--p2); color: var(--p2); }

/* Login Helpers */
.demo-check-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.demo-custom-check { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--auth-muted); cursor: pointer; }
.demo-custom-check input { accent-color: var(--p2); }
.demo-forgot-link { font-size: 11px; color: var(--p1); font-weight: 700; cursor: pointer; }

/* Role Back Button & Labels */
.demo-srr-back-btn {
    width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--g6);
    display: flex; align-items: center; justify-content: center; color: var(--p0);
    background: #fff; transition: all 0.3s;
}
.demo-srr-back-btn:hover { background: var(--g8); transform: scale(1.05); }
.demo-srr-top-label {
    font-size: 9px; font-weight: 800; color: var(--p1);
    text-transform: uppercase; letter-spacing: 0.8px;
}

/* Dashboard Slide Layout */
.demo-slide--dashboard { background: var(--bg); flex-direction: column; padding: 1.25rem; overflow-y: auto; }

@keyframes fadeInScale { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   HERO REFERENCE MATCH (exact image + layout)
   ============================================================ */
.hero.hero--ref {
  --hero-slide-duration: 14000ms;
  min-height: 100svh;
  padding-top: var(--nav-h);
  align-items: flex-end;
}

.hero.hero--ref .hero__bg-image {
  object-fit: cover;
  object-position: center 48%;
  animation: none !important;
  transform: scale(1) translateZ(0) !important;
}

.hero.hero--ref .hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .26) 46%, rgba(0, 0, 0, .12) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .46) 0%, rgba(0, 0, 0, .20) 48%, rgba(0, 0, 0, .10) 100%);
}

.hero.hero--ref .hero__container {
  width: 100%;
  padding-top: 0;
  padding-bottom: 7rem;
  position: relative;
  z-index: 3;
}

.hero.hero--ref .hero__content-panel {
  width: min(100%, 1600px);
  background: rgba(18, 18, 18, .62);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2px;
  padding: 1.1rem 1.25rem .9rem;
  box-shadow: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero.hero--ref .hero__inner {
  max-width: 100%;
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
  z-index: 1;
}

[dir="rtl"] .hero.hero--ref .hero__inner {
  text-align: right;
}

.hero.hero--ref .hero__badge,
.hero.hero--ref .hero__desc-sep,
.hero.hero--ref .hero__desc--secondary {
  display: none;
}

.hero.hero--ref .hero__title {
  margin: 0 0 1rem;
  max-width: 24ch;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4.9rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.4px;
  text-shadow: none;
  text-wrap: balance;
  filter: none !important;
  mix-blend-mode: normal !important;
  -webkit-text-stroke: 0 transparent !important;
}

.hero.hero--ref .hero__title,
.hero.hero--ref .hero__desc-block,
.hero.hero--ref .hero__actions {
  animation: none !important;
  transform: none !important;
}

.hero.hero--ref .hero__meta-row {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.hero.hero--ref .hero__desc-block {
  flex: 1 1 60%;
  max-width: min(68ch, 100%);
  margin-bottom: 0;
}

.hero.hero--ref .hero__desc--primary {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(1rem, 1.05vw, 1.22rem);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: none;
  filter: none !important;
  mix-blend-mode: normal !important;
  -webkit-text-stroke: 0 transparent !important;
}

.hero.hero--ref .hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .95rem;
  width: auto;
  flex: 0 0 auto;
}

[dir="rtl"] .hero.hero--ref .hero__actions {
  justify-content: flex-start;
}

.hero.hero--ref .hero__actions .btn {
  min-width: 250px;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero.hero--ref .hero__actions .btn--primary {
  background: #149848;
  border-color: transparent;
  box-shadow: none;
}

.hero.hero--ref .hero__actions .btn--hero-ghost {
  background: rgba(39, 26, 20, .72);
  border: 1.5px solid rgba(255, 255, 255, .16);
  color: #fff !important;
  box-shadow: none;
}

.hero.hero--ref .hero__actions .btn--hero-ghost:hover {
  background: rgba(39, 26, 20, .84);
}

.hero.hero--ref .hero__indicators {
  position: static;
  transform: none;
  margin-top: .65rem;
  justify-content: center;
  display: none;
}

.hero.hero--ref .hero__indicator {
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
}

.hero.hero--ref .hero__indicator--active {
  width: 112px;
  background: rgba(255, 255, 255, .95);
  box-shadow: none;
}

.hero.hero--ref .hero__bottom-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  background: #005220;
  padding: 1.35rem 0;
}

.hero.hero--ref .hero__bottom-banner-text {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(1.04rem, .88vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .hero.hero--ref {
    padding-top: 72px;
  }
  .hero.hero--ref .hero__container {
    padding-bottom: 6rem;
  }
  .hero.hero--ref .hero__content-panel {
    padding: 1rem .95rem .85rem;
  }
  .hero.hero--ref .hero__title {
    max-width: 100%;
    font-size: clamp(1.8rem, 5.2vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: .8rem;
  }
  .hero.hero--ref .hero__meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }
  .hero.hero--ref .hero__desc-block {
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
    margin-bottom: 0;
  }
  .hero.hero--ref .hero__desc--primary {
    font-size: .95rem;
    line-height: 1.55;
  }
  .hero.hero--ref .hero__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .6rem;
    width: 100%;
  }
  [dir="rtl"] .hero.hero--ref .hero__actions {
    justify-content: flex-end;
  }
  .hero.hero--ref .hero__actions .btn {
    min-width: 210px;
    padding: .82rem 1.2rem;
    font-size: .95rem;
  }
  .hero.hero--ref .hero__indicator {
    width: 56px;
  }
  .hero.hero--ref .hero__indicator--active {
    width: 90px;
  }
}

@media (max-width: 640px) {
  .hero.hero--ref .hero__container {
    padding-bottom: 5.1rem;
  }
  .hero.hero--ref .hero__bg-image {
    object-position: center 40%;
  }
  .hero.hero--ref .hero__title {
    font-size: clamp(1.35rem, 6.1vw, 2rem);
  }
  .hero.hero--ref .hero__desc--primary {
    font-size: .9rem;
  }
  .hero.hero--ref .hero__actions .btn {
    min-width: 0;
    width: 100%;
  }
  .hero.hero--ref .hero__bottom-banner {
    padding: 1rem 0;
  }
  .hero.hero--ref .hero__bottom-banner-text {
    font-size: .92rem;
    line-height: 1.55;
  }
}
