/* ==========================================================================
   مركز نيلوفر الرائد — نظام التصميم
   Nelover Leading Center — Design System
   ========================================================================== */

:root {
  /* Brand colors (from profile) */
  --navy: #092B61;
  --red: #E31D2B;
  --dark-navy: #11223C;
  --steel: #58677B;
  --warm-bg: #F6F3ED;
  --light-blue: #D9E3F0;
  --mid-gray: #CBD5DF;
  --light-gray: #E9EEF3;
  --white: #FFFFFF;

  /* Derived tokens */
  --navy-900: #061e45;
  --navy-700: #0d3576;
  --red-600: #c5121f;
  --ink: #11223C;
  --ink-soft: #3a4a63;
  --muted: #5b6a7e;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(9, 43, 97, .06), 0 2px 6px rgba(9, 43, 97, .05);
  --shadow: 0 8px 24px rgba(9, 43, 97, .10);
  --shadow-lg: 0 20px 50px rgba(9, 43, 97, .16);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

/* -------------------------------------------------------------------------- */
/* Reset                                                                      */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: 92px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
::selection { background: var(--red); color: #fff; }

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                             */
/* -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--warm { background: var(--warm-bg); }
.section--navy { background: var(--navy); color: #dfe7f2; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--tight { padding-block: clamp(40px, 5vw, 70px); }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Section heading block */
.sec-head { max-width: 760px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; letter-spacing: .06em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.sec-head p { color: var(--muted); font-size: clamp(16px, 2vw, 19px); }
.section--navy .sec-head p { color: #b9c6dc; }
.section--navy .eyebrow { color: #ff6b76; }
.section--navy .eyebrow::before { background: #ff6b76; }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 16px; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(227, 29, 43, .28); }
.btn--primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(227, 29, 43, .34); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--mid-gray); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--on-dark { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn--on-dark:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* Text link with arrow */
.link-more { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-weight: 600; font-size: 15px; transition: gap .25s var(--ease); }
.link-more:hover { gap: 12px; }
.link-more svg { width: 15px; height: 15px; transform: scaleX(-1); }

/* -------------------------------------------------------------------------- */
/* Header / Nav                                                               */
/* -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 4px 20px rgba(9, 43, 97, .08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 48px; width: auto; }
.nav__logo-dark { display: none; }          /* اللوجو الملوّن يظهر بعد التمرير */
.site-header.scrolled .nav__logo-light { display: none; }
.site-header.scrolled .nav__logo-dark { display: inline-block; }

/* Transparent header over the hero (top of page) */
.site-header:not(.scrolled) .nav__toggle span { background: #fff; }
@media (min-width: 981px) {
  .site-header:not(.scrolled) .nav__links a { color: rgba(255, 255, 255, .9); }
  .site-header:not(.scrolled) .nav__links a:hover { color: #fff; background: rgba(255, 255, 255, .12); }
  .site-header:not(.scrolled) .nav__links a.active { color: #fff; }
  .site-header:not(.scrolled) .nav__cta .lang-switch { color: #fff; border-color: rgba(255, 255, 255, .42); }
  .site-header:not(.scrolled) .nav__cta .lang-switch:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, .14); }
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 15px; border-radius: 8px; font-size: 15.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--navy); background: var(--light-gray); }
.nav__links a.active { color: var(--navy); font-weight: 600; }
.nav__links a.active::after {
  content: ""; position: absolute; inset-inline: 15px; bottom: 2px; height: 2px;
  background: var(--red); border-radius: 2px;
}
.nav__links > .btn { display: none; } /* CTA داخل القائمة يظهر في الموبايل فقط */
.nav__cta { display: flex; align-items: center; gap: 12px; }

/* Language switch */
.lang-switch {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--navy); border: 1.5px solid var(--mid-gray);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.lang-switch svg { width: 16px; height: 16px; }
.lang-switch:hover { border-color: var(--red); color: var(--red); background: var(--warm-bg); }
.nav__links > .lang-switch { display: none; } /* داخل قائمة الموبايل فقط */
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 24px 28px; gap: 2px; border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease); max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav__links.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 12px; font-size: 17px; }
  .nav__links a.active::after { display: none; }
  .nav__links > .lang-switch { display: inline-flex; margin-top: 14px; align-self: flex-start; }
  .nav__cta .lang-switch { display: none; }
  .nav__links > .btn { display: inline-flex; margin-top: 10px; }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 85% 0%, #0e3a7d 0%, var(--navy) 42%, var(--navy-900) 100%);
  color: #fff;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; min-height: clamp(520px, 72vh, 720px); padding-block: 70px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; letter-spacing: .04em;
  color: #ff8a92; background: rgba(227, 29, 43, .14); border: 1px solid rgba(227, 29, 43, .3);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { color: #fff; font-size: clamp(32px, 5.2vw, 58px); line-height: 1.15; margin-bottom: 22px; }
.hero h1 .accent { color: #ff6b76; }
.hero__slogan { font-size: clamp(16px, 2.2vw, 21px); color: #c6d3e8; margin-bottom: clamp(18px, 2.6vh, 30px); max-width: 560px; }
.hero__slogan b { color: #fff; font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat .num { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: #fff; line-height: 1; }
.hero__stat .num .plus { color: #ff6b76; }
.hero__stat .lbl { font-size: 14.5px; color: #a8bad6; margin-top: 8px; }
.hero__map { position: relative; }
.hero__map img { filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); opacity: .96; }
.hero__map::after {
  content: ""; position: absolute; inset: -10% -6%; z-index: -1;
  background: radial-gradient(circle at center, rgba(227,29,43,.16), transparent 62%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; }
.hero__glow--1 { width: 380px; height: 380px; background: rgba(227,29,43,.22); top: -120px; inset-inline-start: -80px; }
.hero__glow--2 { width: 460px; height: 460px; background: rgba(30,90,190,.35); bottom: -180px; inset-inline-end: -120px; }
.hero > .container { position: relative; z-index: 2; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero__tag, .hero__actions, .hero__stats { justify-content: center; }
  .hero__slogan { margin-inline: auto; }
  .hero__map { max-width: 380px; margin-inline: auto; order: -1; }
  .hero__stats { gap: 28px; }
}

/* ---- Hero slider (carousel) ---- */
.hero { min-height: 100vh; min-height: 100svh; display: flex; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__map-bg {
  position: absolute; z-index: 0; inset-inline-end: -3%; top: 50%; transform: translateY(-50%);
  width: min(50%, 600px); opacity: .12; pointer-events: none; filter: none;
}
.hero > .container { position: relative; z-index: 2; display: flex; flex-direction: column; padding-top: calc(76px + clamp(14px, 2.5vh, 34px)); padding-bottom: clamp(20px, 3.5vh, 40px); width: 100%; }
.hero__body { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; min-height: 0; }
.hero-slider { display: grid; }
.hero-slide {
  grid-area: 1 / 1; max-width: 700px;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), visibility .7s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: none; }
.hero-slide .hero__actions { margin-bottom: 0; }
.hero__controls { display: flex; align-items: center; gap: 16px; margin-top: clamp(18px, 3vh, 34px); }
.hero__dots { display: flex; gap: 8px; }
.hero__dot { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.3); transition: width .3s var(--ease), background .3s var(--ease); }
.hero__dot.is-active { width: 28px; background: var(--red); }
.hero__nav {
  width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.32); color: #fff;
  display: grid; place-items: center; transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__nav:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }
.hero__nav svg { width: 18px; height: 18px; }
.hero__stats {
  margin-top: clamp(16px, 3vh, 36px); padding-top: clamp(18px, 2.5vh, 30px); border-top: 1px solid rgba(255,255,255,.14);
  display: flex; gap: clamp(24px, 5vw, 58px); flex-wrap: wrap; flex: none;
}
@media (max-width: 860px) {
  .hero__map-bg { opacity: .06; width: 82%; inset-inline-end: -10%; }
  .hero-slide { max-width: none; }
  .hero__controls { justify-content: center; }
}

/* -------------------------------------------------------------------------- */
/* Cards & grids                                                              */
/* -------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--light-gray); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--light-blue); }
.card__num { font-size: 14px; font-weight: 700; color: var(--red); letter-spacing: .1em; margin-bottom: 14px; display: block; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-700)); color: #fff; margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__list { margin-top: 16px; display: grid; gap: 9px; }
.card__list li { position: relative; padding-inline-start: 22px; font-size: 15px; color: var(--ink-soft); }
.card__list li::before { content: ""; position: absolute; inset-inline-start: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* Service card variant with top accent */
.service-card { padding-top: 34px; }
.service-card::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--navy)); border-radius: var(--radius) var(--radius) 0 0; transform: scaleX(0); transform-origin: inline-end; transition: transform .35s var(--ease); }
.service-card:hover::before { transform: scaleX(1); }

/* Stat tiles */
.stat-tile { text-align: center; padding: 30px 20px; }
.stat-tile .num { font-size: clamp(32px, 4vw, 46px); font-weight: 700; color: var(--navy); line-height: 1; }
.stat-tile .num .plus, .stat-tile .num .pct { color: var(--red); }
.stat-tile .lbl { color: var(--muted); font-size: 15px; margin-top: 10px; }
/* الـ + يظل دائمًا على يسار الرقم في الاتجاهين */
.num { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .hero__stat .num, [dir="rtl"] .stat-tile .num { text-align: right; }
.section--navy .stat-tile .num { color: #fff; }
.section--navy .stat-tile .lbl { color: #a8bad6; }

/* Value / chip pills */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px;
  background: #fff; border: 1px solid var(--mid-gray); font-weight: 600; font-size: 15px; color: var(--navy);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.chip:hover { transform: translateY(-3px); border-color: var(--red); }
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.section--warm .chip { background: #fff; }
.section--navy .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }

/* -------------------------------------------------------------------------- */
/* Page hero (inner pages)                                                    */
/* -------------------------------------------------------------------------- */
.page-hero {
  background: radial-gradient(120% 140% at 88% -20%, #0e3a7d 0%, var(--navy) 48%, var(--navy-900) 100%);
  color: #fff; padding-top: calc(clamp(56px, 8vw, 96px) + 66px); padding-bottom: clamp(56px, 8vw, 96px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: radial-gradient(circle at 15% 120%, rgba(227,29,43,.18), transparent 45%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 48px); margin-bottom: 16px; }
.page-hero p { color: #c6d3e8; font-size: clamp(16px, 2vw, 20px); max-width: 680px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #9db1d1; margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #ff8a92; }

/* -------------------------------------------------------------------------- */
/* Feature row (image + text)                                                 */
/* -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split--reverse { direction: ltr; }
.split--reverse > * { direction: rtl; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* Numbered / bordered list block */
.feature-list { display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .fi-num {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--light-blue); color: var(--navy); font-weight: 700; font-size: 15px;
}
.feature-list .fi-body h4 { font-size: 17px; margin-bottom: 4px; }
.feature-list .fi-body p { color: var(--muted); font-size: 15px; }

/* -------------------------------------------------------------------------- */
/* Process / methodology steps                                                */
/* -------------------------------------------------------------------------- */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 26px 22px;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__no { font-size: 30px; font-weight: 800; color: var(--light-blue); line-height: 1; margin-bottom: 12px; }
.step:hover .step__no { color: var(--red); }
.step h4 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.step .en { font-size: 13px; letter-spacing: .05em; color: var(--red); font-weight: 600; text-transform: uppercase; margin-bottom: 8px; display: block; }
.step p { font-size: 14.5px; color: var(--muted); }

/* Horizontal flow */
.flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; }
.flow__node {
  flex: 1 1 150px; background: #fff; border: 1px solid var(--light-gray); border-radius: var(--radius-sm);
  padding: 18px 20px; text-align: center; position: relative; font-weight: 600; color: var(--navy); font-size: 15.5px;
}
.flow__arrow { display: grid; place-items: center; color: var(--red); font-size: 22px; flex: none; }
.section--warm .flow__node { background: #fff; }
@media (max-width: 620px) { .flow__arrow { transform: rotate(90deg); } .flow { flex-direction: column; } }

/* -------------------------------------------------------------------------- */
/* Equation banner                                                            */
/* -------------------------------------------------------------------------- */
.equation { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; font-weight: 700; }
.equation .term { padding: 12px 22px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; font-size: clamp(15px, 2vw, 18px); }
.equation .op { color: #ff6b76; font-size: 22px; }
.equation .result { background: var(--red); border-color: var(--red); box-shadow: 0 8px 24px rgba(227,29,43,.35); }

/* -------------------------------------------------------------------------- */
/* Logos / partners                                                           */
/* -------------------------------------------------------------------------- */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.logo-item {
  background: #fff; border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 24px 20px;
  display: flex; align-items: center; gap: 14px; min-height: 92px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.logo-item .badge { flex: none; width: 44px; height: 44px; border-radius: 10px; background: var(--warm-bg); display: grid; place-items: center; color: var(--navy); }
.logo-item .badge svg { width: 24px; height: 24px; }
.logo-item span { font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.4; }

/* Featured strategic partner */
.partner-feature {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 44px);
  background: linear-gradient(120deg, var(--warm-bg), #fff);
  border: 1px solid var(--mid-gray); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px); max-width: 900px; margin-inline: auto;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.partner-feature::before { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: 5px; background: linear-gradient(var(--navy), var(--red)); }
.partner-feature__badge {
  flex: none; width: 130px; height: 130px; border-radius: 18px; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 24px; letter-spacing: .12em;
  box-shadow: var(--shadow); text-align: center;
}
.partner-feature__body h3 { font-size: clamp(19px, 2.4vw, 24px); margin-bottom: 10px; }
.partner-feature__body p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
@media (max-width: 620px) { .partner-feature { flex-direction: column; text-align: center; } .partner-feature__badge { width: 110px; height: 110px; } }

/* Sector grid */
.sector { text-align: center; padding: 28px 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--light-gray); transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); }
.sector:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sector__ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px; background: var(--light-blue); color: var(--navy); display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease); }
.sector:hover .sector__ic { background: var(--red); color: #fff; }
.sector__ic svg { width: 28px; height: 28px; }
.sector h4 { font-size: 16px; color: var(--navy); margin-bottom: 3px; }
.sector .en { font-size: 12.5px; color: var(--steel); letter-spacing: .04em; }

/* -------------------------------------------------------------------------- */
/* CTA band                                                                   */
/* -------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-band::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(227,29,43,.22); filter: blur(80px); top: -140px; inset-inline-start: -60px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.cta-band p { color: #c6d3e8; max-width: 600px; margin: 0 auto 30px; font-size: clamp(16px, 2vw, 18px); }
.cta-band .hero__actions { justify-content: center; margin-bottom: 0; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer { background: var(--dark-navy); color: #a8bad6; padding-block: 60px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 46px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; color: #8ea3c4; max-width: 320px; }
.footer__slogan { color: #ff8a92; font-weight: 600; margin-top: 14px; font-size: 14px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14.5px; color: #a8bad6; transition: color .2s var(--ease); }
.footer ul a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 14px; }
.footer__contact svg { width: 18px; height: 18px; flex: none; color: #ff8a92; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 13.5px; color: #7f95b8; }
.footer__bottom .cr strong { color: #cdd9ec; font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Forms                                                                      */
/* -------------------------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; color: var(--navy); margin-bottom: 8px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--mid-gray); border-radius: 10px; background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(9,43,97,.12); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: #e8f6ee; border: 1px solid #a8dcbe; color: #1c6b3d; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; font-size: 15px; }
.form-success.show { display: block; }
.form-error { display: none; background: #fdecec; border: 1px solid #f2b8b8; color: #a12020; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; font-size: 15px; }
.form-error.show { display: block; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Contact info blocks */
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.info-item__ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--light-blue); color: var(--navy); display: grid; place-items: center; }
.info-item__ic svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 16px; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--muted); font-size: 15px; }
.info-item a:hover { color: var(--red); }

/* -------------------------------------------------------------------------- */
/* Misc                                                                        */
/* -------------------------------------------------------------------------- */
.quote-block { border-inline-start: 4px solid var(--red); padding-inline-start: 24px; font-size: clamp(18px, 2.4vw, 24px); line-height: 1.7; color: var(--navy); font-weight: 500; }
.section--navy .quote-block { color: #fff; border-color: #ff6b76; }

.pill-note { display: inline-flex; align-items: center; gap: 8px; background: var(--warm-bg); border: 1px solid var(--mid-gray); border-radius: 999px; padding: 6px 16px; font-size: 13.5px; color: var(--steel); }

.divider-note { font-size: 13px; color: var(--steel); font-style: italic; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------------------- */
/* LTR (English) direction adjustments                                        */
/* -------------------------------------------------------------------------- */
[dir="ltr"] .link-more svg { transform: none; }
[dir="ltr"] body { letter-spacing: normal; }
[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3, [dir="ltr"] h4 { letter-spacing: -.015em; }

/* Accessibility: skip link + focus */
.skip-link { position: absolute; inset-inline-start: -999px; top: 8px; z-index: 200; background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 8px; }
.skip-link:focus { inset-inline-start: 8px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }
