/* ============================================================
   AFA | عافية للأورام — Premium Multi-Page Design System V3
   Brand: Medical Blue #1F5F8B, Hope Pink #E91E63, Life Green #4CAF50
   Architecture: Multi-page static site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --blue: #1F5F8B;
  --blue-dark: #163F5C;
  --blue-light: #2A7AB5;
  --blue-pale: #EDF5FA;
  --blue-muted: #4A8DB7;
  --pink: #E91E63;
  --pink-dark: #C2185B;
  --pink-light: #F48FB1;
  --pink-pale: #FDE8EF;
  --green: #4CAF50;
  --green-dark: #388E3C;
  --green-light: #81C784;
  --green-pale: #E8F5E9;
  --orange: #F5A623;
  --purple: #7C4DFF;
  --teal: #00897B;
  --gold: #D4A843;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --cream: #FDF8F0;
  --gray-50: #F7F9FA;
  --gray-100: #EEF2F5;
  --gray-200: #DCE3E8;
  --gray-300: #B8C4CE;
  --gray-400: #8A9BAA;
  --gray-500: #5F7282;
  --gray-600: #3D4F5F;
  --gray-700: #2C3E50;
  --dark: #1A2530;
  --font-ar: 'Tajawal', 'Arial', sans-serif;
  --font-en: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 3px rgba(31,95,139,.06);
  --shadow-md: 0 4px 20px rgba(31,95,139,.08);
  --shadow-lg: 0 8px 40px rgba(31,95,139,.1);
  --shadow-xl: 0 16px 56px rgba(31,95,139,.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ar);
  direction: rtl; text-align: right;
  color: var(--gray-700); background: var(--white);
  line-height: 1.8; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; border: none; outline: none; }
.en { font-family: var(--font-en); direction: ltr; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: 112px 0; }
.section-alt { background: var(--gray-50); }
.section-cream { background: var(--cream); }
.section-blue {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.section-blue::before { content:''; position:absolute; top:-40%; left:-20%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(233,30,99,.08),transparent 70%); }
.section-blue::after { content:''; position:absolute; bottom:-30%; right:-15%; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(76,175,80,.06),transparent 70%); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block; font-size: .82rem; font-weight: 600;
  color: var(--blue); background: var(--blue-pale);
  padding: 6px 22px; border-radius: 50px; margin-bottom: 16px;
  letter-spacing: .02em;
}
.section-blue .section-badge { background: rgba(255,255,255,.12); color: var(--white); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800;
  color: var(--blue-dark); line-height: 1.4; margin-bottom: 14px;
}
.section-blue .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-400); max-width: 600px;
  margin: 0 auto; line-height: 1.9;
}
.section-blue .section-subtitle { color: rgba(255,255,255,.7); }
.title-accent {
  display: block; width: 56px; height: 3px; border-radius: 2px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  margin: 20px auto 0;
}

/* =============== NAVBAR — MULTI-PAGE =============== */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(31,95,139,.04);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(31,95,139,.08); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px; height: 104px;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 86px; width: auto; transition: var(--transition); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: .86rem; font-weight: 500; color: var(--gray-600);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; right: 0; width: 0;
  height: 2px; background: var(--blue); border-radius: 1px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); font-weight: 700; }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white) !important; padding: 10px 24px !important;
  border-radius: 50px; font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(233,30,99,.2);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(233,30,99,.3); }
