/* ============================================================
   Alfa Plus — Citizenship Investment Site
   Built on the Alfa Plus design system. Inter (EN) + IBM Plex Sans Arabic (AR).
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: url("assets/Inter.ttf") format("truetype");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/Inter-Italic.ttf") format("truetype");
  font-weight: 100 900; font-style: italic; font-display: swap;
}

:root {
  /* Brand palette */
  --alfa-mint:      #9FF3E8;
  --alfa-mint-soft: #B3F4E9;
  --alfa-mint-wash: #D9F3EE;
  --alfa-lavender:  #A9B8FE;
  --alfa-cream:     #F8F3F1;
  --alfa-paper:     #FCFCFC;
  --alfa-mist:      #F5F5F5;
  --alfa-ink:       #000000;
  --alfa-graphite:  #282828;
  --alfa-white:     #FFFFFF;

  --gray-900:#1a1a1a; --gray-700:#404040; --gray-500:#737373;
  --gray-400:#9e9e9e; --gray-300:#cfcfcf; --gray-200:#e5e5e5; --gray-100:#efefef;

  /* Dark hero ground */
  --night:    #0c0d10;
  --night-2:  #15161b;

  /* Accent (tweakable) */
  --accent: var(--alfa-mint);
  --accent-alt: var(--alfa-lavender);

  --grad-title: linear-gradient(100deg, var(--alfa-mint) 0%, var(--alfa-lavender) 30%, #ffffff 50%, var(--alfa-lavender) 70%, var(--alfa-mint) 100%);
  --gradient-mint: linear-gradient(124deg, var(--alfa-mint) -44%, var(--alfa-cream) 98%);
  --gradient-lavender: linear-gradient(127deg, var(--alfa-cream) 0%, var(--alfa-lavender) 163%);

  --font-en: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Inter", sans-serif;
  --font: var(--font-en);

  --container: 1160px;
  --pad: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.10);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--alfa-ink);
  background: var(--alfa-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
[lang="ar"] { --font: var(--font-ar); }
[dir="rtl"] body, body[dir] { }

h1,h2,h3,h4,p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  border: none; border-radius: 999px; cursor: pointer;
  padding: 15px 28px; line-height: 1; white-space: nowrap;
  transition: transform .16s var(--ease), filter .16s var(--ease), background .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--alfa-graphite); color: #fff; }
