/* =========================================================
   NEXERA MEDICARE
   Modern · Geometric · Refined
   Typography: Gilroy (with Manrope fallback)
   ========================================================= */

/* ---- Gilroy @font-face (drop your .woff2 files into /assets/fonts/) ---- */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

:root {
  /* Brand */
  --navy: #051d67;
  --navy-deep: #02103f;
  --navy-soft: #0a2a85;
  --teal: #0ba29d;
  --blue: #0d99e6;
  --blue-soft: #0b9cdf;
  --green: #37a783;
  --green-soft: #5cad4e;

  /* Surfaces */
  --cream: #f5efe3;
  --paper: #ede4cf;
  --ivory: #faf6ec;
  --bone: #e8dfc6;

  /* Ink */
  --ink: #0a1438;
  --ink-soft: #2c3658;
  --ink-mute: #6a7295;

  /* Type */
  --sans: "Gilroy", "Manrope", -apple-system, "Helvetica Neue", Helvetica, sans-serif;
  --sans-ar: "Tajawal", "Gilroy", "Manrope", sans-serif;

  /* Layout */
  --max: 1360px;
  --pad: clamp(20px, 4vw, 64px);
  --r: 2px;
  --nav-h: 76px;
}

[lang="ar"], [lang="fa"], [lang="fa"] { --sans: var(--sans-ar); }

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--navy); color: var(--cream); }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--cream);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* =========================================================
   Decorative overlays
   ========================================================= */

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-halo {
  position: fixed; left: 0; top: 0; width: 280px; height: 280px;
  border-radius: 50%; pointer-events: none; z-index: 9998;
  background: radial-gradient(circle, rgba(11,162,157,0.08), transparent 60%);
  transform: translate(-50%, -50%);
  transition: transform 220ms cubic-bezier(0.4,0,0.2,1), opacity 300ms;
  mix-blend-mode: multiply;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-halo { display: block; }
}

/* =========================================================
   TICKER
   ========================================================= */

.ticker {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 50;
}
.ticker__track {
  display: inline-flex; gap: 28px; align-items: center;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  animation: ticker 38s linear infinite;
}
.ticker__dot { color: var(--teal); font-size: 8px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
[dir="rtl"] .ticker__track { animation-direction: reverse; }

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(10,20,56,0.08);
  transition: background 300ms, box-shadow 300ms, padding 300ms;
}
.nav.is-scrolled {
  background: rgba(245,239,227,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__brand img {
  height: 28px; width: auto;
  transition: transform 400ms cubic-bezier(0.4,0,0.2,1);
}
.nav__brand:hover img { transform: scale(1.03); }

.nav__menu {
  display: flex; gap: 36px;
  justify-content: center;
}
.nav__menu a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  color: var(--ink);
  transition: color 200ms;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--navy);
  transform: scaleX(0); transform-origin: right;
  transition: transform 320ms cubic-bezier(0.4,0,0.2,1);
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__menu a.is-active { font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

/* Language dropdown selector */
.lang-select {
  position: relative;
}
.lang-select__trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px 8px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: rgba(10,20,56,0.06);
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}
.lang-select__trigger:hover { background: rgba(10,20,56,0.1); }
.lang-select.is-open .lang-select__trigger { background: var(--navy); color: var(--cream); }

.lang-select__flag {
  display: inline-flex;
  font-size: 16px;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.lang-select__current { font-size: 11px; letter-spacing: 0.08em; }

.lang-select__chev {
  transition: transform 240ms cubic-bezier(0.4,0,0.2,1);
}
.lang-select.is-open .lang-select__chev { transform: rotate(180deg); }

.lang-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 200px;
  background: var(--cream);
  border: 1px solid rgba(10,20,56,0.1);
  border-radius: 12px;
  box-shadow: 0 18px 40px -12px rgba(5,29,103,0.25), 0 4px 12px -4px rgba(0,0,0,0.08);
  padding: 6px;
  display: flex; flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 220ms cubic-bezier(0.4,0,0.2,1),
              transform 220ms cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 220ms;
  z-index: 110;
  list-style: none;
}
.lang-select.is-open .lang-select__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 220ms cubic-bezier(0.4,0,0.2,1),
              transform 220ms cubic-bezier(0.4,0,0.2,1),
              visibility 0s;
}
.lang-select__menu li { list-style: none; }
.lang-select__option {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: start;
  transition: background 180ms, color 180ms;
}
.lang-select__option:hover { background: rgba(10,20,56,0.06); }
.lang-select__option.is-active {
  background: var(--navy);
  color: var(--cream);
}
.lang-select__option .lang-select__name { font-weight: 500; }
.lang-select__option .lang-select__code {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 600;
}
.lang-select__option.is-active .lang-select__code { opacity: 0.8; }