.mobile-toggle {
  display: none; background: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.mobile-toggle span {
  width: 22px; height: 2px; background: var(--gray-600);
  border-radius: 2px; transition: var(--transition);
}

/* =============== HERO — REDESIGNED =============== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding-top: 72px;
  /* Split-tone: darker edges with bright luminous center */
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(255,255,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 45%, rgba(237,245,250,.25) 0%, transparent 60%),
    linear-gradient(160deg, #0F3854 0%, var(--blue-dark) 25%, var(--blue) 50%, var(--blue-light) 80%, #3A9AD9 100%);
}

/* Animated mesh aurora effect */
.hero-bg-art { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.hero-circle-1 { width: 700px; height: 700px; top: -15%; right: -10%; animation: float-slow 20s ease-in-out infinite; }
.hero-circle-2 { width: 500px; height: 500px; bottom: 5%; left: -8%; border-color: rgba(233,30,99,.05); animation: float-slow 25s ease-in-out infinite reverse; }
.hero-circle-3 { width: 250px; height: 250px; top: 25%; left: 25%; border-color: rgba(76,175,80,.05); animation: float-slow 15s ease-in-out infinite; }
.hero-line {
  position: absolute; width: 1px; height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06), transparent);
}
.hero-line-1 { top: 15%; right: 18%; transform: rotate(15deg); }
.hero-line-2 { bottom: 20%; left: 22%; transform: rotate(-20deg); height: 150px; }

/* Light particles */
.hero-bg-art::before {
  content: ''; position: absolute; width: 100%; height: 100%;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.3), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,.2), transparent),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(255,255,255,.25), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,.2), transparent),
    radial-gradient(1.5px 1.5px at 30% 80%, rgba(255,255,255,.15), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,.2), transparent);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes float-slow { 0%,100%{transform:translate(0,0)} 50%{transform:translate(15px,-10px)} }
@keyframes twinkle { 0%{opacity:.4} 100%{opacity:1} }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 2; flex: 1;
  padding-top: 40px; padding-bottom: 40px;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  padding: 8px 20px; border-radius: 50px; font-size: .82rem;
  color: rgba(255,255,255,.85); margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900;
  line-height: 1.35; margin-bottom: 20px;
}
.hero-title span { color: var(--pink-light); }
.hero-subtitle {
  font-size: 1.05rem; line-height: 2; color: rgba(255,255,255,.7);
  max-width: 480px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: .95rem; cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white); box-shadow: 0 4px 20px rgba(233,30,99,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,30,99,.35); }
.btn-outline {
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1); font-size: .88rem; padding: 12px 24px;
}
.btn-ghost:hover { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-white {
  background: var(--white); color: var(--pink); font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.btn-block { width: 100%; }
.btn-secondary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px rgba(31,95,139,.2);
}
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ==================== HERO VISUAL — LUMINOUS LOGO PLATE ==================== */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-logo-wrap {
  position: relative; width: 400px; height: 400px;
  display: flex; align-items: center; justify-content: center;
}

/* Outer pulsing rings */
.hero-logo-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.05);
  animation: pulse-ring 6s ease-in-out infinite;
}
.hero-logo-ring:nth-child(2) { inset: -24px; animation-delay: 1.5s; border-color: rgba(233,30,99,.04); }
.hero-logo-ring:nth-child(3) { inset: -48px; animation-delay: 3s; border-color: rgba(76,175,80,.04); }

/* ★ LUMINOUS CORE — Solves the blue-on-blue contrast problem ★
   A warm pearl/cream glow plate behind the logo creates strong contrast
   so "عافية" (blue text) reads clearly against a lighter field */
.hero-logo-core {
  width: 340px; height: 340px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  /* Multi-layer glow: frosted glass + warm cream center */
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.95) 0%, rgba(253,248,240,.85) 30%, rgba(237,245,250,.6) 55%, rgba(255,255,255,.15) 80%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow:
    0 0 60px rgba(255,255,255,.25),
    0 0 120px rgba(255,255,255,.1),
    0 8px 32px rgba(0,0,0,.1),
    inset 0 0 40px rgba(255,255,255,.3);
  animation: logo-glow 5s ease-in-out infinite alternate;
}

.hero-logo-core::before {
  content: '';
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, rgba(253,248,240,.1) 40%, transparent 70%);
  z-index: -1;
  animation: logo-halo 6s ease-in-out infinite alternate;
}

.hero-logo-core img {
  width: 82%; filter: drop-shadow(0 4px 16px rgba(0,0,0,.08));
  position: relative; z-index: 3;
}