.btn-primary:hover { filter: brightness(1.15); }
.btn-light { background: #fff; color: var(--alfa-ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { filter: brightness(.96); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-accent { background: var(--accent); color: var(--alfa-ink); }
.btn-accent:hover { filter: brightness(.96); }
.btn .arrow { display: inline-block; transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
[dir="rtl"] .btn .arrow { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(4px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-500);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.eyebrow.on-dark { color: rgba(255,255,255,.6); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px,4vw,48px);
  transition: background .3s, box-shadow .3s, padding .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(252,252,252,.82); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.05); padding-top: 14px; padding-bottom: 14px;
}
.nav.on-dark:not(.scrolled) .nav-logo { filter: invert(1) brightness(2); }
.nav.on-dark:not(.scrolled) .nav-link { color: rgba(255,255,255,.78); }
.nav-logo { height: 38px; transition: filter .3s; }
.nav-links { display: flex; align-items: center; gap: clamp(18px,3vw,40px); }
.nav-link { font-size: 15px; color: var(--gray-700); transition: color .2s; }
.nav-link:hover { color: var(--alfa-ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; align-items: center; border-radius: 999px;
  border: 1px solid var(--gray-300); overflow: hidden; font-size: 11px; font-weight: 600;
}
.nav.on-dark:not(.scrolled) .lang-toggle { border-color: rgba(255,255,255,.25); }
.lang-toggle button {
  border: none; background: transparent; cursor: pointer; padding: 4px 9px;
  font-family: var(--font); font-weight: 600; color: var(--gray-500); transition: all .2s;
}
.nav.on-dark:not(.scrolled) .lang-toggle button { color: rgba(255,255,255,.6); }
.lang-toggle button.active { background: var(--alfa-ink); color: #fff; }
.nav.on-dark:not(.scrolled) .lang-toggle button.active { background: #fff; color: var(--alfa-ink); }
.nav-burger { display: none; }
@media (max-width: 1040px) {
  .nav-links .nav-link { display: none; }
}

/* ============================================================
   HERO (shared)
   ============================================================ */
.hero { position: relative; overflow: hidden; }

/* shimmering gradient title */
.grad-text {
  background: var(--grad-title);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
@media (prefers-reduced-motion: reduce) { .grad-text { animation: none; } }

/* ---- Hero B: split + bento collage ---- */
.heroB {
  background: linear-gradient(180deg, #ffffff 0%, var(--alfa-mint-wash) 100%); color: var(--alfa-ink);
  min-height: 100vh; display: flex; align-items: center; padding: 150px 0 90px;
}
.heroB-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
[dir="rtl"] .heroB-copy { text-align: right; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  padding: 8px 8px 8px 14px; border: 1px solid var(--gray-300); border-radius: 999px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(6px);
  font-size: 14px; font-weight: 500; color: var(--alfa-ink); transition: border-color .2s, transform .2s;
}
.hero-badge:hover { border-color: var(--accent); transform: translateY(-1px); }
.hero-badge-ico { display: grid; place-items: center; }
.hero-badge-ico svg { width: 17px; height: 17px; stroke: #16a394; }
.hero-badge-arrow { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--alfa-mint-wash); }
.hero-badge-arrow svg { width: 13px; height: 13px; stroke: var(--alfa-ink); }
.heroB h1 { font-size: clamp(34px,4.3vw,58px); font-weight: 500; line-height: 1.04; letter-spacing: -.03em; margin: 24px 0 0; }
.heroB h1 span { display: block; white-space: nowrap; }
.heroB .grad-text { background: none; background-image: linear-gradient(100deg, #16a394, var(--alfa-lavender), #16a394); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.heroB .sub { font-size: 18.5px; line-height: 1.6; color: var(--gray-700); max-width: 500px; margin: 24px 0 32px; }
[dir="rtl"] .heroB .sub { margin-left: auto; }
.heroB .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero logo trust row */
.hero-logos { margin-top: 48px; }
.hero-logos-label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 18px; }
.hero-logos-row { display: flex; align-items: center; gap: clamp(20px,2.6vw,36px); flex-wrap: wrap; }
.hero-logos-row img { height: 30px; width: auto; max-width: 96px; object-fit: contain; filter: grayscale(1); opacity: .55; transition: opacity .25s, filter .25s; }
.hero-logos-row img:hover { filter: grayscale(0); opacity: 1; }

/* bento collage */
.heroB-visual { position: relative; }
.bento {
  display: grid; grid-template-columns: .78fr 1.22fr;
  grid-template-rows: 168px 158px 176px; gap: 16px;
  grid-template-areas: "a b" "c c" "de de";
}
.bento > * { border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; position: relative; }
.bento-a { grid-area: a; background: var(--gradient-mint); display: grid; place-items: center; }
.bento-glyph svg { width: 60px; height: 60px; stroke: rgba(12,13,16,.62); stroke-width: 1.6; }
.bento-b { grid-area: b; }
.bento-c { grid-area: c; background: linear-gradient(120deg, #1f8f9e 0%, #2a6fdb 100%); color: #fff; padding: 22px 26px; display: flex; flex-direction: column; justify-content: space-between; }
.bento-de { grid-area: de; display: grid; grid-template-columns: 1.22fr .78fr; gap: 16px; }
.bento-de > * { border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; position: relative; }
.bento-photo { background: var(--gradient-lavender); }
.bento-photo photo-slot { width: 100%; height: 100%; display: block; }
.bento-pill {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px); font-size: 13px; font-weight: 600; color: var(--alfa-ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
[dir="rtl"] .bento-pill { left: auto; right: 14px; }
.bento-pill-ico { display: grid; place-items: center; }
.bento-pill-ico svg { width: 14px; height: 14px; stroke: var(--gray-500); }
.bento-stat-label { font-size: 14px; opacity: .85; }
.bento-stat-row { display: flex; align-items: baseline; gap: 12px; margin-top: 6px; }
.bento-stat-row b { font-size: clamp(26px,3vw,36px); font-weight: 600; letter-spacing: -.02em; }
.bento-chip { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,.22); }
.bento-chip svg { width: 12px; height: 12px; stroke: #fff; }
.bento-chart { width: 100%; height: 56px; opacity: .9; }
@media (prefers-reduced-motion: no-preference) {
  .bento-chart-line { stroke-dasharray: 640; stroke-dashoffset: 640; }
  .heroB-visual.in .bento-chart-line { animation: bentoDraw 1.7s .45s cubic-bezier(.22,.61,.36,1) forwards; }
  @keyframes bentoDraw { to { stroke-dashoffset: 0; } }
  .bento-c .bento-chip { transform: scale(.4); opacity: 0; transform-origin: left center; }
  .heroB-visual.in .bento-c .bento-chip { animation: bentoChipPop .55s 1.5s cubic-bezier(.34,1.56,.64,1) forwards; }
  @keyframes bentoChipPop { 60% { transform: scale(1.12); } to { transform: scale(1); opacity: 1; } }
}
.bento-chat {
  position: absolute; right: -10px; bottom: -18px; z-index: 4;
  display: inline-flex; align-items: center; gap: 10px; max-width: 240px;
  padding: 13px 16px; border-radius: 16px 16px 4px 16px; background: #fff;
  box-shadow: var(--shadow-lg); font-size: 14px; line-height: 1.35; color: var(--alfa-graphite);
  animation: chatFloat 5s var(--ease) infinite;
}
[dir="rtl"] .bento-chat { right: auto; left: -10px; border-radius: 16px 16px 16px 4px; }
.bento-chat-ico { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); }
.bento-chat-ico svg { width: 16px; height: 16px; stroke: var(--alfa-ink); fill: var(--alfa-ink); }
@keyframes chatFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .bento-chat { animation: none; } }
@media (max-width: 960px) {
  .heroB-grid { grid-template-columns: 1fr; gap: 44px; }
  .heroB .sub { max-width: 560px; }
  .bento-chat { right: 8px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.sec { padding: clamp(72px,9vw,120px) 0; }
.sec-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.sec-head h2 { font-size: clamp(30px,4vw,46px); font-weight: 400; line-height: 1.06; letter-spacing: -.02em; margin: 16px 0 0; }
.sec-head p { font-size: 18px; line-height: 1.6; color: var(--gray-700); margin-top: 18px; }
.sec-cream { background: var(--alfa-cream); }
.sec-mist { background: var(--alfa-mist); }
.sec-ink { background: var(--night); color: #fff; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.stat { text-align: center; padding: 36px 18px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); }
.sec-ink .stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); box-shadow: none; }
.stat .num { font-size: clamp(38px,4.5vw,56px); font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.stat .num .grad-text { background: none; background-image: linear-gradient(100deg,#16a394,var(--alfa-lavender),#16a394); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; }
.sec-ink .stat .num .grad-text { background: none; background-image: var(--grad-title); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; }
.stat .lbl { margin-top: 14px; font-size: 15px; color: var(--gray-500); line-height: 1.4; }
.sec-ink .stat .lbl { color: rgba(255,255,255,.6); }
@media (max-width:780px){ .stats{ grid-template-columns: repeat(2,1fr);} }

/* Benefits grid */
.bgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bcard {
  background: #fff; border-radius: 16px; padding: 36px 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bcard .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; background: var(--alfa-mint-wash); }
.bcard:nth-child(3n+2) .ico { background: #ECE9FF; }
.bcard .ico svg { width: 26px; height: 26px; stroke: var(--alfa-ink); }
.bcard h3 { font-size: 21px; font-weight: 500; letter-spacing: -.01em; }
.bcard p { margin-top: 12px; font-size: 15.5px; line-height: 1.55; color: var(--gray-700); }
@media (max-width:880px){ .bgrid{ grid-template-columns: 1fr 1fr;} }
@media (max-width:560px){ .bgrid{ grid-template-columns: 1fr;} }

/* Opportunity intro */
.opp-intro { max-width: 880px; margin: 0 auto; text-align: center; }
.opp-lead { font-size: clamp(20px,2.4vw,28px); line-height: 1.5; color: var(--gray-700); font-weight: 400; margin: 20px auto 0; max-width: 820px; text-wrap: pretty; }
.opp-sector { font-size: clamp(34px,5vw,60px); font-weight: 500; letter-spacing: -.02em; line-height: 1.05; margin-top: 18px; }
.opp-sector .grad-text { background: none; background-image: linear-gradient(100deg,#16a394,var(--alfa-lavender),#16a394); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.opp-media { display: block; width: 100%; margin-top: 56px; min-height: 420px; height: clamp(340px,46vw,520px); border-radius: 23px; overflow: hidden; box-shadow: var(--shadow-lg); }
[dir="rtl"] .opp-intro, [dir="rtl"] .partner-note { text-align: center; }

/* Partnership */
.partners { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.partner { background: #fff; border-radius: 18px; padding: 40px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.partner-mark { height: 48px; display: flex; align-items: center; margin-bottom: 24px; }
.partner-mark img { height: 32px; width: auto; }
.partner-mark .partner-name { font-size: 28px; font-weight: 600; letter-spacing: -.02em; color: var(--alfa-ink); }
.partner h3 { font-size: 23px; font-weight: 500; letter-spacing: -.01em; }
.partner p { margin-top: 12px; font-size: 16px; line-height: 1.62; color: var(--gray-700); }
.partner-note { max-width: 880px; margin: 44px auto 0; text-align: center; font-size: 17px; line-height: 1.7; color: var(--gray-700); text-wrap: pretty; }
@media (max-width:780px){ .partners{ grid-template-columns: 1fr;} }

/* Thesis / feature */
.thesis { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.thesis .copy h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 400; letter-spacing: -.02em; line-height: 1.08; margin: 14px 0 0; }
.thesis .copy p { font-size: 17px; line-height: 1.65; color: var(--gray-700); margin-top: 20px; }
.thesis ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.thesis li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--alfa-graphite); }
.thesis li .chk { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.thesis li .chk svg { width: 13px; height: 13px; stroke: var(--alfa-ink); }
.thesis .accred { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--gray-200); }
.thesis .accred-title { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 18px; }
.thesis .accred-logos { display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: flex-start; }
.thesis .accred-logos figure { margin: 0; width: 88px; display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; }
.thesis .accred-logos img { height: 46px; width: auto; max-width: 88px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .3s var(--ease), opacity .3s var(--ease); }
.thesis .accred-logos figure:hover img { filter: grayscale(0); opacity: 1; }
.thesis .accred-logos figcaption { font-size: 11px; line-height: 1.35; color: var(--gray-500); text-wrap: balance; }
.media-placeholder {
  position: relative; border-radius: 23px; overflow: hidden; width: 100%; min-height: 460px; height: 460px;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.025) 0 2px, transparent 2px 13px),
    var(--gradient-mint);
  box-shadow: var(--shadow-lg); display: grid; place-items: center;
}
.media-placeholder .tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12.5px;
  color: rgba(0,0,0,.5); background: rgba(255,255,255,.6); backdrop-filter: blur(4px);
  padding: 8px 14px; border-radius: 999px; letter-spacing: .02em;
}
.thesis .media-placeholder.alt { background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.025) 0 2px, transparent 2px 13px),
    var(--gradient-lavender); }
@media (max-width:880px){ .thesis{ grid-template-columns: 1fr; gap: 40px;} .media-placeholder{ min-height: 320px;} }

/* Board of directors */
.board-wrap { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--gray-200); }
.board-head { margin-bottom: 34px; }
.board { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.board-card { background: #fff; border-radius: 18px; padding: 28px 28px 32px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.board-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.board-avatar { width: 100%; aspect-ratio: 1 / 1; margin: 0 auto 22px; border-radius: 18px; overflow: hidden; box-shadow: 0 0 0 1px var(--gray-200); }
.board-avatar photo-slot { width: 100%; height: 100%; display: block; }
.board-card h3 { font-size: 20px; font-weight: 500; letter-spacing: -.01em; }
.board-card p { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--gray-500); text-wrap: pretty; }
@media (max-width:880px){ .board{ grid-template-columns: 1fr; max-width: 420px; margin: 0 auto;} }

/* Governance & oversight */
.gov-manager { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 0 auto 44px; padding: 30px 40px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); width: fit-content; }
.gov-manager-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); }
.gov-manager img { height: 62px; width: auto; }
.gov-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.gov-card { background: #fff; border-radius: 16px; padding: 30px 24px; box-shadow: var(--shadow-sm); text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.gov-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gov-role { font-size: 15px; font-weight: 600; color: var(--alfa-ink); letter-spacing: -.01em; }
.gov-logo { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 92px; margin: 18px 0 16px; }
.gov-logo img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; }
.gov-org { font-size: 13px; color: var(--gray-500); padding-top: 14px; border-top: 1px solid var(--gray-200); width: 100%; }
@media (max-width:880px){ .gov-grid{ grid-template-columns: 1fr 1fr;} }
@media (max-width:460px){ .gov-grid{ grid-template-columns: 1fr;} }

/* Process timeline */
.steps { position: relative; max-width: 860px; margin: 0 auto; }
.steps::before { content:""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--accent), var(--accent-alt)); }
[dir="rtl"] .steps::before { left: auto; right: 27px; }
.step { display: flex; gap: 28px; padding: 22px 0; align-items: flex-start; }
.step .n {
  flex: none; width: 56px; height: 56px; border-radius: 50%; background: #fff;
  border: 2px solid var(--accent); display: grid; place-items: center;
  font-size: 20px; font-weight: 600; z-index: 2; box-shadow: var(--shadow-sm);
}
.step .st-body h3 { font-size: 22px; font-weight: 500; letter-spacing: -.01em; }
.step .st-body p { margin-top: 8px; font-size: 16px; line-height: 1.6; color: var(--gray-700); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--alfa-mint-wash) 0%, #ECE9FF 100%); color: var(--alfa-ink); border: 1px solid var(--gray-200); border-radius: 32px; padding: clamp(36px,5vw,64px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,56px); align-items: center; }
.cta-band .orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-band .o1 { width: 360px; height: 360px; background: var(--alfa-mint); top: -140px; left: -60px; opacity: .5; }
.cta-band .o2 { width: 360px; height: 360px; background: var(--alfa-lavender); bottom: -160px; right: -40px; opacity: .45; }
.cta-band-copy { position: relative; z-index: 1; text-align: left; }
[dir="rtl"] .cta-band-copy { text-align: right; }
.cta-band h2 { position: relative; font-size: clamp(28px,3.4vw,44px); font-weight: 400; letter-spacing: -.02em; line-height: 1.06; }
.cta-band p { position: relative; margin: 16px 0 0; max-width: 520px; font-size: 17px; line-height: 1.6; color: var(--gray-700); }
.cta-band-media { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 380px; display: block; box-shadow: var(--shadow-md); border-radius: 24px; overflow: hidden; }
.cta-form { position: relative; margin: 30px 0 0; max-width: 520px; display: flex; flex-direction: column; gap: 12px; }
.cta-form input {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--alfa-ink);
  background: #fff; border: 1px solid var(--gray-300); border-radius: 999px;
  padding: 15px 22px; outline: none; transition: border .2s;
}
.cta-form input::placeholder { color: var(--gray-400); }
.cta-form input:focus { border-color: var(--accent); }
.cta-phone { display: flex; gap: 10px; }
.cta-phone input { flex: 1; min-width: 0; }
.cta-code {
  flex: 0 0 auto; width: 200px; font-family: var(--font); font-size: 16px; color: var(--alfa-ink);
  background: #fff; border: 1px solid var(--gray-300); border-radius: 999px;
  padding: 15px 18px; outline: none; cursor: text; transition: border .2s; -webkit-appearance: none; appearance: none;
}
.cta-code:focus { border-color: var(--accent); }
.cta-code option { color: #0c0d10; background: #fff; }
.cta-form .btn { width: 100%; justify-content: center; }
[dir="rtl"] .cta-code { direction: ltr; }
.cta-note { position: relative; margin-top: 16px; font-size: 13px; color: var(--gray-500); }
.form-alert {
  position: relative; display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 14px; max-width: 520px;
  font-size: 14px; font-weight: 500; line-height: 1.4;
}
.form-alert-ico { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-alert-ico::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.form-alert.success { background: #e8f7ee; color: #1a7f4b; }
.form-alert.success .form-alert-ico { background: #1a7f4b; color: #fff; }
.form-alert.success .form-alert-ico::before { width: 10px; height: 6px; border-radius: 0; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg) translateY(-1px); background: none; }
.form-alert.error { background: #fdecec; color: #b3261e; }
.form-alert.error .form-alert-ico { background: #b3261e; color: #fff; }
@media (max-width: 860px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-media { min-height: 280px; order: -1; }
}

/* Footer */
.footer { padding: 64px 0 48px; background: var(--alfa-paper); border-top: 1px solid var(--gray-200); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer-logo { height: 28px; margin-bottom: 16px; }
.footer p { max-width: 320px; font-size: 14.5px; line-height: 1.6; color: var(--gray-500); }
.footer-cols { display: flex; gap: clamp(36px,6vw,80px); flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 15px; color: var(--gray-700); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--alfa-ink); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--gray-200); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--gray-400); }

/* ============================================================
   SUBPAGES (About / Documents)
   ============================================================ */
.subpage { padding-top: 92px; }
.subhead { padding: 64px 0 8px; }
.subhead .container { max-width: 860px; }
.subhead h1 { font-size: clamp(36px,5vw,60px); font-weight: 400; letter-spacing: -.025em; line-height: 1.04; margin: 16px 0 0; }
.subhead .lead { font-size: clamp(18px,1.9vw,21px); line-height: 1.6; color: var(--gray-700); margin-top: 20px; max-width: 660px; text-wrap: pretty; }
[dir="rtl"] .subhead .lead { margin-left: auto; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px,2.8vw,32px); font-weight: 500; letter-spacing: -.015em; margin: 48px 0 0; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--gray-700); margin-top: 16px; text-wrap: pretty; }
.prose .lead-fact { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 30px; }
.prose .lead-fact .lf { flex: 1 1 180px; padding: 22px 24px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); }
.prose .lead-fact .lf b { display: block; font-size: 28px; font-weight: 500; letter-spacing: -.02em; color: var(--alfa-ink); }
.prose .lead-fact .lf span { font-size: 14px; color: var(--gray-500); margin-top: 6px; display: block; }

/* Two-card partnership reuse on about page sits fine via .partners */

/* Document checklist */
.doc-groups { display: grid; gap: 28px; margin-top: 8px; }
.doc-group { background: #fff; border-radius: 18px; padding: 36px 38px; box-shadow: var(--shadow-sm); }
.doc-group h3 { font-size: 20px; font-weight: 600; letter-spacing: -.01em; display: flex; align-items: center; gap: 12px; }
.doc-group h3 .gnum { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--alfa-mint-wash); display: grid; place-items: center; font-size: 14px; font-weight: 600; }
.doc-group ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.doc-group li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--alfa-graphite); }
.doc-group li .chk { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.doc-group li .chk svg { width: 13px; height: 13px; stroke: var(--alfa-ink); }
.doc-note { margin-top: 28px; padding: 22px 26px; border-radius: 14px; background: var(--alfa-mist); font-size: 15px; line-height: 1.6; color: var(--gray-700); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-500); margin-top: 56px; text-decoration: none; }
.back-link:hover { color: var(--alfa-ink); }
@media (max-width:880px){ .doc-group{ padding: 28px 24px;} }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; grid-auto-flow: dense; }
.gallery photo-slot {
  display: block; width: 100%; height: 100%; min-height: 240px;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
  background: #fff;
}
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
.gallery-cap { margin-top: 12px; font-size: 14px; color: var(--gray-500); }
@media (max-width: 880px){ .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .g-wide { grid-column: span 2; } }
@media (max-width: 540px){ .gallery { grid-template-columns: 1fr; } .gallery .g-wide, .gallery .g-tall { grid-column: auto; grid-row: auto; } }

/* Facilities gallery (DentSpa) */
.fac-intro { max-width: 760px; margin: 0 0 38px; }
.fac-intro h2 { font-size: clamp(26px,3.4vw,40px); font-weight: 400; letter-spacing: -.02em; line-height: 1.08; }
.fac-intro p { font-size: 18px; line-height: 1.6; color: var(--gray-700); margin-top: 14px; text-wrap: pretty; }
.fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fac-card { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; background: var(--alfa-mist); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.fac-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.fac-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fac-card figcaption { position: absolute; inset: auto 0 0 0; padding: 28px 18px 15px; color: #fff; font-size: 15px; font-weight: 500; letter-spacing: -.01em; background: linear-gradient(to top, rgba(12,13,16,.72), rgba(12,13,16,0)); }
[dir="rtl"] .fac-card figcaption { text-align: right; }
.fac-card.fac-wide { grid-column: span 2; aspect-ratio: 8 / 3; }
.fac-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 8px 0 0; padding: 40px clamp(28px,4vw,56px); border-radius: 24px; background: var(--night); color: #fff; }
.fac-stats .fac-stat .num { font-size: clamp(30px,3.6vw,46px); font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.fac-stats .fac-stat .num .grad-text { background-image: linear-gradient(100deg, var(--alfa-mint), var(--alfa-lavender)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fac-stats .fac-stat .lbl { margin-top: 12px; font-size: 14.5px; line-height: 1.45; color: rgba(255,255,255,.66); }
@media (max-width: 880px){ .fac-grid { grid-template-columns: repeat(2, 1fr); } .fac-card.fac-wide { grid-column: span 2; aspect-ratio: 16 / 7; } .fac-stats { grid-template-columns: repeat(2, 1fr); row-gap: 32px; } }
@media (max-width: 540px){ .fac-grid { grid-template-columns: 1fr; } .fac-card, .fac-card.fac-wide { grid-column: auto; aspect-ratio: 4 / 3; } }

/* About page — fully centered */
.page-about .subhead .container,
.page-about .prose { margin-left: auto; margin-right: auto; text-align: center; }
.page-about .subhead .eyebrow { justify-content: center; }
.page-about .subhead .lead { margin-left: auto; margin-right: auto; }
.page-about .prose .lead-fact { justify-content: center; }

/* Gallery page — fully centered */
.page-gallery .subhead .container { margin-left: auto; margin-right: auto; text-align: center; }
.page-gallery .subhead .eyebrow { justify-content: center; }
.page-gallery .subhead .lead { margin-left: auto; margin-right: auto; }
.page-gallery .fac-intro { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.page-gallery .fac-stats { text-align: center; }
.page-gallery .back-link { display: flex; justify-content: center; }
.page-about .prose .lead-fact .lf { text-align: center; flex: 0 1 200px; }
.page-about .sec-head { text-align: center; }
.page-about .sec-head .eyebrow { justify-content: center; }
.page-about .back-link { justify-content: center; width: 100%; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }
