/* =========================================================
   Al-Janoub Takaful Insurance — Main Stylesheet
   Organized: Variables → Reset → Layout → Components →
              Page-specific → Dark mode → Responsive
   ========================================================= */

/* ==========================================================
   1. DESIGN TOKENS
   ========================================================== */
:root {
  /* Brand palette */
  --teal:              #178d77;
  --teal-dark:         #0e6354;
  --teal-deep:         #0a3d34;
  --fresh-green:       #83c541;
  --fresh-green-light: #a9d97a;
  --gold:              #d4af37;

  /* Light theme surfaces */
  --bg:          #f6faf8;
  --bg-alt:      #eef6f2;
  --surface:     #ffffff;
  --surface-alt: #f1f7f4;
  --text:        #0e2c25;
  --text-muted:  #4d6b62;
  --border:      #dfeae5;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, var(--fresh-green) 0%, var(--teal) 55%, var(--teal-dark) 100%);
  --grad-section: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
  --grad-card:    linear-gradient(160deg, rgba(23,141,119,0.06) 0%, rgba(131,197,65,0.06) 100%);
  --grad-cta:     linear-gradient(120deg, var(--teal-deep) 0%, var(--teal) 100%);

  /* Typography */
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Inter', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Radius & shadow */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 10px rgba(14,44,37,0.06);
  --shadow-md:   0 10px 30px rgba(14,44,37,0.08);
  --shadow-lg:   0 20px 60px rgba(14,44,37,0.12);

  --header-height: 80px;
  --transition:    0.25s ease;
}

/* ==========================================================
   2. DARK THEME TOKENS
   ========================================================== */
[data-theme="dark"] {
  --bg:          #0a1c18;
  --bg-alt:      #0e2620;
  --surface:     #102822;
  --surface-alt: #143229;
  --text:        #eaf6f1;
  --text-muted:  #9fc2b8;
  --border:      #1d3e35;

  --grad-hero:    linear-gradient(135deg, #2f5e2e 0%, #14564a 55%, #0a2b24 100%);
  --grad-section: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  --grad-card:    linear-gradient(160deg, rgba(23,141,119,0.12) 0%, rgba(131,197,65,0.08) 100%);
  --grad-cta:     linear-gradient(120deg, #0a3d34 0%, #178d77 100%);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

/* ==========================================================
   3. RESET & BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-en);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

[dir="rtl"] body { font-family: var(--font-ar); }

img, svg, video { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.25; }
p { margin: 0; }
section { position: relative; }

/* Focus accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--fresh-green);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ==========================================================
   4. LAYOUT UTILITIES
   ========================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.section      { padding-block: clamp(56px, 8vw, 96px); }
.section--alt { background: var(--grad-section); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-6);
}
[dir="rtl"] .section-head,
[dir="ltr"] .section-head { margin-inline-start: 0; }

.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin-bottom: var(--space-3); }
.section-head p  { color: var(--text-muted); font-size: 1.05rem; }

/* Section head — centered variant */
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-head--center .eyebrow { justify-content: center; }

/* Section head — constrained centered */
.section-head--center-sm {
  text-align: center;
  margin-inline: auto;
  max-width: 680px;
}
.section-head--center-sm .eyebrow { justify-content: center; }

/* Two-column grid */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

/* Generic grids */
.grid   { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================
   5. EYEBROW / LABEL
   ========================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-2);
}

[dir="rtl"] .eyebrow { letter-spacing: 0; text-transform: none; }

.eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fresh-green);
  border-radius: var(--radius-pill);
}

/* ==========================================================
   6. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover { background: var(--teal); color: #fff; }

/* Hero primary — brand green pill */
.hero-actions .btn--primary,
.hero-actions .btn:first-child {
  background: #74bd48 !important;
  border-color: #74bd48 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  height: auto;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(116,189,72,0.22);
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.hero-actions .btn--primary:hover,
.hero-actions .btn:first-child:hover {
  background: #68ad3f !important;
  border-color: #68ad3f !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(116,189,72,0.28);
}
.hero-actions .btn--primary:active,
.hero-actions .btn:first-child:active { transform: scale(0.98); }

.hero-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ==========================================================
   7. HEADER
   ========================================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

/* Home page — transparent until scrolled */
.home-page .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.home-page .site-header:not(.is-scrolled) .brand,
.home-page .site-header:not(.is-scrolled) .main-nav a,
.home-page .site-header:not(.is-scrolled) .lang-switch button { color: #fff; }

.home-page .site-header:not(.is-scrolled) .icon-btn {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}
.home-page .site-header:not(.is-scrolled) .icon-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.home-page .site-header:not(.is-scrolled) .hamburger { border-color: rgba(255,255,255,0.35); }
.home-page .site-header:not(.is-scrolled) .hamburger span { background: #fff; }
.home-page .site-header:not(.is-scrolled) .hamburger:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
}

.home-page .site-header.is-scrolled {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Brand / logo */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
}
.brand img { height: 42px; width: auto; }

/* Logo dark/light swap */
.logo-dark { display: none; }

[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark  { display: inline-block; }

.home-page .site-header:not(.is-scrolled) .logo-light { display: none; }
.home-page .site-header:not(.is-scrolled) .logo-dark  { display: inline-block; }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: var(--space-5); }
.main-nav ul { display: flex; gap: 14px; }

.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-muted);
  padding: 8px 2px;
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--fresh-green);
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}
.main-nav a:hover        { color: var(--teal); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active        { color: var(--teal); }
.main-nav a.active::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--space-3); }

/* Icon button (theme toggle) */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(23,141,119,0.22);
  background: color-mix(in srgb, var(--teal) 7%, var(--surface));
  backdrop-filter: blur(6px);
  color: var(--teal);
  transition: background 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease, transform 0.3s ease;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover {
  background: color-mix(in srgb, var(--teal) 14%, var(--surface));
  border-color: var(--fresh-green);
  box-shadow: 0 0 18px rgba(131,197,65,0.22);
  transform: scale(1.1);
}

/* Moon icon — hidden by default; JS swaps visibility */
.icon-moon { display: none; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-weight: 700;
  font-size: 0.85rem;
}
.lang-switch button {
  padding: 8px 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.lang-switch button.active { background: var(--teal); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.14);
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}
.hamburger:hover { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.25); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: var(--radius-pill);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================
   8. HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-8);
  background-image: url('../imge/hero.avif');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-content .eyebrow       { color: rgba(255,255,255,0.85); }