@keyframes pulse-ring {
  0%,100% { opacity:.15; transform:scale(1); }
  50% { opacity:.4; transform:scale(1.02); }
}
@keyframes logo-glow {
  0% { box-shadow: 0 0 60px rgba(255,255,255,.25), 0 0 120px rgba(255,255,255,.08), 0 8px 32px rgba(0,0,0,.1), inset 0 0 40px rgba(255,255,255,.3); }
  100% { box-shadow: 0 0 80px rgba(255,255,255,.35), 0 0 160px rgba(255,255,255,.12), 0 8px 32px rgba(0,0,0,.1), inset 0 0 50px rgba(255,255,255,.35); }
}
@keyframes logo-halo {
  0% { opacity:.6; transform:scale(1); }
  100% { opacity:1; transform:scale(1.05); }
}

/* Hero Stats Bar */
.hero-stats-bar {
  background: rgba(255,255,255,.05); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 2;
}
.hero-stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; padding: 28px 0;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--white); font-family: var(--font-en); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.08); }

/* =============== PAGE HERO (internal pages) =============== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; top: 32px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.85), rgba(253,248,240,.4) 55%, transparent 78%);
  box-shadow: 0 0 40px rgba(253,248,240,.2);
  opacity: .5; pointer-events: none;
}
.page-hero .section-badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); position: relative; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
  margin-bottom: 16px; position: relative;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 560px;
  margin: 0 auto; line-height: 1.9; position: relative;
}

/* Breadcrumb */
.breadcrumb {
  position: relative; z-index: 2; margin-top: 20px;
  display: flex; justify-content: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.7); }

/* =============== ABOUT =============== */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.about-visual { text-align: center; }
.about-img-wrap {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 48px; margin-bottom: 20px;
}
.about-img-accent {
  position: absolute; inset: 0; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-pale), var(--pink-pale));
  transform: rotate(-3deg);
}
.about-logo-img { position: relative; z-index: 1; width: 220px; filter: drop-shadow(0 4px 16px rgba(31,95,139,.1)); }
.about-tagline { font-size: 1.15rem; color: var(--gray-400); font-weight: 500; }
.about-text .section-badge { display: inline-block; }
.about-text p { color: var(--gray-500); margin-bottom: 14px; line-height: 2; font-size: .98rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-feature {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--gray-50); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-feature:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.about-feature-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon.blue { background: var(--blue-pale); color: var(--blue); }
.about-feature-icon.pink { background: var(--pink-pale); color: var(--pink); }
.about-feature-icon.green { background: var(--green-pale); color: var(--green); }
.about-feature span { font-size: .88rem; font-weight: 600; color: var(--gray-600); }

/* =============== MVV =============== */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--gray-100); position: relative; overflow: hidden;
}
.mvv-card::before {
  content:''; position:absolute; top:0; right:0; left:0; height:3px;
  background: linear-gradient(90deg, var(--blue), var(--pink)); opacity:0;
  transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mvv-card:hover::before { opacity:1; }
.mvv-icon {
  width: 60px; height: 60px; border-radius: 16px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.mvv-card:nth-child(1) .mvv-icon { background: var(--blue-pale); color: var(--blue); }
.mvv-card:nth-child(2) .mvv-icon { background: var(--pink-pale); color: var(--pink); }
.mvv-card:nth-child(3) .mvv-icon { background: var(--green-pale); color: var(--green); }
.mvv-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.mvv-card p { color: var(--gray-500); line-height: 1.9; font-size: .92rem; }

/* =============== SERVICES =============== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card::after {
  content:''; position:absolute; bottom:0; right:0; left:0;
  height:3px; background: linear-gradient(90deg, var(--blue), var(--pink));
  opacity:0; transition: var(--transition);
}
.service-card:hover::after { opacity:1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon.blue { background: var(--blue-pale); color: var(--blue); }
.service-icon.pink { background: var(--pink-pale); color: var(--pink); }
.service-icon.green { background: var(--green-pale); color: var(--green); }
.service-icon.orange { background: #FFF3E0; color: var(--orange); }
.service-icon.purple { background: #EDE7F6; color: var(--purple); }
.service-icon.teal { background: #E0F2F1; color: var(--teal); }
.service-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--gray-400); line-height: 1.85; }

/* =============== STEPS =============== */
.steps-wrapper { position: relative; max-width: 900px; margin: 0 auto; }
.steps-line {
  position: absolute; top: 40px; right: 40px; left: 40px;
  height: 2px; background: var(--gray-200);
}
.steps-line-fill {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--pink));
  border-radius: 2px; transition: width 1.2s ease;
}
.steps-grid { display: flex; justify-content: space-between; position: relative; z-index: 2; }
.step-item { text-align: center; flex: 1; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 2.5px solid var(--gray-200);
  color: var(--gray-400); transition: var(--transition);
}
.step-item.active .step-circle {
  border-color: var(--blue); background: var(--blue-pale); color: var(--blue);
}
.step-num { font-family: var(--font-en); font-weight: 700; font-size: .72rem; color: var(--gray-400); margin-bottom: 6px; }
.step-item.active .step-num { color: var(--blue); }
.step-label { font-size: .88rem; font-weight: 600; color: var(--gray-600); }