/* RTL: keep the dropdown anchored to its trigger edge */
[dir="rtl"] .lang-select__menu { inset-inline-end: 0; }

.nav__toggle {
  display: none;
  width: 34px; height: 34px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav__toggle span {
  width: 22px; height: 1.5px; background: var(--ink);
  transition: transform 280ms, opacity 280ms;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Mobile drawer (rendered at body level so .nav backdrop-filter
   doesn't trap fixed positioning) */
.nav__drawer {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 320ms cubic-bezier(0.4,0,0.2,1),
              transform 320ms cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 320ms;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav__drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 320ms cubic-bezier(0.4,0,0.2,1),
              transform 320ms cubic-bezier(0.4,0,0.2,1),
              visibility 0s;
}
.nav__drawer-inner {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: calc(var(--nav-h) + 32px) var(--pad) 48px;
  min-height: 100%;
}
.nav__drawer a {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,20,56,0.1);
  transition: color 200ms, padding-inline-start 240ms;
}
.nav__drawer a:hover { color: var(--navy); padding-inline-start: 8px; }
.nav__drawer-cta {
  margin-top: 24px;
  color: var(--navy) !important;
  font-weight: 600;
}
/* Lock body scroll when drawer is open */
body.is-drawer-open { overflow: hidden; }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 280ms cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; border: 1px solid transparent;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy); color: var(--cream);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(5,29,103,0.45);
}
.btn--primary .btn__arrow,
.btn--primary svg {
  transition: transform 280ms cubic-bezier(0.4,0,0.2,1);
}
.btn--primary:hover .btn__arrow,
.btn--primary:hover svg { transform: translateX(4px); }
[dir="rtl"] .btn--primary:hover .btn__arrow,
[dir="rtl"] .btn--primary:hover svg { transform: translateX(-4px) scaleX(-1); }
[dir="rtl"] .btn svg { transform: scaleX(-1); }

.btn--inverse {
  background: var(--cream); color: var(--navy);
  border-color: var(--cream);
}
.btn--inverse:hover {
  background: var(--ivory);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.2);
}

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
  padding: 11px 20px;
  font-size: 12px;
}
.btn--ghost:hover {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}

.btn--link {
  padding: 13px 8px;
  border: none;
  color: var(--ink);
  background: transparent;
  position: relative;
  font-weight: 500;
}
.btn--link::after {
  content: "→";
  display: inline-block;
  margin-inline-start: 4px;
  transition: transform 240ms;
}
[dir="rtl"] .btn--link::after { content: "←"; }
.btn--link:hover::after { transform: translateX(4px); }
[dir="rtl"] .btn--link:hover::after { transform: translateX(-4px); }

.btn--full { width: 100%; justify-content: center; }

/* =========================================================
   COMMON
   ========================================================= */

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.eyebrow__bar {
  width: 28px; height: 1px; background: var(--ink-soft);
}
.eyebrow--light { color: rgba(245,239,227,0.7); }
.eyebrow--light .eyebrow__bar { background: rgba(245,239,227,0.5); }

.section-title {
  font-weight: 300;
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.section-title em {
  font-style: normal;
  color: var(--navy);
  font-weight: 500;
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--teal); font-weight: 500; }