.hero-content .eyebrow::before { background: #fff; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: var(--space-3);
}
.hero .subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin-bottom: var(--space-5);
  line-height: 2;
  font-weight: 400;
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--header-height) + var(--space-7));
  padding-bottom: var(--space-7);
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, #83C541 0%, #15A5A9 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  background-image: url('../imge/hero1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 50px;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
}
.page-hero .eyebrow        { color: rgba(255,255,255,0.85); justify-content: center; }
.page-hero .eyebrow::before { background: #fff; }
.page-hero h1  { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: var(--space-3); text-align: center; margin-inline: auto; }
.page-hero > .container > p { color: rgba(255,255,255,0.9); max-width: 760px; margin-inline: auto; font-size: 1.05rem; text-align: center; }

/* Page-hero CTA buttons (investors, sustainability) */
.page-hero .hero-actions {
  justify-content: center;
  margin-top: var(--space-5);
}

/* ==========================================================
   9. CARDS
   ========================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal); }

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--grad-card);
  color: var(--teal);
  margin-bottom: var(--space-4);
  margin-inline: auto;
  flex-shrink: 0;
}
.card-icon svg { width: 28px; height: 28px; stroke-width: 2.4; display: block; overflow: visible; }
.card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); text-align: center; }
.card p  { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; text-align: center; line-height: 1.75; }

/* Vision & Mission cards (RTL) */
[dir="rtl"] .section--vm .card           { align-items: flex-start; text-align: right; }
[dir="rtl"] .section--vm .card h3,
[dir="rtl"] .section--vm .card p         { text-align: right; }
[dir="rtl"] .section--vm .card-icon      { margin-inline: 0; }

/* Vision & Mission cards (LTR) */
[dir="ltr"] .section--vm .card           { align-items: flex-start; text-align: left; }
[dir="ltr"] .section--vm .card h3,
[dir="ltr"] .section--vm .card p         { text-align: left; }
[dir="ltr"] .section--vm .card-icon      { margin-inline: 0; }

/* Principle cards */
.principle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.principle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.principle-card .card-icon { margin-bottom: var(--space-4); margin-inline: auto; }
.principle-card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); text-align: center; }
.principle-card p  { font-size: 0.92rem; color: var(--text-muted); margin: 0; text-align: center; line-height: 1.7; }

/* Advantage cards */
.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.advantage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.advantage-card .card-icon { margin-bottom: var(--space-4); margin-inline: auto; }
.advantage-card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); text-align: center; }
.advantage-card p  { font-size: 0.92rem; color: var(--text-muted); margin: 0; text-align: center; line-height: 1.7; }

/* ==========================================================
   10. CTA BAND
   ========================================================== */
.cta-band {
  background: var(--grad-cta);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--space-3); position: relative; z-index: 1; }
.cta-band p  { color: rgba(255,255,255,0.9); margin-bottom: var(--space-5); max-width: 560px; margin-inline: auto; position: relative; z-index: 1; }
.cta-band .hero-actions { justify-content: center; position: relative; z-index: 1; }

/* ==========================================================
   11. ABOUT / IMAGE WRAPPERS
   ========================================================== */
.about-image,
.claims-image {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  aspect-ratio: 1 / 0.72;
  height: auto;
  border-radius: 36px;
  overflow: hidden;
  background: var(--surface-alt);
}
.about-image__img,
.claims-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================================
   12. BADGE & MISC
   ========================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--grad-card);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: var(--space-3);
}

/* ==========================================================
   14. CONTACT PAGE
   ========================================================== */