/* =============== STATS =============== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.stat-card {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,.06); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(8px);
  transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.stat-icon { margin: 0 auto 12px; color: rgba(255,255,255,.5); }
.stat-num { font-family: var(--font-en); font-size: 2.4rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.stat-label { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute; top: -100%; right: 16px; z-index: 10000;
  background: var(--white); color: var(--blue-dark);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem;
  box-shadow: var(--shadow-lg);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* =============== GOVERNANCE =============== */
.governance-content { max-width: 900px; margin: 0 auto; }
.governance-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.governance-card > p { color: var(--gray-500); line-height: 2; margin-bottom: 28px; font-size: 1rem; }
.governance-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gov-highlight {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px;
  background: var(--gray-50); border-radius: var(--radius-md);
  transition: var(--transition);
}
.gov-highlight:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.gov-highlight-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue);
}
.gov-highlight-icon.gold { background: #FFF8E1; color: var(--gold); }
.gov-highlight h4 { font-size: .92rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.gov-highlight p { font-size: .84rem; color: var(--gray-400); margin: 0; line-height: 1.7; }

/* Governance visual decorative */
.governance-visual-wrap {
  max-width: 200px; margin: 0 auto 40px; opacity: .7;
}
.governance-visual-wrap img {
  width: 100%; filter: drop-shadow(0 4px 16px rgba(31,95,139,.08));
}

/* =============== DOCUMENTS =============== */
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.doc-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px 24px;
  border: 1px solid var(--gray-100); transition: var(--transition);
  display: flex; flex-direction: column; gap: 10px;
}
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.doc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue); margin-bottom: 4px;
}
.doc-icon.pink { background: var(--pink-pale); color: var(--pink); }
.doc-icon.green { background: var(--green-pale); color: var(--green); }
.doc-icon.orange { background: #FFF3E0; color: var(--orange); }
.doc-icon.purple { background: #EDE7F6; color: var(--purple); }
.doc-icon.teal { background: #E0F2F1; color: var(--teal); }
.doc-card h4 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); }
.doc-card p { font-size: .84rem; color: var(--gray-400); line-height: 1.7; margin: 0; }
.doc-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
  font-size: .84rem; font-weight: 600; color: var(--blue); padding-top: 8px;
}
.doc-link:hover { color: var(--pink); gap: 8px; }