[lang="ar"], [lang="fa"] .section-title { font-weight: 400; letter-spacing: 0; line-height: 1.2; }

.page-pad { padding-block: clamp(80px, 12vw, 160px); padding-inline: var(--pad); }
.container { max-width: var(--max); margin: 0 auto; }

/* =========================================================
   HERO (home)
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  padding: clamp(40px, 8vw, 100px) var(--pad) 60px;
  overflow: hidden;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__orb--1 {
  top: -10%; left: -5%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(11,162,157,0.45), transparent 70%);
  animation: float 18s ease-in-out infinite;
}
.hero__orb--2 {
  bottom: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,153,230,0.35), transparent 70%);
  animation: float 24s ease-in-out infinite reverse;
}
.hero__orb--3 {
  top: 30%; right: 20%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(55,167,131,0.3), transparent 70%);
  animation: float 30s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,20,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,20,56,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 70%);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
}

.hero__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: clamp(40px, 8vw, 90px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10,20,56,0.12);
  opacity: 0; animation: fadeUp 800ms 100ms forwards;
}
.hero__loc { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal);
  position: relative;
}
.dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--teal);
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero__title {
  font-weight: 300;
  font-size: clamp(42px, 8.5vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: clamp(28px, 4vw, 44px);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
[lang="ar"], [lang="fa"] .hero__title { font-weight: 400; line-height: 1.15; letter-spacing: 0; }

.hero__line { display: block; opacity: 0; transform: translateY(36px); }
.hero__line--1 { animation: fadeUp 1000ms 200ms forwards; }
.hero__line--2 {
  animation: fadeUp 1000ms 360ms forwards;
  font-weight: 500;
  color: var(--navy);
  padding-inline-start: clamp(20px, 8vw, 80px);
}

.hero__lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  max-width: 540px;
  color: var(--ink-soft);
  margin-bottom: clamp(32px, 4vw, 48px);
  opacity: 0; animation: fadeUp 1000ms 520ms forwards;
}

.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: clamp(60px, 8vw, 100px);
  opacity: 0; animation: fadeUp 1000ms 680ms forwards;
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(10,20,56,0.12);
  opacity: 0; animation: fadeUp 1000ms 840ms forwards;
}
.hero__strip-item { display: flex; flex-direction: column; gap: 6px; }
.hero__num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-feature-settings: "tnum";
}
.hero__lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  opacity: 0; animation: fadeUp 1000ms 1000ms forwards;
}
.hero__scroll svg { animation: scrollHint 2.4s ease-in-out infinite; }
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */

.page-head {
  position: relative;
  padding: clamp(60px, 10vw, 120px) var(--pad) clamp(40px, 6vw, 80px);
  overflow: hidden;
  background: var(--cream);
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(11,162,157,0.18), transparent 60%);
  pointer-events: none;
}
.page-head__inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 20px;
}
.page-head__title {
  font-weight: 300;
  font-size: clamp(40px, 7.5vw, 104px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: min(13ch, 100%);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
[lang="ar"], [lang="fa"] .page-head__title { font-weight: 400; line-height: 1.15; letter-spacing: 0; }
.page-head__title em { font-style: normal; color: var(--navy); font-weight: 500; }

.crumbs {
  display: flex; gap: 12px; align-items: center;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.crumbs a:hover { color: var(--ink); }
.crumbs__sep { opacity: 0.4; }

.page-head__lede {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  color: var(--ink-soft);
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: 26px 0;
  border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: inline-flex; gap: 40px; align-items: center;
  white-space: nowrap;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  animation: marquee 40s linear infinite;
}
.marquee__sep { color: var(--teal); font-size: 0.4em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
[dir="rtl"] .marquee__track { animation-direction: reverse; }

/* =========================================================
   INTRO
   ========================================================= */

.intro { padding: clamp(80px, 12vw, 160px) var(--pad); background: var(--cream); }
.intro__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.intro__col--art { position: sticky; top: 100px; color: var(--navy); opacity: 0.4; }
.intro__art svg { width: 100%; height: auto; }

.intro__title {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.intro__title em { font-style: normal; color: var(--navy); font-weight: 500; }
[lang="ar"], [lang="fa"] .intro__title { font-weight: 400; line-height: 1.4; }

.intro__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 620px;
}

.intro__list {
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid rgba(10,20,56,0.1);
  padding-top: 24px;
}
.intro__list li {
  display: flex; align-items: baseline; gap: 18px;
  font-size: 15px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,20,56,0.06);
}
.intro__chk {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  min-width: 24px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services { padding: clamp(80px, 12vw, 160px) var(--pad); background: linear-gradient(180deg, var(--cream), var(--paper)); position: relative; }
.services__head {
  max-width: var(--max); margin: 0 auto clamp(60px, 8vw, 100px);
  display: flex; flex-direction: column; gap: 24px;
}

.services__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,20,56,0.1);
  border: 1px solid rgba(10,20,56,0.1);
}
.service-card {
  background: var(--cream);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background 320ms;
  min-height: 380px;
}
.service-card:hover { background: var(--ivory); }

.service-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.service-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--navy);
  transition: color 320ms, transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card[data-tone="aesthetic"] .service-card__icon { color: var(--blue); }
.service-card[data-tone="dental"] .service-card__icon { color: var(--teal); }
.service-card[data-tone="obesity"] .service-card__icon { color: var(--green); }
.service-card[data-tone="eye"] .service-card__icon { color: var(--blue-soft); }
.service-card[data-tone="hair"] .service-card__icon { color: var(--green-soft); }
.service-card:hover .service-card__icon { transform: translateY(-4px) rotate(-3deg); }

.service-card__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
[lang="ar"], [lang="fa"] .service-card__title { font-weight: 700; line-height: 1.4; }

.service-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.service-card__list {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(10,20,56,0.08);
}
.service-card__list li {
  font-size: 13px;
  color: var(--ink);
  padding-inline-start: 16px;
  position: relative;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--teal);
  transform: rotate(45deg);
}

.service-card__cta {
  margin-top: 18px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card__cta::after {
  content: "→"; transition: transform 240ms;
}
[dir="rtl"] .service-card__cta::after { content: "←"; }
.service-card:hover .service-card__cta::after { transform: translateX(4px); }
[dir="rtl"] .service-card:hover .service-card__cta::after { transform: translateX(-4px); }

.service-card--cta {
  background: var(--navy);
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 36px;
}
.service-card--cta:hover { background: var(--navy-deep); }
.service-card__cta-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
[lang="ar"], [lang="fa"] .service-card__cta-title { font-weight: 700; }
.service-card__cta-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,239,227,0.75);
  margin-bottom: 32px;
}

/* =========================================================
   TREATMENT DETAIL (treatments/x sections)
   ========================================================= */