.contact-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.contact-action-card {
  border-radius: 28px;
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}
.contact-action-card--dark {
  background: var(--grad-cta);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-action-card--dark::before {
  content: '';
  position: absolute;
  top: -60px;
  inset-inline-end: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.contact-action-card--light { background: var(--surface); border: 1px solid var(--border); }

.cac-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.contact-action-card--dark  .cac-icon { background: rgba(255,255,255,0.14); color: #fff; }
.contact-action-card--light .cac-icon { background: var(--grad-card); border: 1.5px solid rgba(23,141,119,0.2); color: var(--teal); }
.cac-icon svg { width: 36px; height: 36px; }

.cac-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  position: relative;
  z-index: 1;
}
.contact-action-card--dark  .cac-label { color: rgba(255,255,255,0.7); }
.contact-action-card--light .cac-label { color: var(--teal); }

.cac-value {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.contact-action-card--dark  .cac-value { color: #fff; }
.contact-action-card--light .cac-value { color: var(--teal-deep); word-break: break-all; }

.cac-btn {
  background: #fff;
  color: var(--teal-deep);
  border-color: transparent;
  margin-top: var(--space-2);
  position: relative;
  z-index: 1;
}
.cac-btn:hover { background: var(--fresh-green); color: #fff; }

.cac-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: var(--radius-pill);
  padding: 0 28px;
  height: 48px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  margin-top: var(--space-2);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.cac-btn-outline:hover { background: var(--teal); color: #fff; }

/* ==========================================================
   14b. CONTACT PAGE — MAP CARD
   ========================================================== */
.map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.map-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  text-align: center;
  margin-inline: auto;
}
.map-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-card);
  border: 1.5px solid rgba(23,141,119,0.2);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-inline: auto;
}
.map-card__icon svg { width: 30px; height: 30px; }
.map-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.map-card__title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.4; margin: 0; text-align: center; }
.map-card__desc  { color: var(--text-muted); line-height: 1.9; margin: 14px 0 0; max-width: 480px; text-align: center; margin-inline: auto; }
.map-card__address {
  font-style: normal;
  font-weight: 600;
  line-height: 1.9;
  color: var(--text);
  margin: 14px 0 0;
  text-align: center;
  margin-inline: auto;
  max-width: 480px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .map-card__address { white-space: normal; }
}
.map-card__btn {
  align-self: center;
  background: #72BE44;
  border-color: #72BE44;
  color: #fff;
}
.map-card__btn:hover {
  background: #63A93A;
  border-color: #63A93A;
}

.map-embed {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }

@media (max-width: 768px) {
  .map-card { padding: var(--space-5) var(--space-4); }
}

@media (max-width: 640px) {
  .map-embed { height: 300px; border-radius: 20px; }
}

/* ==========================================================
   15. SOLUTIONS PAGE — CARD ROWS
   ========================================================== */
.solutions-rows { display: flex; flex-direction: column; gap: 28px; }

.solutions-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.solutions-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(23,141,119,0.25); }

.solutions-card__top { display: flex; align-items: center; gap: 20px; }

.solutions-card__num {
  position: absolute;
  top: 28px;
  inset-inline-end: 32px;
  font-family: var(--font-en);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(23,141,119,0.08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.solutions-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--grad-card);
  border: 1.5px solid rgba(23,141,119,0.18);
  color: #169a86;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.solutions-card__icon svg { width: 30px; height: 30px; }
.solutions-card:hover .solutions-card__icon {
  background: rgba(116,189,72,0.14);
  border-color: #74bd48;
  color: #74bd48;
  box-shadow: 0 0 18px rgba(116,189,72,0.2);
}

.solutions-card__title {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--teal-deep);
  margin: 0;
  padding-inline-end: 60px;
  line-height: 1.3;
}

.solutions-card__body    { position: relative; z-index: 1; }
.solutions-card__lead {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0 0 14px;
}
.solutions-card__text {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.96rem;
  line-height: 2;
  margin: 0;
  opacity: 0.85;
}

/* Services preview button */
.services-preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 72px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 2px solid #169a86;
  color: #169a86;
  font-size: 18px;
  font-weight: 800;
  margin: 40px auto 0;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


/* ==========================================================
   17. CLAIMS PAGE
   ========================================================== */
.feature-bands { padding: var(--space-7) 0; }

.claims-feature {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 80px;
  padding: 72px 0;
  border-top: 1px solid rgba(13,63,56,.07);
  position: relative;
  transition: background var(--transition), transform var(--transition);
}
.claims-feature:last-child { border-bottom: 1px solid rgba(13,63,56,.07); }

.claims-feature__num {
  font-family: var(--font-en);
  font-size: clamp(100px, 12vw, 150px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -5px;
  color: rgba(17,140,120,.07);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.claims-feature__content { flex: 1; }
[dir="rtl"] .claims-feature__content { text-align: right; }
[dir="ltr"] .claims-feature__content { text-align: left; }
.claims-feature__content h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: #0c3b35;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.claims-feature__content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5f736d;
  max-width: 700px;
  margin: 0;
}

/* Disable hover accent line in feature-bands */
.feature-bands .claims-feature::before { display: none; }
.feature-bands .claims-feature:hover   { transform: none; }

/* Process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 39px;
  inset-inline-start: 12.5%;
  inset-inline-end: 12.5%;
  height: 2px;
  background: rgba(22,154,134,.18);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: var(--space-4);
  position: relative;
}
.process-step__circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #169a86, #117865);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px rgba(23,141,119,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover .process-step__circle { transform: scale(1.1); box-shadow: 0 0 0 6px var(--bg), 0 0 24px rgba(23,141,119,0.3); }
.process-step__body { display: flex; flex-direction: column; align-items: center; width: 100%; }
.process-step__body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: var(--space-2); line-height: 1.4; text-align: center; }
.process-step__body p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; text-align: center; max-width: 190px; margin-inline: auto; }

/* ==========================================================
   18. ABOUT PAGE — WHY AL-JANOUB
   ========================================================== */
.why-janoub { background: var(--surface); }

.wj-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  margin-bottom: var(--space-7);
}
.wj-intro { padding-block: var(--space-5); }
.wj-intro .eyebrow { justify-content: flex-start; }
.wj-intro h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--teal-deep); line-height: 1.25; margin-top: var(--space-3); }

.wj-features { display: flex; flex-direction: column; }

.wj-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--transition), transform var(--transition);
  padding-inline-start: 46px;
}
.wj-feature:last-child { border-bottom: none; }

.wj-feature__icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 14px;
  background: var(--grad-card);
  border: 1.5px solid rgba(23,141,119,0.18);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.wj-feature:hover .wj-feature__icon { background: color-mix(in srgb, var(--teal) 10%, var(--surface)); border-color: rgba(23,141,119,0.36); }
.wj-feature__icon svg { width: 24px; height: 24px; display: block; overflow: visible; }
.wj-feature__body h3 { font-size: 1.06rem; font-weight: 700; color: var(--text); margin-bottom: var(--space-2); transition: color var(--transition); }
.wj-feature:hover .wj-feature__body h3 { color: var(--teal); }
.wj-feature__body p  { font-size: 0.91rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* Pillars */
.wj-pillars {
  background: #fff;
  border: 1px solid rgba(16,94,84,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.05);
}
.wj-pillars__head { padding: var(--space-4) var(--space-6); border-bottom: 1px solid rgba(16,94,84,0.08); }
.wj-pillars__eyebrow { color: #1b8b79 !important; margin-bottom: 0; }
.wj-pillars__eyebrow::before { background: #1b8b79 !important; }
.wj-pillars__grid { display: grid; grid-template-columns: 1fr 1fr; }
.wj-pillar { padding: var(--space-6); position: relative; }
.wj-pillar:first-child { border-inline-end: 1px solid rgba(16,94,84,0.08); }
.wj-pillar__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(22,154,134,0.09); color: #169a86; display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4); }
.wj-pillar__icon svg { width: 24px; height: 24px; display: block; overflow: visible; }
.wj-pillar h4 { font-size: 1.1rem; font-weight: 800; color: #0d3f38; margin-bottom: var(--space-3); }
.wj-pillar p  { font-size: 0.9rem; color: #5f736d; line-height: 1.85; margin: 0; }

/* Legal foundation */
.legal-foundation-section { padding-block: 120px; }
.legal-foundation-card    { padding: 72px 80px; }

/* ==========================================================
   18b. ABOUT PAGE — OFFICIAL COMPANY OVERVIEW
   ========================================================== */
.official-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-7) var(--space-6);
}

.official-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.official-grid__intro { padding-block: var(--space-2); }
.official-grid__intro h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: var(--space-2); margin-bottom: var(--space-4); }

.official-highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.85;
  margin: 0;
  padding-inline-start: var(--space-3);
  border-inline-start: 3px solid var(--fresh-green);
}

.official-grid__text { display: flex; flex-direction: column; gap: var(--space-4); }
.official-grid__text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.95;
  margin: 0;
}