/* =============== JOURNEY INFO =============== */
.journey-info-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 48px auto 0; }
.journey-info-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 28px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.journey-info-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue);
}
.journey-info-icon.green { background: var(--green-pale); color: var(--green); }
.journey-info-card h4 { font-size: .95rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.journey-info-card p { font-size: .86rem; color: var(--gray-500); line-height: 1.9; margin: 0; }

/* =============== NEWS =============== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-img {
  height: 200px; display: flex; align-items: flex-end; padding: 16px;
  position: relative; background-size: cover; background-position: center;
}
.news-img-1 { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); }
.news-img-2 { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%); }
.news-img-3 { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
.news-date {
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  color: var(--white); padding: 6px 14px; border-radius: 50px;
  font-size: .78rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
}
.news-body { padding: 24px; }
.news-body h3 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; line-height: 1.6; }
.news-body p { font-size: .86rem; color: var(--gray-400); line-height: 1.8; }
.news-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: .86rem; font-weight: 600; color: var(--blue);
}
.news-link:hover { color: var(--pink); gap: 10px; }

/* =============== PARTNERS =============== */
.partners-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.partner-logo {
  width: 160px; height: 72px; background: var(--white);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: .82rem; color: var(--gray-300);
  font-weight: 500; transition: var(--transition);
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.partner-logo:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-md); }

/* =============== CTA =============== */
.cta-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content:''; position:absolute; top:-50%; right:-20%;
  width:500px; height:500px; border-radius:50%;
  background:rgba(255,255,255,.04);
}
.cta-section::after {
  content:''; position:absolute; bottom:-40%; left:-15%;
  width:400px; height:400px; border-radius:50%;
  background:rgba(255,255,255,.03);
}
.cta-inner { text-align: center; position: relative; z-index: 2; color: var(--white); }
.cta-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 32px; line-height: 1.9; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =============== CONTACT =============== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 22px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-sm); border-color: var(--blue-pale); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue);
}
.contact-card h4 { font-size: .9rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 2px; }
.contact-card p { font-size: .86rem; color: var(--gray-400); margin: 0; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .86rem; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  font-size: .92rem; color: var(--gray-700); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 4px rgba(31,95,139,.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =============== FAQ =============== */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  margin-bottom: 10px; border: 1px solid var(--gray-100);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue-pale); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 600;
  color: var(--gray-700); font-size: .95rem; width: 100%; background: none;
  text-align: right;
}
.faq-question:hover { color: var(--blue); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); transition: var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-toggle { background: var(--blue); color: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray-500); line-height: 1.9; font-size: .92rem; }

/* =============== CONTENT BLOCKS (internal pages) =============== */
.content-block { margin-bottom: 48px; }
.content-block h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--blue-dark);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}
.content-block h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--blue-dark);
  margin-bottom: 10px;
}
.content-block p {
  color: var(--gray-500); line-height: 2; margin-bottom: 14px; font-size: .96rem;
}
.content-block ul {
  list-style: none; padding: 0;
}
.content-block ul li {
  position: relative; padding-right: 20px; margin-bottom: 10px;
  color: var(--gray-500); line-height: 1.9; font-size: .94rem;
}
.content-block ul li::before {
  content: ''; position: absolute; right: 0; top: 12px;
  width: 6px; height: 6px; background: var(--blue); border-radius: 50%;
}

/* Two-column layout for internal pages */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.two-col-sidebar { position: sticky; top: 100px; }

/* Info callout boxes */
.info-callout {
  background: var(--blue-pale); border-radius: var(--radius-md);
  padding: 24px 28px; border-right: 4px solid var(--blue);
  margin: 24px 0;
}
.info-callout.pink { background: var(--pink-pale); border-color: var(--pink); }
.info-callout.green { background: var(--green-pale); border-color: var(--green); }
.info-callout h4 { font-size: .95rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.info-callout p { font-size: .9rem; color: var(--gray-600); margin: 0; line-height: 1.8; }

/* =============== FOOTER =============== */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand img { height: 112px; margin-bottom: 24px; filter: brightness(1.1) drop-shadow(0 2px 12px rgba(0,0,0,.3)); }
.footer-brand p { font-size: .92rem; line-height: 1.9; max-width: 340px; color: rgba(255,255,255,.5); }
.footer-col h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .86rem; color: rgba(255,255,255,.4); }
.footer-col ul li a:hover { color: var(--pink-light); }
.footer-col ul li { font-size: .86rem; color: rgba(255,255,255,.4); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: .82rem; color: rgba(255,255,255,.3);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); color: var(--white); }