.tx {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background: var(--cream);
  border-top: 1px solid rgba(10,20,56,0.08);
}
.tx:nth-of-type(even) { background: var(--paper); }
.tx__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.tx__head { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 18px; }
.tx__num {
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
  opacity: 0.18;
}
.tx__title {
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
[lang="ar"], [lang="fa"] .tx__title { font-weight: 700; line-height: 1.3; }

.tx__body { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.tx__cta {
  display: inline-flex; gap: 8px; align-items: center;
  margin-top: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
}
.tx__cta::after { content: "→"; transition: transform 240ms; }
[dir="rtl"] .tx__cta::after { content: "←"; }
.tx__cta:hover::after { transform: translateX(4px); }
[dir="rtl"] .tx__cta:hover::after { transform: translateX(-4px); }

.tx__procs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(10,20,56,0.1);
  border: 1px solid rgba(10,20,56,0.1);
}
.tx__proc {
  background: var(--cream);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.tx__proc:hover { background: var(--ivory); }
.tx__proc h4 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tx__proc p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =========================================================
   HOSPITALS
   ========================================================= */

.hospitals { padding: clamp(80px, 12vw, 160px) var(--pad); background: var(--paper); }
.hospitals__head {
  max-width: var(--max); margin: 0 auto clamp(60px, 8vw, 100px);
  display: flex; flex-direction: column; gap: 24px;
}
.hospitals__lede { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 620px; }

.hospitals__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.hospitals__grid--solo {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  max-width: 1040px;
}
.hospitals__grid--solo .hospital--featured {
  grid-column: 1; grid-row: 1;
}
.hospitals__grid--solo .hospital--featured .hospital__media { height: 460px; }
.hospital {
  background: var(--cream);
  border: 1px solid rgba(10,20,56,0.08);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 480ms cubic-bezier(0.4,0,0.2,1), box-shadow 480ms;
}
.hospital:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(5,29,103,0.25); }
.hospital--featured { grid-column: span 2; grid-row: span 2; }
.hospital--mini { grid-column: span 1; }

.hospital__media {
  position: relative; height: 380px; overflow: hidden; background: var(--navy);
}
.hospital__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms cubic-bezier(0.4,0,0.2,1);
}
.hospital:hover .hospital__media img { transform: scale(1.04); }
.hospital__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,29,103,0.45));
}
.hospital__badge {
  position: absolute;
  top: 20px; inset-inline-start: 20px;
  background: var(--cream); color: var(--navy);
  padding: 8px 14px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  border-radius: 999px;
}