[dir="rtl"] .official-grid__intro,
[dir="rtl"] .official-highlight,
[dir="rtl"] .official-grid__text p { text-align: right; }
[dir="ltr"] .official-grid__intro,
[dir="ltr"] .official-highlight,
[dir="ltr"] .official-grid__text p { text-align: left; }
[dir="ltr"] .official-highlight { padding-inline-start: var(--space-3); border-inline-start: 3px solid var(--fresh-green); }

[data-theme="dark"] .official-highlight { color: var(--fresh-green); }

@media (max-width: 960px) {
  .official-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

@media (max-width: 768px) {
  .official-card { padding: var(--space-5) var(--space-4); }
}

/* ==========================================================
   19. TRUST MODERN (index.html why section)
   ========================================================== */
.trust-modern { background: var(--surface); }

.trust-modern__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.trust-modern__content { position: relative; padding-block: var(--space-6); }
.trust-modern__content .eyebrow { justify-content: flex-start; }
.trust-modern__content h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--teal-deep); line-height: 1.25; margin: var(--space-3) 0 var(--space-4); }
.trust-modern__content > p { color: var(--text-muted); font-size: 1.04rem; line-height: 1.85; max-width: 360px; }

.trust-modern__list { display: flex; flex-direction: column; }

.trust-modern__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition);
  cursor: default;
}
.trust-modern__item:last-child { border-bottom: none; }
.trust-modern__item::before {
  content: '';
  position: absolute;
  inset-block: 12px;
  inset-inline-start: -20px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--fresh-green));
  opacity: 0;
  transition: opacity var(--transition), inset-block var(--transition);
}
.trust-modern__item:hover               { transform: translateY(-2px); }
.trust-modern__item:hover::before       { opacity: 1; inset-block: 4px; }

.trust-modern__num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  min-width: 26px;
  padding-top: 14px;
  flex-shrink: 0;
}
.trust-modern__icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--grad-card);
  border: 1.5px solid rgba(23,141,119,0.18);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.trust-modern__item:hover .trust-modern__icon { background: rgba(23,141,119,0.1); border-color: var(--teal); box-shadow: 0 0 18px rgba(23,141,119,0.15); }
.trust-modern__icon svg { width: 22px; height: 22px; }
.trust-modern__body h3 { font-size: 1.02rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.35; transition: color var(--transition); }
.trust-modern__item:hover .trust-modern__body h3 { color: var(--teal); }
.trust-modern__body p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ==========================================================
   20. ROW HOVER — SHARED ACCENT LINE
   ========================================================== */
.wj-feature,
.claims-feature {
  padding-inline-start: 46px;
}

.wj-feature::before,
.inv-rep-item::before,
.claims-feature::before {
  content: '';
  position: absolute;
  inset-block: 14px;
  inset-inline-start: 14px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--fresh-green));
  opacity: 0;
  transition: opacity var(--transition), inset-block var(--transition);
}
.wj-feature:hover::before,
.claims-feature:hover::before { opacity: 1; inset-block: 6px; }

/* ==========================================================
   21. INVESTORS PAGE
   ========================================================== */
.inv-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.inv-intro-text h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); margin-top: var(--space-2); margin-bottom: var(--space-4); }
.inv-intro-text p  { color: var(--text-muted); line-height: 1.9; font-size: 0.97rem; }

.inv-panel { background: #fff; border: 1px solid rgba(13,63,56,.09); border-radius: 20px; box-shadow: 0 4px 28px rgba(13,63,56,.06); overflow: hidden; }
.inv-panel__head  { padding: var(--space-4) var(--space-5); border-bottom: 1px solid rgba(13,63,56,.08); }
.inv-panel__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #169a86; margin: 0; }
.inv-panel__body  { padding: var(--space-2) var(--space-5); }
.inv-panel-item   { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid rgba(13,63,56,.06); }
.inv-panel-item:last-child { border-bottom: none; }
.inv-panel-num  { font-family: var(--font-en); font-size: 0.69rem; font-weight: 800; color: #169a86; letter-spacing: 0.06em; min-width: 22px; flex-shrink: 0; }
.inv-panel-text { font-size: 0.97rem; font-weight: 600; color: #0d3f38; line-height: 1.3; }

.inv-gov-wrap { background: rgba(13,63,56,.025); border-top: 1px solid rgba(13,63,56,.07); border-bottom: 1px solid rgba(13,63,56,.07); }
.inv-gov-header { text-align: right; max-width: 640px; margin-inline-start: 0; margin-inline-end: auto; margin-bottom: var(--space-7); }
[dir="ltr"] .inv-gov-header { text-align: left; }
.inv-gov-header h2 { margin-top: var(--space-2); margin-bottom: 18px; font-size: 35px; line-height: 1.05; font-weight: 900; letter-spacing: -2px; }
.inv-gov-header p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin-top: var(--space-3); }
.inv-gov-grid { display: grid; grid-template-columns: 1fr 1px 1fr; align-items: start; }
.inv-gov-rule  { background: rgba(13,63,56,.1); align-self: stretch; min-height: 200px; }
.inv-gov-block { padding: 0 var(--space-7); }
.inv-gov-block:first-child { padding-inline-start: 0; }
.inv-gov-block:last-child  { padding-inline-end: 0; }
.inv-gov-block h3 { font-size: 1.15rem; font-weight: 700; color: #0d3f38; margin-bottom: var(--space-3); line-height: 1.4; }
.inv-gov-block p  { font-size: 0.92rem; color: #5f736d; line-height: 1.9; margin: 0; }

.inv-rep-header { padding-bottom: var(--space-6); border-bottom: 2px solid rgba(13,63,56,.09); margin-bottom: 0; }
.inv-rep-header h2 { margin-top: var(--space-2); margin-bottom: var(--space-3); font-size: 35px; line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
.inv-rep-header p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; max-width: 560px; margin: 0; }
.inv-rep-list { display: flex; flex-direction: column; }
.inv-rep-item { position: relative; border-bottom: 1px solid rgba(13,63,56,.08); overflow: visible; transition: background var(--transition), transform var(--transition); }
[dir="rtl"] .inv-rep-item { padding: 70px 190px 70px 0; }
[dir="ltr"] .inv-rep-item { padding: 70px 0 70px 190px; }
.inv-rep-item:last-child { border-bottom: none; }
.inv-rep-num  { position: absolute; top: 50%; transform: translateY(-50%); font-family: var(--font-en); font-size: 96px; font-weight: 800; line-height: 1; letter-spacing: -3px; opacity: 0.08; color: #169a86; user-select: none; pointer-events: none; white-space: nowrap; }
[dir="rtl"] .inv-rep-num { right: 24px; left: auto; }
[dir="ltr"] .inv-rep-num { left: 24px; right: auto; }
.inv-rep-body h3 { font-size: 1.08rem; font-weight: 700; color: #0d3f38; margin-bottom: var(--space-2); }
.inv-rep-body p  { font-size: 0.91rem; color: #5f736d; line-height: 1.88; margin: 0; max-width: 680px; }

/* Disable hover for reporting list */
.inv-rep-list .inv-rep-item::before      { display: none; }
.inv-rep-list .inv-rep-item:hover        { transform: none; }
.inv-rep-list .inv-rep-item:hover .inv-rep-body h3 { color: var(--text); }

/* ==========================================================
   22. SUSTAINABILITY PAGE
   ========================================================== */
.sust-impact-card {
  align-items: flex-start;
  text-align: right;
  padding: var(--space-7) var(--space-6);
  min-height: 260px;
}
[dir="ltr"] .sust-impact-card          { text-align: left; }
[dir="rtl"] .sust-impact-card .card-icon,
[dir="ltr"] .sust-impact-card .card-icon { margin-inline: 0; }
.sust-impact-card h3 { font-size: 1.25rem; text-align: right; }
[dir="ltr"] .sust-impact-card h3 { text-align: left; }
.sust-impact-card p  { text-align: right; line-height: 1.9; }
[dir="ltr"] .sust-impact-card p  { text-align: left; }

.sust-culture .wj-split     { align-items: center; margin-bottom: 0; }
.sust-culture .wj-feature   { padding-inline: 12px; margin-inline: -12px; border-radius: 12px; }
.sust-culture .wj-feature:hover { background: rgba(22,154,134,.04); }

.sust-culture .wj-feature::before { display: none; }
.sust-culture .wj-feature:hover   { transform: none; }
.sust-culture .wj-feature:hover .wj-feature__icon { background: var(--grad-card); border-color: rgba(23,141,119,0.18); box-shadow: none; }
.sust-culture .wj-feature:hover .wj-feature__body h3 { color: var(--text); }

.culture-number {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 50%;
  background: rgba(22,154,134,.07);
  border: 1.5px solid rgba(22,154,134,.22);
  color: #169a86;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.sust-culture .wj-feature:hover .culture-number { background: #169a86; color: #fff; border-color: #169a86; box-shadow: 0 6px 20px rgba(22,154,134,.3); }

/* ==========================================================
   23. FOOTER
   ========================================================== */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.88);
  padding: var(--space-7) 0 var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.footer-brand       { display: flex; flex-direction: column; align-items: flex-start; gap: 0; max-width: 340px; }
.footer-logo        { height: 52px; width: auto; object-fit: contain; display: block; margin: 0 0 16px 0; }
.footer-brand p     { color: rgba(255,255,255,0.7); font-size: 0.92rem; text-align: right; line-height: 1.9; max-width: 340px; margin: 0; }
[lang="en"] .footer-brand p { text-align: left !important; }
.footer h4          { color: #fff; font-size: 1rem; margin-bottom: var(--space-3); }
.footer-links li    { margin-bottom: var(--space-2); }
.footer-links a     { color: rgba(255,255,255,0.72); font-size: 0.92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--fresh-green); }
.footer-contact li  { display: flex; gap: var(--space-2); align-items: flex-start; margin-bottom: var(--space-3); font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--fresh-green); }
.footer-contact a   { color: inherit; transition: color var(--transition); }
.footer-contact a:hover { color: var(--fresh-green); }
.footer-contact a[href^="tel:"] { direction: ltr; unicode-bidi: plaintext; }
.footer-address__lines { display: flex; flex-direction: column; gap: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-social     { display: flex; gap: var(--space-2); }
.footer-social a   { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: background var(--transition); }
.footer-social a:hover { background: var(--fresh-green); color: var(--teal-deep); }
.footer-social svg { width: 18px; height: 18px; }

/* ==========================================================
   24. REVEAL ANIMATION
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ==========================================================
   25. DARK MODE OVERRIDES
   ========================================================== */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 { color: #fff !important; }

[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] small,
[data-theme="dark"] .wj-feature__body p,
[data-theme="dark"] .inv-rep-body p,
[data-theme="dark"] .claims-feature__content p { color: rgba(255,255,255,0.78) !important; }

[data-theme="dark"] .eyebrow { color: var(--fresh-green) !important; }
[data-theme="dark"] a:not(.btn):not(.btn--ghost) { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .main-nav a { color: rgba(255,255,255,0.82) !important; }
[data-theme="dark"] .main-nav a.active { color: #fff !important; }

[data-theme="dark"] .inv-rep-num,
[data-theme="dark"] .claims-feature__num { color: rgba(140,220,200,0.14) !important; opacity: 1 !important; }

[data-theme="dark"] .card-icon,
[data-theme="dark"] .wj-feature__icon,
[data-theme="dark"] .trust-modern__icon,
[data-theme="dark"] .advantage-card .card-icon { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.1) !important; color: #72BE44 !important; }

/* Global icon color override — dark mode only */
[data-theme="dark"] .icon-btn,
[data-theme="dark"] .card-icon,
[data-theme="dark"] .wj-feature__icon,
[data-theme="dark"] .wj-pillar__icon,
[data-theme="dark"] .trust-modern__icon,
[data-theme="dark"] .solutions-card__icon,
[data-theme="dark"] .cac-icon,
[data-theme="dark"] .map-card__icon,
[data-theme="dark"] .badge svg,
[data-theme="dark"] .footer-contact svg,
[data-theme="dark"] .footer-social a { color: #72BE44 !important; }
[data-theme="dark"] .hamburger span { background: #72BE44 !important; }

/* Icon hover state — dark mode only */
[data-theme="dark"] .icon-btn:hover,
[data-theme="dark"] .footer-social a:hover,
[data-theme="dark"] .card:hover .card-icon,
[data-theme="dark"] .advantage-card:hover .card-icon,
[data-theme="dark"] .wj-feature:hover .wj-feature__icon,
[data-theme="dark"] .trust-modern__item:hover .trust-modern__icon,
[data-theme="dark"] .solutions-card:hover .solutions-card__icon { color: #8AD65A !important; }

[data-theme="dark"] .wj-feature,
[data-theme="dark"] .inv-rep-item,
[data-theme="dark"] .claims-feature { border-color: rgba(255,255,255,0.07) !important; }

[data-theme="dark"] .site-footer     { background: #07150f; }
[data-theme="dark"] .site-footer p,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-contact span,
[data-theme="dark"] .footer-contact a { color: rgba(255,255,255,0.65) !important; }
[data-theme="dark"] .footer h4        { color: #fff !important; }
[data-theme="dark"] .site-header      { border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .lang-switch      { border-color: rgba(255,255,255,0.2) !important; }
[data-theme="dark"] .lang-switch button { color: rgba(255,255,255,0.82) !important; }
[data-theme="dark"] .icon-btn         { color: #fff !important; background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.2) !important; }
[data-theme="dark"] .icon-btn:hover   { background: rgba(255,255,255,0.14) !important; border-color: rgba(255,255,255,0.4) !important; }
[data-theme="dark"] .btn--ghost       { color: #fff !important; border-color: rgba(255,255,255,0.45) !important; }
[data-theme="dark"] .btn--ghost:hover { background: rgba(255,255,255,0.12) !important; border-color: #fff !important; }
[data-theme="dark"] .btn--outline      { color: #fff !important; border-color: rgba(255,255,255,0.45) !important; }
[data-theme="dark"] .btn--outline:hover { background: rgba(255,255,255,0.08) !important; border-color: #fff !important; }
[data-theme="dark"] .hero .subtitle   { color: rgba(255,255,255,0.82) !important; }
[data-theme="dark"] .trust-modern__content h2 { color: var(--text); }
[data-theme="dark"] .wj-intro h2       { color: var(--teal); }
[data-theme="dark"] .wj-pillars        { background: var(--surface); border-color: var(--border); box-shadow: none; }
[data-theme="dark"] .wj-pillars__head  { border-bottom-color: var(--border); }
[data-theme="dark"] .wj-pillar:first-child { border-inline-end-color: var(--border); }
[data-theme="dark"] .wj-pillar__icon   { color: #fff; }
[data-theme="dark"] .wj-pillar h4      { color: var(--text); }
[data-theme="dark"] .wj-pillar p       { color: var(--text-muted); }
[data-theme="dark"] .inv-panel         { background: var(--surface); border-color: var(--border); box-shadow: none; }
[data-theme="dark"] .inv-panel__head   { border-color: var(--border); }
[data-theme="dark"] .inv-panel-item    { border-color: var(--border); }
[data-theme="dark"] .inv-panel-text    { color: var(--text); }
[data-theme="dark"] .inv-gov-wrap      { background: rgba(22,154,134,.04); border-color: var(--border); }
[data-theme="dark"] .inv-gov-rule      { background: var(--border); }
[data-theme="dark"] .inv-gov-block h3  { color: var(--text); }
[data-theme="dark"] .inv-gov-block p   { color: var(--text-muted); }
[data-theme="dark"] .inv-gov-block:last-child { border-color: var(--border); }
[data-theme="dark"] .inv-rep-header    { border-color: var(--border); }
[data-theme="dark"] .inv-rep-item      { border-color: var(--border); }
[data-theme="dark"] .inv-rep-num       { color: var(--teal); opacity: 0.14; }
[data-theme="dark"] .inv-rep-body h3   { color: var(--text); }
[data-theme="dark"] .inv-rep-body p    { color: var(--text-muted); }
[data-theme="dark"] .claims-feature    { border-color: var(--border); }
[data-theme="dark"] .claims-feature__num { color: rgba(22,154,134,.13); }
[data-theme="dark"] .claims-feature__content h3 { color: var(--text); }
[data-theme="dark"] .claims-feature__content p  { color: var(--text-muted); }
[data-theme="dark"] .culture-number    { background: rgba(22,154,134,.12); border-color: rgba(22,154,134,.3); }
[data-theme="dark"] .solutions-card__num   { color: rgba(131,197,65,0.12); }
[data-theme="dark"] .solutions-card__icon  { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
[data-theme="dark"] .solutions-card__title { color: var(--text); }
[data-theme="dark"] .services-preview-btn  { border-color: rgba(255,255,255,0.3); color: var(--text) !important; }

/* Hero / page-hero eyebrows always white (dark backgrounds) */
.hero .eyebrow,
.hero-content .eyebrow,
.page-hero .eyebrow { color: #fff !important; }
.hero .eyebrow::before,
.hero-content .eyebrow::before,
.page-hero .eyebrow::before { background: #fff !important; }

/* ==========================================================
   26. RESPONSIVE
   ========================================================== */

/* Large screens */
@media (min-width: 1440px) {
  .container { max-width: 1280px; }
}

/* Laptop */
@media (max-width: 1024px) {
  .hero .container     { justify-content: center; text-align: center; }
  .hero-content        { max-width: 100%; }
  .hero-actions        { justify-content: center; }
  .hero .subtitle      { margin-inline: auto; }
  .hero h1             { font-size: clamp(1.9rem, 4.5vw, 3rem); }
  .section-head h2     { font-size: clamp(1.5rem, 3vw, 2.2rem); }
  .trust-modern__content > p { max-width: 480px; }
  .two-col             { gap: var(--space-7); }
  .wj-split            { gap: 48px; }
  .trust-modern__grid  { gap: 56px; }
  .grid-3              { grid-template-columns: repeat(2, 1fr); }
  .grid-4              { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .two-col             { grid-template-columns: 1fr; }
  .legal-foundation-section { padding-block: 80px; }
  .legal-foundation-card    { padding: 56px 48px; }
}

/* Tablet large */
@media (max-width: 960px) {
  .trust-modern__grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-modern__content { text-align: center; padding-block: 0; }
  .trust-modern__content .eyebrow { justify-content: center; }
  .trust-modern__content > p { max-width: 100%; }
  .trust-modern__item::before { inset-inline-start: 0; }
  .wj-split { grid-template-columns: 1fr; gap: 40px; }
  .wj-intro { padding-block: 0; text-align: center; }
  .wj-intro .eyebrow { justify-content: center; }
  .wj-pillars__grid { grid-template-columns: 1fr; }
  .wj-pillar:first-child { border-inline-end: none; border-bottom: 1px solid rgba(16,94,84,0.08); }
  .sust-culture .wj-split { align-items: start; }
}

/* Tablet */
@media (max-width: 860px) {
  .main-nav ul    { display: none; }
  .hamburger      { display: flex; }
  .main-nav.is-open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    inset-inline: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: var(--space-4);
    gap: var(--space-2);
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open a { display: block; padding: var(--space-2) 0; }

  .hero { padding-top: calc(var(--header-height) + 48px); padding-bottom: 48px; text-align: center; }
  .hero .container { justify-content: center; }
  .hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
  .page-hero { padding-top: calc(var(--header-height) + 40px); padding-bottom: 40px; min-height: 320px; }
  .page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
  .section-head { margin-bottom: var(--space-5); }
  .section-head h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
  .two-col { gap: var(--space-6); }
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .cta-band { padding: var(--space-7) var(--space-5); text-align: center; }
  .cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
  .inv-intro-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .about-image, .claims-image { max-width: 100%; }
  [data-theme="dark"] .wj-pillar:first-child { border-color: var(--border); }
}

/* Tablet standard */
@media (max-width: 768px) {
  .hero { background-position: 70% center !important; }

  .wj-feature, .claims-feature { padding-inline-start: 36px !important; }
  .wj-feature::before, .claims-feature::before { inset-inline-start: 10px !important; }

  .contact-actions-grid { grid-template-columns: 1fr; }
  .contact-action-card  { padding: 40px 28px; }
  .card     { padding: var(--space-5) var(--space-4); }
  .advantage-card { padding: var(--space-4); }
  .solutions-card { padding: 32px 26px; gap: 14px; }
  .solutions-card__top   { gap: 14px; }
  .solutions-card__icon  { width: 56px; height: 56px; }
  .solutions-card__icon svg { width: 26px; height: 26px; }
  .solutions-card__num   { font-size: 2rem; top: 22px; inset-inline-end: 24px; }
  .solutions-card__title { padding-inline-end: 44px; }
  .services-preview-btn  { width: 175px; height: 58px; font-size: 15px; margin-top: 18px; }
  .about-preview-btn     { padding: 10px 22px; height: 46px; font-size: 0.9rem; border-radius: var(--radius-pill); }
  .lang-switch button.active { background: #74bd48 !important; border-color: #74bd48 !important; color: #fff !important; }
  .trust-modern .container  { padding-inline: 22px; }
  .home-page .two-col .about-image { order: -1; margin-bottom: 24px; }

  .trust-modern__item:hover,
  .trust-modern__item:hover .trust-modern__icon { transform: none !important; background: var(--grad-card) !important; border-color: rgba(23,141,119,0.18) !important; box-shadow: none !important; }
  .trust-modern__item:hover::before         { opacity: 0 !important; inset-block: 12px !important; }
  .trust-modern__item:hover .trust-modern__body h3 { color: var(--text) !important; }

  .page-hero { min-height: 320px !important; padding-top: 140px !important; padding-bottom: 110px !important; }
  .page-hero .container { padding-top: 40px; }
  .page-hero h1 { font-size: clamp(1.4rem, 7vw, 2rem) !important; line-height: 1.2 !important; }
  .page-hero > .container > p { font-size: 0.9rem !important; line-height: 1.7 !important; max-width: 100% !important; }

  .inv-gov-block { padding-inline: var(--space-4) !important; }
  [dir="rtl"] .inv-rep-item { padding: 44px 80px 44px 0 !important; }
  [dir="ltr"] .inv-rep-item { padding: 44px 0 44px 80px !important; }
  .inv-rep-num { font-size: clamp(44px, 10vw, 64px) !important; }
  .process-timeline { grid-template-columns: 1fr; max-width: 420px; gap: 0; }
  .process-timeline::before { display: none; }
  .process-step  { align-items: center; text-align: center; padding: var(--space-4) 0; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .process-step__body p { max-width: 280px; }

  .claims-feature { position: relative; flex-direction: column; align-items: stretch; gap: 8px; padding: 44px 0; overflow: hidden; }
  .claims-feature__num { position: absolute; left: 24px !important; right: auto !important; top: 16px; font-size: clamp(64px, 18vw, 96px); letter-spacing: -3px; opacity: 0.08; z-index: 0; }
  .claims-feature__content { position: relative; z-index: 1; }

  .investors-page .section    { padding-block: 56px; }
  .investors-page .container  { padding-inline: 20px; }
  .inv-intro-grid { gap: 36px; }
  .inv-gov-grid   { grid-template-columns: 1fr; }
  .inv-gov-rule   { display: none; }
  .inv-gov-block:last-child { margin-top: var(--space-6); padding-top: var(--space-6); border-top: 1px solid rgba(13,63,56,.09); }
  .inv-rep-num   { display: none !important; }
  [dir="rtl"] .inv-rep-item, [dir="ltr"] .inv-rep-item { padding: 32px 0; }

  .investors-page .page-hero  { min-height: 380px !important; padding-top: 130px !important; padding-bottom: 90px !important; text-align: right !important; }
  .investors-page .page-hero .container { align-items: flex-start !important; }
  .investors-page .page-hero h1 { text-align: right !important; margin-inline: 0 !important; }
  .investors-page .page-hero > .container > p { text-align: right !important; margin-inline: 0 !important; }
  .investors-page .cta-band   { text-align: right !important; }
  .investors-page .cta-band h2,
  .investors-page .cta-band p { text-align: right !important; margin-inline: 0 !important; }
}

/* Tablet — governance block compact */
@media (max-width: 760px) {
  .inv-gov-block:last-child { border-top: 1px solid rgba(13,63,56,.09); }
  [data-theme="dark"] .inv-gov-block:last-child { border-color: var(--border); }
}

/* Mobile */
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-grid  { grid-template-columns: 1fr; gap: var(--space-5); }
  .section      { padding-block: 48px; }
  .hero         { padding-top: calc(var(--header-height) + 32px); padding-bottom: 40px; }
  .hero h1      { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .hero .subtitle { font-size: 0.97rem; line-height: 1.8; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .page-hero    { padding-top: calc(var(--header-height) + 28px); padding-bottom: 32px; min-height: 240px; }
  .page-hero h1 { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .section-head h2 { font-size: clamp(1.2rem, 5vw, 1.7rem); }
  .wj-feature { padding-inline-start: 32px !important; }
  .wj-feature::before { inset-inline-start: 8px !important; }
  .solutions-card { padding: 28px 20px; border-radius: 20px; gap: 12px; }
  .solutions-card__num { font-size: 1.6rem; top: 18px; inset-inline-end: 18px; }
  .solutions-card__title { padding-inline-end: 36px; }
  .card    { padding: var(--space-4); }
  .advantage-card { padding: var(--space-4) var(--space-3); }
  .cta-band { padding: var(--space-6) var(--space-4); }
  .cta-band h2 { font-size: 1.25rem; }
  .site-footer  { padding: var(--space-6) 0 var(--space-4); }
  .footer-brand { max-width: 100%; }
  [dir="rtl"] .inv-rep-item { padding: 36px 60px 36px 0 !important; }
  [dir="ltr"] .inv-rep-item { padding: 36px 0 36px 60px !important; }
  .legal-foundation-section { padding-block: 56px; }
  .legal-foundation-card    { padding: 40px 24px; }
  [dir="rtl"] .section-head, [dir="ltr"] .section-head { text-align: center; }
  [dir="rtl"] .wj-intro, [dir="rtl"] .trust-modern__content { text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container    { padding-inline: 16px; }
  .hero h1      { font-size: clamp(1.35rem, 7vw, 1.9rem); }
  .page-hero h1 { font-size: clamp(1.25rem, 6.5vw, 1.7rem); }
  .section-head h2 { font-size: clamp(1.15rem, 6vw, 1.55rem); }
  h2            { font-size: clamp(1.1rem, 5.5vw, 1.5rem); }
  h3            { font-size: clamp(1rem, 4.5vw, 1.2rem); }
  .main-nav.is-open a { font-size: 1rem; padding: 10px 0; }
  .lang-switch button { padding: 7px 10px; font-size: 0.8rem; }
  .icon-btn     { width: 40px; height: 40px; }
  .contact-action-card { padding: 32px 20px; }
  .cac-icon     { width: 64px; height: 64px; }
  .cac-icon svg { width: 28px; height: 28px; }
  .solutions-card { padding: 28px 20px; }
  .solutions-card__lead, .solutions-card__text { font-size: 0.92rem; }
}

/* Very small mobile */
@media (max-width: 380px) {
  .container { padding-inline: 12px; }
  .hero h1   { font-size: 1.25rem; }
  .page-hero h1 { font-size: 1.15rem; }
  .section-head h2 { font-size: 1.1rem; }
  .btn       { font-size: 0.9rem; height: 46px; padding-inline: 20px; }
  .hero-actions .btn { max-width: 100%; }
  .wj-feature { padding-inline-start: 24px !important; }
  .wj-feature::before { inset-inline-start: 6px !important; }
  [dir="rtl"] .inv-rep-item { padding: 28px 44px 28px 0 !important; }
  [dir="ltr"] .inv-rep-item { padding: 28px 0 28px 44px !important; }
  .inv-rep-num { font-size: 32px !important; }
  .card { padding: var(--space-3); }
  .contact-action-card { padding: 28px 16px; }
}

/* Touch: disable mouse-only hover effects */
@media (hover: none) {
  .wj-feature::before,
  .inv-rep-item::before,
  .claims-feature::before { opacity: 0 !important; }
  .card:hover, .advantage-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .btn--primary:hover { transform: none; }
  .solutions-card:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--border); }
  .solutions-card:hover .solutions-card__icon { background: var(--grad-card); border-color: rgba(23,141,119,0.18); color: #169a86; box-shadow: none; }
  .trust-modern__item:hover { transform: none !important; }
  .trust-modern__item:hover::before { opacity: 0 !important; }
  .trust-modern__item:hover .trust-modern__icon { background: var(--grad-card) !important; border-color: rgba(23,141,119,0.18) !important; box-shadow: none !important; }
  .trust-modern__item:hover .trust-modern__body h3 { color: var(--text) !important; }

  /* Cards/boxes site-wide: cancel tap-triggered hover glow */
  .principle-card:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--border); }
  .process-step:hover .process-step__circle { transform: none; box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px rgba(23,141,119,0.15); }
  .wj-feature:hover .wj-feature__icon,
  .sust-culture .wj-feature:hover .wj-feature__icon { background: var(--grad-card); border-color: rgba(23,141,119,0.18); box-shadow: none; }
  .sust-culture .wj-feature:hover { background: transparent; }
  .sust-culture .wj-feature:hover .culture-number { background: rgba(22,154,134,.07); color: #169a86; border-color: rgba(22,154,134,.22); box-shadow: none; }
  .footer-social a:hover { background: rgba(255,255,255,0.08); color: inherit; }
}

/* Hover-capable touch workaround for services-preview-btn */
@media (hover: hover) and (pointer: fine) {
  .services-preview-btn:hover { background: #169a86; color: #fff !important; }
}

/* ==========================================================
   27. UTILITY CLASSES (replace extracted inline styles)
   ========================================================== */
.section-title      { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--space-3); }
.section-title--legal { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: var(--space-4); }
.text-muted         { color: var(--text-muted); }
.mb-3               { margin-bottom: var(--space-3); }
.mb-4               { margin-bottom: var(--space-4); }

/* =========================================
   CLAIMS MOBILE FIXES
========================================= */
@media (max-width: 768px) {

  /* Hide large faded numbers on claims mobile (titles/descriptions stay) */
  .claims-feature__num,
  .process-step__circle {
    display: none !important;
  }

  /* Stop mobile flicker/glow while scrolling: opacity + transform only */
  .claims-feature,
  .process-step,
  .reveal {
    transition-property: opacity, transform !important;
    box-shadow: none !important;
    filter: none !important;
  }

  /* Disable hover movement/glow on mobile devices */
  .claims-feature:hover,
  .process-step:hover,
  .process-step:hover .process-step__circle {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
  }
}

/* Keep reveal animation clean globally: opacity + transform only */
.reveal,
.reveal.active,
.reveal.visible,
.reveal.is-visible {
  transition-property: opacity, transform !important;
  will-change: opacity, transform;
}

/* Dark mode mobile menu icon should be white (logo, lang switch, other text untouched) */
html[data-theme="dark"] .hamburger span {
  background: #ffffff !important;
}