/* =============== SCROLL TOP =============== */
.scroll-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer; opacity: 0;
  transform: translateY(16px); transition: var(--transition); border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .hero-logo-wrap { width: 300px; height: 300px; }
  .hero-logo-core { width: 260px; height: 260px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar-logo img { height: 76px; }
  .navbar-inner { height: 94px; }
  .footer-brand img { height: 96px; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 84px; right: 0; left: 0; background: var(--white);
    padding: 24px; gap: 14px; box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-100);
  }
  .mobile-toggle { display: flex; }
  .navbar-logo img { height: 64px; }
  .navbar-inner { height: 84px; padding: 0 20px; }
  .footer-brand img { height: 84px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .journey-info-box { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; gap: 24px; align-items: center; }
  .steps-line { display: none; }
  .hero-stats-inner { gap: 24px; }
  .hero-stat-divider { display: none; }
  .governance-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 120px 0 48px; }
  .breadcrumb { margin-top: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-stats-inner { flex-direction: column; gap: 16px; }
  .navbar-logo img { height: 56px; }
  .navbar-inner { height: 76px; padding: 0 16px; }
  .footer-brand img { height: 76px; }
  .hero-logo-wrap { width: 240px; height: 240px; }
  .hero-logo-core { width: 200px; height: 200px; }
}

/* =============== ANIMATIONS =============== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   V4 — INSTITUTIONAL PREMIUM LAYER
   Founding-stage identity · moonlight refinement · gold prestige
   ============================================================ */

/* --- Hero strategic pillars bar (replaces numeric stats) --- */
.hero-pillar {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 600;
}
.hero-pillar svg { color: rgba(255,255,255,.55); flex-shrink: 0; }

/* --- Section on cream with gold whisper (sustainability) --- */
.section-gold-trim { position: relative; }
.section-gold-trim::before {
  content: ''; position: absolute; top: 0; right: 50%; transform: translateX(50%);
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- "Why Afiyah" list --- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.why-num {
  font-family: var(--font-en); font-weight: 700; font-size: .8rem;
  color: var(--gold); border: 1px solid rgba(212,168,67,.4);
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.why-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.why-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.9; margin: 0; }

/* --- Oncology-center vision panel (moon over Madinah) --- */
.vision-panel {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #0E3350 0%, var(--blue-dark) 45%, var(--blue) 100%);
  color: var(--white); padding: 72px 56px;
  box-shadow: var(--shadow-xl);
}
.vision-panel::before {
  content: ''; position: absolute; top: -110px; left: -110px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,248,240,.28) 0%, rgba(253,248,240,.08) 45%, transparent 70%);
}
.vision-panel::after {
  content: ''; position: absolute; bottom: -140px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(212,168,67,.14);
}
.vision-panel .section-badge { background: rgba(212,168,67,.14); color: #E8CE8F; }
.vision-panel h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; line-height: 1.5; margin-bottom: 18px; position: relative; }
.vision-panel > p { color: rgba(255,255,255,.75); line-height: 2.1; max-width: 760px; font-size: 1.02rem; position: relative; margin-bottom: 32px; }
.vision-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; }
.vision-point {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md); padding: 18px 16px; text-align: center;
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.85);
  backdrop-filter: blur(6px); transition: var(--transition);
}
.vision-point:hover { background: rgba(255,255,255,.09); border-color: rgba(212,168,67,.3); }

/* --- International inspiration --- */
.inspire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto 28px; }
.inspire-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); padding: 36px 32px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: var(--transition);
}
.inspire-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: .7;
}
.inspire-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.inspire-card h3 { font-family: var(--font-en); direction: ltr; text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 10px; }
.inspire-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.95; margin: 0; }
.inspire-note {
  max-width: 900px; margin: 0 auto;
  background: var(--cream); border-radius: var(--radius-md);
  border-right: 3px solid var(--gold); padding: 22px 28px;
  font-size: .92rem; color: var(--gray-600); line-height: 2;
}