.hospital__placeholder {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); position: relative; overflow: hidden;
}
.hospital__placeholder[data-tone="a"] { background: linear-gradient(135deg, #051d67, #0a2a85); }
.hospital__placeholder[data-tone="b"] { background: linear-gradient(135deg, #0ba29d, #37a783); }
.hospital__placeholder[data-tone="c"] { background: linear-gradient(135deg, #0d99e6, #051d67); }
.hospital__placeholder[data-tone="d"] { background: linear-gradient(135deg, #5cad4e, #0ba29d); }
.hospital__placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hospital__mark {
  font-size: 88px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: rgba(245,239,227,0.95);
  position: relative; z-index: 2;
}

.hospital__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.hospital--featured .hospital__body { padding: 36px 40px 40px; }

.hospital__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-mute); margin-bottom: 12px;
}
.hospital__sep { opacity: 0.5; }

.hospital__name {
  font-weight: 400;
  font-size: 26px; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 14px;
}
.hospital--featured .hospital__name { font-size: 38px; }
[lang="ar"], [lang="fa"] .hospital__name { font-weight: 700; line-height: 1.3; }

.hospital__desc { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 20px; }
.hospital__desc-small { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 8px; }

.hospital__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  background: rgba(10,20,56,0.06); color: var(--ink);
  padding: 6px 12px;
  font-size: 11px; letter-spacing: 0.06em; font-weight: 500;
  border-radius: 999px;
}

.hospital__stats {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,20,56,0.1);
}
.hospital__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hospital__stats .num {
  font-size: 28px; font-weight: 300; letter-spacing: -0.02em;
  color: var(--navy);
  font-feature-settings: "tnum";
}
.hospital__stats div > span:last-child {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-mute);
}

/* =========================================================
   PROCESS
   ========================================================= */

.process {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(11,162,157,0.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(13,153,230,0.18), transparent 50%);
  pointer-events: none;
}
.process__head {
  position: relative;
  max-width: var(--max); margin: 0 auto clamp(60px, 8vw, 100px);
  display: flex; flex-direction: column; gap: 24px;
}
.process__lede { font-size: 17px; line-height: 1.6; color: rgba(245,239,227,0.7); max-width: 620px; }
.process__steps {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.process__step {
  padding: 32px 24px;
  border-inline-start: 1px solid rgba(245,239,227,0.15);
  display: flex; flex-direction: column; gap: 14px;
  transition: background 320ms;
}
.process__step:last-child { border-inline-end: 1px solid rgba(245,239,227,0.15); }
.process__step:hover { background: rgba(255,255,255,0.03); }

.process__num {
  font-weight: 300;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--teal);
}
.process__h {
  font-weight: 500;
  font-size: 22px; line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--cream);
}
[lang="ar"], [lang="fa"] .process__h { font-weight: 700; line-height: 1.4; }
.process__p { font-size: 13.5px; line-height: 1.55; color: rgba(245,239,227,0.7); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials { padding: clamp(80px, 12vw, 160px) var(--pad); background: var(--cream); }
.testimonials__head {
  max-width: var(--max); margin: 0 auto clamp(60px, 8vw, 100px);
  display: flex; flex-direction: column; gap: 24px;
}
.testimonials__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.testimonial {
  display: flex; flex-direction: column; gap: 28px;
  padding: 36px 32px;
  background: var(--ivory);
  border: 1px solid rgba(10,20,56,0.08);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute; top: 14px; inset-inline-start: 26px;
  font-size: 80px; line-height: 1;
  font-weight: 300;
  color: var(--teal); opacity: 0.5;
}
.testimonial__q {
  font-weight: 300;
  font-size: 20px; line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding-top: 32px;
}
[lang="ar"], [lang="fa"] .testimonial__q { font-weight: 400; line-height: 1.7; }

.testimonial__c {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(10,20,56,0.1);
}
.testimonial__name { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
.testimonial__loc { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: var(--ink-mute); }

/* =========================================================
   WHY
   ========================================================= */

.why { padding: clamp(80px, 12vw, 160px) var(--pad); background: linear-gradient(180deg, var(--cream), var(--bone)); }
.why__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.why__col { display: flex; flex-direction: column; gap: 24px; }
.why__body { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.why__dl { display: flex; flex-direction: column; border-top: 1px solid rgba(10,20,56,0.15); }
.why__row {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(10,20,56,0.1);
  align-items: baseline;
}
.why__row dt {
  font-weight: 300;
  font-size: 36px;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.why__row dd { font-size: 16px; line-height: 1.6; color: var(--ink); }

/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(11,162,157,0.2), transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(55,167,131,0.15), transparent 50%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__intro { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.contact__lede { font-size: 17px; line-height: 1.65; color: rgba(245,239,227,0.75); margin-bottom: 12px; }

.contact__channels { display: flex; flex-direction: column; border-top: 1px solid rgba(245,239,227,0.18); margin-top: 16px; }
.contact__channel {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245,239,227,0.12);
  align-items: center;
  transition: padding-inline-start 280ms, color 280ms;
}
.contact__channel:hover { padding-inline-start: 12px; color: var(--teal); }
.contact__ch-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: rgba(245,239,227,0.6);
}
.contact__ch-val {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.015em;
}

.contact__form {
  display: flex; flex-direction: column; gap: 20px;
  background: rgba(255,255,255,0.04);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(245,239,227,0.12);
  backdrop-filter: blur(8px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: rgba(245,239,227,0.7); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,239,227,0.25);
  color: var(--cream);
  padding: 10px 0;
  transition: border-color 240ms;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--teal); }
.field select { cursor: pointer; }
.field select option { color: var(--ink); background: var(--cream); }
.field textarea { resize: vertical; min-height: 80px; }

.form__note { font-size: 11px; letter-spacing: 0.06em; color: rgba(245,239,227,0.55); text-align: center; margin-top: 4px; }

/* =========================================================
   CTA STRIP (used on inner pages)
   ========================================================= */

.cta-strip {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  background: var(--cream);
  border-top: 1px solid rgba(10,20,56,0.1);
}
.cta-strip__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.cta-strip__title {
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
}
.cta-strip__title em { font-style: normal; color: var(--navy); font-weight: 500; }

/* =========================================================
   FOOTER
   ========================================================= */

.foot { background: var(--navy-deep); color: var(--cream); padding: clamp(60px, 8vw, 100px) var(--pad) 32px; }
.foot__top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(40px, 8vw, 120px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,239,227,0.12);
}
.foot__brand {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start;
}
.foot__logo { align-self: flex-start; }
.foot__logo { height: 32px; width: auto; filter: brightness(0) invert(1); }
.foot__motto {
  font-weight: 300;
  font-size: 18px; line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(245,239,227,0.85);
  max-width: 320px;
}

.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.foot__col h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
}
.foot__col ul { display: flex; flex-direction: column; gap: 10px; }
.foot__col a, .foot__col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(245,239,227,0.75);
  line-height: 1.7;
  transition: color 200ms;
}
.foot__col a:hover { color: var(--cream); }

.foot__bottom {
  max-width: var(--max); margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 11px; letter-spacing: 0.1em; font-weight: 500;
  color: rgba(245,239,227,0.6);
  text-transform: uppercase;
}
.foot__social { display: flex; gap: 24px; }
.foot__social a:hover { color: var(--teal); }

/* =========================================================
   WHATSAPP FLOATING
   ========================================================= */

.wa {
  position: fixed;
  bottom: 24px; inset-inline-end: 24px;
  z-index: 200;
  background: #25D366; color: white;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.04em; font-weight: 600;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,0.55), 0 6px 16px -8px rgba(0,0,0,0.3);
  transition: all 320ms cubic-bezier(0.4,0,0.2,1);
}
.wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -10px rgba(37,211,102,0.7), 0 8px 20px -8px rgba(0,0,0,0.4);
}
.wa__icon { display: inline-flex; align-items: center; justify-content: center; }
.wa__pulse {
  position: absolute; inset: 0; border-radius: 999px;
  background: #25D366; z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 720px) {
  .wa__label { display: none; }
  .wa { padding: 14px; }
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }

  .intro__inner { grid-template-columns: 1fr; }
  .intro__col--art { display: none; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .hospitals__grid { grid-template-columns: repeat(2, 1fr); }
  .hospital--featured { grid-column: span 2; grid-row: auto; }

  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step { border-inline: 1px solid rgba(245,239,227,0.15); }

  .testimonials__grid { grid-template-columns: 1fr; }

  .why__inner { grid-template-columns: 1fr; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__intro { position: static; }

  .foot__top { grid-template-columns: 1fr; }

  .tx__inner { grid-template-columns: 1fr; }
  .tx__head { position: static; }

  .cta-strip__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero__strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero__line--2 { padding-inline-start: 0; }
  .services__grid { grid-template-columns: 1fr; }
  .hospitals__grid { grid-template-columns: 1fr; }
  .hospital--featured { grid-column: span 1; }
  .hospital--featured .hospital__name { font-size: 28px; }
  .process__steps { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; }
  .foot__bottom { flex-direction: column; align-items: flex-start; }
  .tx__procs { grid-template-columns: 1fr; }

  .nav__inner { grid-template-columns: 1fr auto; gap: 12px; }
  .nav__brand img { height: 24px; }
  .lang-select__current { display: none; }
  .lang-select__trigger { padding: 8px 10px; }
  .btn--ghost { display: none; }

  .contact__channel {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }
  .contact__channel:hover { padding-inline-start: 0; }
  .contact__ch-val { font-size: 17px; word-break: break-word; }
  .contact__form { padding: 24px 18px; }
  .contact { padding-inline: clamp(16px, 4vw, 64px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   TREATMENT DETAIL PAGE
   ========================================================= */

/* Hero on detail page */
.tx-hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) var(--pad) clamp(40px, 6vw, 80px);
  overflow: hidden;
  background: var(--cream);
}
.tx-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.tx-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}
.tx-hero__eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-top: 12px;
}
.tx-hero__title {
  font-weight: 300;
  font-size: clamp(40px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18ch;
  overflow-wrap: break-word;
}
[lang="ar"] .tx-hero__title, [lang="fa"] .tx-hero__title {
  font-weight: 400; line-height: 1.15; letter-spacing: 0;
}
.tx-hero__tag {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy);
  max-width: 36ch;
}
.tx-hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}
.tx-hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 12px;
}

/* Stats strip */
.detail-stats {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(40px, 5vw, 60px) var(--pad);
  border-block: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.detail-stats::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(11,162,157,0.18), transparent 60%);
  pointer-events: none;
}
.detail-stats__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.detail-stats__item {
  display: flex; flex-direction: column; gap: 8px;
  padding-inline-start: 18px;
  border-inline-start: 1px solid rgba(245,239,227,0.18);
}
.detail-stats__num {
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-feature-settings: "tnum";
}
.detail-stats__lbl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  color: rgba(245,239,227,0.65);
}

/* About text section */
.detail-about {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background: var(--cream);
}
.detail-about__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.detail-about__title {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 22ch;
}
[lang="ar"] .detail-about__title, [lang="fa"] .detail-about__title {
  font-weight: 700; line-height: 1.4;
}
.detail-about__p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 720px;
}
.detail-about__p:last-child { margin-bottom: 0; }

/* Detail list (problems / benefits) */
.detail-list {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background: var(--paper);
}
.detail-list--benefits {
  background: var(--navy);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.detail-list--benefits::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(11,162,157,0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(13,153,230,0.16), transparent 50%);
  pointer-events: none;
}
.detail-list__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.detail-list__head {
  display: flex; flex-direction: column; gap: 24px;
}
.detail-list__items {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(10,20,56,0.15);
}
.detail-list__items--light {
  border-top-color: rgba(245,239,227,0.18);
}
.detail-list__item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid rgba(10,20,56,0.1);
}
.detail-list__items--light .detail-list__item {
  color: var(--cream);
  border-bottom-color: rgba(245,239,227,0.12);
}
.detail-list__num {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-feature-settings: "tnum";
}

/* Variant: tx section reused on detail page */
.tx--detail { background: var(--cream); }

/* Detail process */
.detail-process {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background: var(--cream);
}
.detail-process__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(40px, 5vw, 60px);
}
.detail-process__head { display: flex; flex-direction: column; gap: 24px; }
.detail-process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.detail-process__step {
  background: var(--ivory);
  border: 1px solid rgba(10,20,56,0.08);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 320ms, border-color 320ms;
}
.detail-process__step:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}
.detail-process__num {
  font-weight: 300;
  font-size: 36px; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--teal);
  font-feature-settings: "tnum";
}
.detail-process__h {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
[lang="ar"] .detail-process__h, [lang="fa"] .detail-process__h {
  font-weight: 700; line-height: 1.4;
}
.detail-process__p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* FAQ accordion */
.detail-faq {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background: linear-gradient(180deg, var(--cream), var(--paper));
}
.detail-faq__inner {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(40px, 5vw, 60px);
}
.detail-faq__head { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.detail-faq__items {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(10,20,56,0.12);
}

.faq {
  border-bottom: 1px solid rgba(10,20,56,0.12);
  transition: background 200ms;
}
.faq[open] { background: var(--ivory); }
.faq__q {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 200ms;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ''; }
.faq__q:hover { color: var(--navy); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(10,20,56,0.2);
  border-radius: 999px;
  color: var(--navy);
  transition: transform 320ms cubic-bezier(0.4,0,0.2,1), background 200ms, color 200ms;
}
.faq[open] .faq__icon {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 4px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
}

/* Responsive overrides for detail page */
@media (max-width: 1100px) {
  .detail-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .detail-about__inner { grid-template-columns: 1fr; }
  .detail-list__inner { grid-template-columns: 1fr; }
  .detail-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .detail-stats__inner { grid-template-columns: 1fr; gap: 24px; }
  .detail-process__steps { grid-template-columns: 1fr; }
  .faq__q { font-size: 16px; padding: 18px 4px; }
  .faq__a { font-size: 15px; }
}