/* --- Sustainability model --- */
.sustain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sustain-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); padding: 34px 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.sustain-card::after {
  content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 60%); opacity: 0;
  transition: var(--transition);
}
.sustain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sustain-card:hover::after { opacity: 1; }
.sustain-icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: #FBF4E3; color: var(--gold);
}
.sustain-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.sustain-card p { font-size: .88rem; color: var(--gray-500); line-height: 1.9; margin: 0; }

/* --- Founding partners invitation --- */
.partner-invite {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,168,67,.08) 0%, transparent 60%),
    linear-gradient(160deg, #0F3854 0%, var(--blue-dark) 40%, var(--blue) 100%);
  color: var(--white); padding: 96px 0; position: relative; overflow: hidden;
}
.partner-invite::before {
  content: ''; position: absolute; top: 48px; right: 50%; transform: translateX(50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.9), rgba(253,248,240,.55) 55%, rgba(253,248,240,.12) 78%, transparent 90%);
  box-shadow: 0 0 48px rgba(253,248,240,.35), 0 0 110px rgba(253,248,240,.12);
  opacity: .85;
}
.partner-invite .container { position: relative; z-index: 2; text-align: center; }
.partner-invite h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); font-weight: 800; margin: 60px 0 16px; }
.partner-invite > .container > p { color: rgba(255,255,255,.75); max-width: 720px; margin: 0 auto 36px; line-height: 2.05; font-size: 1.02rem; }
.partner-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.partner-tag {
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 20px; border-radius: 50px; backdrop-filter: blur(6px);
}
.btn-gold {
  background: linear-gradient(135deg, #E3C06A, var(--gold));
  color: #2C2410; font-weight: 700;
  box-shadow: 0 4px 20px rgba(212,168,67,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,.4); }

/* --- Documents: status badges instead of dead links --- */
.doc-status {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
  font-size: .8rem; font-weight: 600; padding: 7px 16px; border-radius: 50px;
  width: fit-content;
}
.doc-status.preparing { background: var(--blue-pale); color: var(--blue); }
.doc-status.pending-approval { background: #FBF4E3; color: #9C7A25; }
.doc-status-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .7; }

/* --- News: founding-stage tag (no fake dates) --- */
.news-tag {
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  color: var(--white); padding: 6px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 600; border: 1px solid rgba(255,255,255,.2);
}
.news-img-4 { background: linear-gradient(135deg, #9C7A25 0%, var(--gold) 100%); }

/* --- Contact pathways --- */
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.path-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 26px 22px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column; gap: 8px;
}
.path-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--blue-pale); }
.path-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue);
}
.path-icon.pink { background: var(--pink-pale); color: var(--pink); }
.path-icon.green { background: var(--green-pale); color: var(--green); }
.path-icon.gold { background: #FBF4E3; color: var(--gold); }
.path-icon.purple { background: #EDE7F6; color: var(--purple); }
.path-icon.teal { background: #E0F2F1; color: var(--teal); }
.path-card h3 { font-size: .98rem; font-weight: 700; color: var(--blue-dark); }
.path-card p { font-size: .86rem; color: var(--gray-500); line-height: 1.85; margin: 0; }

/* --- Footer status line --- */
.footer-status { font-size: .78rem; color: rgba(255,255,255,.35); }

/* --- Accessibility: visible keyboard focus --- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue-light); outline-offset: 3px; border-radius: 4px;
}
.section-blue a:focus-visible, .partner-invite a:focus-visible,
.cta-section a:focus-visible, .hero a:focus-visible {
  outline-color: #E8CE8F;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- V4 responsive --- */
@media (max-width: 1024px) {
  .sustain-grid { grid-template-columns: repeat(2, 1fr); }
  .paths-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .inspire-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .vision-panel { padding: 48px 28px; }
  .vision-points { grid-template-columns: 1fr 1fr; }
  .hero-pillar { font-size: .84rem; }
}
@media (max-width: 480px) {
  .vision-points { grid-template-columns: 1fr; }
}
