/* ============================================================
   HFK LEGAL - Redesign Preview v5
   Cinematic dark: deep ink, glass, brass · matches hero banner
   ============================================================ */

:root {
  --bg0: #0c131d;
  --bg1: #111a26;
  --bg2: #16202e;
  --txt: #edeef0;
  --dim: rgba(237, 238, 240, 0.6);
  --faint: rgba(237, 238, 240, 0.38);
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-2: rgba(255, 255, 255, 0.09);
  --sand: #f3ede1;
  --sand-2: #ece4d4;
  --warm-line: rgba(150, 117, 74, 0.25);
  --ink-on: #1c2635;
  --dim-on: #4f5a68;
  --line-on: rgba(28, 38, 53, 0.13);
  --gold-deep: #96754a;
  --gold: #c9a468;
  --gold-2: #b08d57;
  --gold-dim: rgba(201, 164, 104, 0.32);
  --radius: 18px;
  --font-display: 'Fraunces', 'Playfair Display', 'Tajawal', Georgia, serif;
  --font-body: 'Manrope', 'Tajawal', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html[lang="ar"], html[lang="ur"] {
  --font-display: 'Tajawal', 'Amiri', 'Segoe UI', sans-serif;
  --font-body: 'Tajawal', 'Amiri', 'Segoe UI', sans-serif;
}
html[lang="hi"] {
  --font-display: 'Mukta', 'Nirmala UI', sans-serif;
  --font-body: 'Mukta', 'Nirmala UI', sans-serif;
}
html[lang="zh"] {
  --font-display: 'Songti SC', 'Noto Serif SC', 'SimSun', serif;
  --font-body: 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg0);
  color: var(--dim);
  font-size: 1.02rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold-2); color: #0c131d; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }

.container { max-width: 1280px; margin: 0 auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
svg.svg-fill, .svg-fill path { fill: currentColor; stroke: none; }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 300; background: var(--bg0);
  display: grid; place-items: center;
  transition: transform 0.7s var(--ease);
}
.loader img { width: 76px; filter: brightness(1.25); animation: loaderPulse 1.1s var(--ease) infinite alternate; }
.loader.done { transform: translateY(-101%); }
@keyframes loaderPulse { from { transform: scale(0.92); opacity: 0.7; } to { transform: scale(1); opacity: 1; } }

/* ============ CURSOR ============ */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 240; border-radius: 50%; }
.cursor {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold-dim);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  will-change: transform;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); will-change: transform; }
.cursor.is-active { width: 68px; height: 68px; background: rgba(201, 164, 104, 0.08); }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  transition: background 0.35s, box-shadow 0.35s, transform 0.45s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(12, 19, 29, 0.82); backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner {
  max-width: 1280px; margin: 0 auto; padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.header__brand { display: flex; align-items: center; gap: 0.7rem; }
.header__mark { width: 44px; height: 44px; filter: brightness(1.25); transition: transform 0.5s var(--ease); }
.header__brand:hover .header__mark { transform: rotate(-8deg) scale(1.06); }
.header__word { display: flex; flex-direction: column; line-height: 1.2; }
.header__word strong {
  font-family: var(--font-display); font-weight: 700; font-size: 1.14rem;
  letter-spacing: 0.13em; color: #fff;
}
.header__word em {
  font-style: normal; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.header__nav {
  display: flex; gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line);
  padding: 0.3rem; border-radius: 3rem; backdrop-filter: blur(10px);
}
.header__nav a {
  font-size: 0.88rem; font-weight: 700; color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 1.05rem; border-radius: 2rem;
  transition: background 0.3s, color 0.3s;
}
.header__nav a:hover { background: rgba(255, 255, 255, 0.92); color: var(--bg0); }
.header__right { display: flex; align-items: center; gap: 0.7rem; }

/* Language dropdown */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 700; color: rgba(255, 255, 255, 0.88);
  padding: 0.55rem 0.9rem; border: 1px solid var(--line-2); border-radius: 3rem;
  background: rgba(255, 255, 255, 0.06); transition: 0.25s;
}
.lang__btn:hover { border-color: var(--gold-2); color: var(--gold); }
.lang__btn svg { width: 16px; height: 16px; }
.lang__list {
  position: absolute; top: calc(100% + 0.55rem); inset-inline-end: 0;
  background: var(--bg2); border: 1px solid var(--line-2); border-radius: 16px;
  min-width: 165px; list-style: none; padding: 0.45rem;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98);
  transition: 0.3s var(--ease); z-index: 60;
}
.lang.is-open .lang__list { opacity: 1; visibility: visible; transform: none; }
.lang__list li {
  padding: 0.5rem 0.85rem; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border-radius: 10px; color: var(--dim); transition: 0.2s;
}
.lang__list li:hover { background: var(--glass-2); color: #fff; }
.lang__list li.is-current { background: rgba(201, 164, 104, 0.15); color: var(--gold); }

/* Burger */
.burger {
  display: none; width: 46px; height: 46px; position: relative; z-index: 150;
  border: 1px solid var(--line-2); border-radius: 50%; background: rgba(255, 255, 255, 0.06);
}
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; border-radius: 2px; transition: 0.4s var(--ease); }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 26px; }
.burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.header.menu-open { z-index: 160; background: transparent; }
.mmenu {
  position: fixed; inset: 0; z-index: 140; background: var(--bg0);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 2rem;
  padding: 6.5rem clamp(1.5rem, 6vw, 3rem) 2.5rem;
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease);
}
.mmenu.is-open { clip-path: inset(0); }
.mmenu__nav { display: flex; flex-direction: column; }
.mmenu__nav a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.mmenu.is-open .mmenu__nav a { opacity: 1; transform: none; }
.mmenu__nav i { font-style: normal; font-size: 0.75rem; font-weight: 700; color: var(--gold); }
.mmenu__nav span {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 7.5vw, 2.6rem); color: #fff;
}
.mlang { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.mlang__btn {
  display: flex; align-items: center; gap: 0.7rem; width: 100%;
  background: var(--glass); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 0.9rem 1.1rem; color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem; transition: border-color 0.25s;
}
.mlang__btn > svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.mlang__label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.mlang__btn strong { font-weight: 800; margin-inline-start: auto; }
.mlang__chev { width: 15px !important; height: 15px !important; color: var(--dim) !important; transition: transform 0.3s; }
.mlang.is-open .mlang__chev { transform: rotate(180deg); }
.mlang.is-open .mlang__btn { border-color: var(--gold-dim); }
.mlang__list {
  list-style: none; overflow: hidden; max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.mlang.is-open .mlang__list { max-height: 480px; }
.mlang__list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.1rem; border-bottom: 1px solid var(--line);
  font-size: 0.95rem; font-weight: 600; color: var(--dim); cursor: pointer;
  transition: color 0.2s, padding-inline-start 0.3s var(--ease);
}
.mlang__list li:first-child { margin-top: 0.5rem; }
.mlang__list li:active, .mlang__list li:hover { color: #fff; padding-inline-start: 1.4rem; }
.mlang__list li.is-current { color: var(--gold); font-weight: 800; }
.mlang__list li.is-current::after { content: "✓"; color: var(--gold); font-size: 0.9rem; }
.mmenu__meta { display: flex; flex-direction: column; gap: 0.3rem; font-weight: 700; color: rgba(255, 255, 255, 0.85); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-size: 0.92rem; font-weight: 800; letter-spacing: 0.01em;
  padding: 0.8rem 1.5rem; border-radius: 3rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn--lg { padding: 1rem 1.55rem 1rem 1.9rem; font-size: 0.97rem; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #171207;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(201, 164, 104, 0.25); }
.btn__arrow {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(12, 19, 29, 0.22); color: #fff;
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease), background 0.3s;
}
.btn__arrow svg { width: 15px; height: 15px; }
html[dir="rtl"] .btn__arrow svg { transform: scaleX(-1); }
html[dir="rtl"] .btn__arrow--down svg { transform: none; }
.btn:hover .btn__arrow { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .btn__arrow { transform: translateX(-4px); }
.btn:hover .btn__arrow--down { transform: translateY(4px); }
.btn--glass {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  border: 1px solid var(--line-2); backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-3px); }
.btn--glass .btn__arrow { background: rgba(255, 255, 255, 0.12); }
.btn--wa { background: #17a45e; color: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }
.btn--wa:hover { background: #128c50; transform: translateY(-3px); }
.btn--wa svg { width: 20px; height: 20px; }

.textlink {
  display: inline-block; font-size: 0.88rem; font-weight: 800; color: var(--gold);
  border-bottom: 1.5px solid var(--gold-dim); padding-bottom: 2px;
  transition: 0.25s; margin-top: 0.5rem;
}
.textlink:hover { border-color: var(--gold); }

/* ============ TYPO ============ */
.kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 2.4rem; height: 2px; background: var(--gold-2); border-radius: 2px; }
.kicker--center { justify-content: center; }
.kicker--center::after { content: ""; width: 2.4rem; height: 2px; background: var(--gold-2); border-radius: 2px; }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--panel {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%);
  border-block: 1px solid var(--warm-line);
  color: var(--dim-on);
}
.section--panel .section__title { color: var(--ink-on); }
.section--panel .section__title em { color: var(--gold-deep); }
.section--panel .section__lead { color: var(--dim-on); }
.section--panel .kicker { color: var(--gold-deep); }
.section--panel .kicker::before, .section--panel .kicker--center::after { background: var(--gold-deep); }
.section__head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__head--center { text-align: center; max-width: 760px; margin-inline: auto; }
.section__row {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem; align-items: end;
}
.section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.08; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 0.8rem;
}
.section__title em { font-style: italic; color: var(--gold); }
html[lang="ar"] .section__title, html[lang="ur"] .section__title { line-height: 1.5; letter-spacing: 0; font-weight: 800; }
html[lang="hi"] .section__title { line-height: 1.3; letter-spacing: 0; }
.section__lead { font-size: 1.05rem; color: var(--dim); max-width: 620px; }
.section__head--center .section__lead { margin-inline: auto; }

/* ============ MOTION ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal[data-anim="clip"] {
  transform: none; clip-path: inset(10% 5% 10% 5% round 24px);
  transition: opacity 0.9s var(--ease), clip-path 1.1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round 0px); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

.w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 0.09em 0.16em; margin: 0 -0.09em -0.16em; }
.w > span { display: inline-block; transform: translateY(112%); transition: transform 0.9s var(--ease); }
.hero__title.in .w > span { transform: none; }

/* ============ HERO BANNER ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  background: var(--bg0);
  padding-top: 6rem;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.16);
  transition: transform 3.2s var(--ease);
  will-change: transform;
}
.hero.is-loaded .hero__bg img { transform: scale(1.05); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(12, 19, 29, 0.9) 12%, rgba(12, 19, 29, 0.52) 46%, rgba(12, 19, 29, 0.14) 78%),
    linear-gradient(to top, rgba(12, 19, 29, 1) 0%, rgba(12, 19, 29, 0.3) 36%, rgba(12, 19, 29, 0.3) 100%);
}
html[dir="rtl"] .hero__overlay {
  background:
    linear-gradient(-78deg, rgba(12, 19, 29, 0.9) 12%, rgba(12, 19, 29, 0.52) 46%, rgba(12, 19, 29, 0.14) 78%),
    linear-gradient(to top, rgba(12, 19, 29, 1) 0%, rgba(12, 19, 29, 0.3) 36%, rgba(12, 19, 29, 0.3) 100%);
}
.hero__inner {
  position: relative; z-index: 3; width: 100%;
  padding-bottom: clamp(2.4rem, 5vh, 4rem);
}
.pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-2);
  padding: 0.5rem 1.1rem; border-radius: 3rem; margin-bottom: 1.7rem;
  backdrop-filter: blur(8px);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201, 164, 104, 0.2); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3rem, 7.4vw, 5.9rem); line-height: 1.02; letter-spacing: -0.028em;
  color: #fff; margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.hero__title em { font-style: italic; color: var(--gold); }
html[lang="ar"] .hero__title, html[lang="ur"] .hero__title { line-height: 1.32; letter-spacing: 0; font-weight: 800; }
html[lang="ar"] .hero__title em, html[lang="ur"] .hero__title em { font-style: normal; }
html[lang="hi"] .hero__title { line-height: 1.22; letter-spacing: 0; }
.hero__sub {
  font-size: 1.13rem; max-width: 36rem; margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* stats bar */
.hero__statsbar {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(12, 19, 29, 0.42); backdrop-filter: blur(14px);
}
.hero__stats {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.15rem; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: #fff; line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat__star { font-style: normal; color: var(--gold); font-size: 0.65em; vertical-align: 0.25em; margin-inline-start: 0.1em; }
.stat__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-top: 0.15rem;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--bg0); border-bottom: 1px solid var(--warm-line);
  overflow: hidden; padding: 1.05rem 0;
}
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__half { display: flex; }
.marquee__item {
  display: flex; align-items: center; gap: 2.6rem; padding-inline-end: 2.6rem;
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 500;
  color: var(--faint); white-space: nowrap;
}
.marquee__item:nth-child(even) { font-style: italic; color: var(--gold); }
.marquee__item::after { content: "✦"; font-size: 0.75rem; color: var(--gold-2); font-style: normal; }

/* ============ PRACTICE LIST ============ */
.plist__wrap {
  display: grid; grid-template-columns: minmax(0, 4.2fr) minmax(0, 7fr);
  gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.plist__preview {
  position: sticky; top: 110px;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/4.6; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.plist__preview::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 19, 29, 0.55), transparent 45%);
}
.plist__preview img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 0.6s var(--ease), transform 1.4s var(--ease);
}
.plist__preview img.is-active { opacity: 1; transform: scale(1); }

.plist { border-top: 1px solid var(--line); }
.prow {
  display: grid; grid-template-columns: 3.2rem minmax(0, 1fr) 44px;
  align-items: center; gap: 1.2rem;
  padding: 1.35rem 0.4rem;
  border-bottom: 1px solid var(--line);
  position: relative; cursor: default;
  transition: background 0.35s, padding-inline-start 0.4s var(--ease);
}
.prow:hover { background: linear-gradient(90deg, rgba(201, 164, 104, 0.06), transparent 70%); padding-inline-start: 0.9rem; }
html[dir="rtl"] .prow:hover { background: linear-gradient(-90deg, rgba(201, 164, 104, 0.06), transparent 70%); }
.prow__num {
  font-family: var(--font-display); font-style: italic; font-size: 1rem;
  color: var(--gold); opacity: 0.8;
}
.prow__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.2; letter-spacing: -0.01em;
  color: #fff; transition: color 0.3s;
}
html[lang="ar"] .prow__name, html[lang="ur"] .prow__name { line-height: 1.5; }
.prow:hover .prow__name { color: var(--gold); }
.prow__desc {
  grid-column: 2; font-size: 0.92rem; color: var(--dim); max-width: 60ch;
  line-height: 1.6; margin-top: 0.25rem;
}
.prow__icon {
  grid-row: 1; grid-column: 3;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); color: rgba(255, 255, 255, 0.7);
  display: grid; place-items: center;
  transition: 0.35s var(--ease);
}
.prow__icon svg { width: 20px; height: 20px; }
.prow__media { display: none; grid-column: 1 / -1; }
.prow__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 14px; }
.prow:hover .prow__icon { background: var(--gold-2); border-color: var(--gold-2); color: #0c131d; transform: rotate(-8deg) scale(1.05); }

/* ============ FIRM ============ */
.firm {
  display: grid; grid-template-columns: minmax(0, 6.4fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.firm__text { max-width: 56ch; margin-bottom: 1.1rem; font-size: 1.04rem; }
.firm__checks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-block: 1.5rem 1.9rem; }
.firm__checks li { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; color: rgba(255, 255, 255, 0.86); font-size: 0.97rem; }
.check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201, 164, 104, 0.14); border: 1.5px solid var(--gold-2);
  position: relative;
}
.check::after {
  content: ""; position: absolute; left: 5.5px; top: 5px; width: 7.5px; height: 4.5px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.firm__vm { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.gcard {
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.gcard:hover { transform: translateY(-4px); border-color: var(--gold-dim); background: var(--glass-2); }
.gcard h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--gold); margin-bottom: 0.4rem; }
.gcard p { font-size: 0.92rem; line-height: 1.65; }

.firm__media { position: relative; }
.firm__media img {
  width: 100%; aspect-ratio: 4/4.6; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.firm__frame {
  position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1.5px solid var(--gold-dim); border-radius: var(--radius);
  pointer-events: none; z-index: -1;
}
html[dir="rtl"] .firm__frame { inset: 1.1rem 1.1rem -1.1rem -1.1rem; }

/* values */
.values { list-style: none; border-top: 1px solid var(--line); }
.values li {
  display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); gap: 1.2rem;
  padding-block: 1.6rem; border-bottom: 1px solid var(--line);
  transition: padding-inline-start 0.4s var(--ease), background 0.35s;
}
.values li:hover { padding-inline-start: 0.9rem; background: linear-gradient(90deg, rgba(201, 164, 104, 0.05), transparent 60%); }
html[dir="rtl"] .values li:hover { background: linear-gradient(-90deg, rgba(201, 164, 104, 0.05), transparent 60%); }
.values__num {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 1.6rem; color: var(--gold); line-height: 1.3;
}
.values h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: #fff; margin-bottom: 0.25rem; }
.values p { font-size: 0.95rem; max-width: 70ch; }

/* trust */
.trust {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  padding-top: clamp(2rem, 4vw, 3rem);
}
.trust p { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.trust__logos { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.trust__chip {
  background: #fffdf9; border: 1px solid var(--line-on); border-radius: 14px;
  padding: 0.7rem 1.3rem; display: grid; place-items: center;
  transition: transform 0.3s var(--ease);
}
.trust__chip:hover { transform: translateY(-3px); }
.trust__chip img { height: 38px; width: auto; }

/* ============ TEAM ============ */
.team__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 430px)); justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.member {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  aspect-ratio: 3/3.5;
}
.member > img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 1s var(--ease);
}
.member:hover > img { transform: scale(1.05); }
.member__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 19, 29, 0.92) 4%, rgba(12, 19, 29, 0.25) 38%, transparent 60%);
}
.member__meta {
  position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem 1.6rem;
  transform: translateY(0); transition: transform 0.45s var(--ease);
}
.member:hover .member__meta { transform: translateY(-3.2rem); }
.member__meta h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.75rem;
  color: #fff; letter-spacing: -0.01em; line-height: 1.15;
}
.member__meta p {
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.4rem;
}
.member__actions {
  position: absolute; inset-inline-start: 1.6rem; bottom: 1.2rem;
  display: flex; gap: 0.55rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease) 0.06s, transform 0.4s var(--ease) 0.06s;
}
.member:hover .member__actions, .member:focus-within .member__actions { opacity: 1; transform: none; }
.member__actions a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); border: 1px solid var(--line-2);
  backdrop-filter: blur(8px); color: #fff;
  display: grid; place-items: center; transition: 0.25s;
}
.member__actions a:hover { background: var(--gold-2); border-color: var(--gold-2); color: #0c131d; }
.member__actions svg { width: 18px; height: 18px; }

/* ============ VOICES TICKER ============ */
.voices { overflow: hidden; }
.voices__ticker {
  overflow: hidden; padding-block: 0.5rem 0.8rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.voices__track { display: flex; gap: 1.2rem; width: max-content; animation: marquee 38s linear infinite; direction: ltr; }
.voices__ticker:hover .voices__track { animation-play-state: paused; }
.vcard {
  width: min(400px, 84vw); flex-shrink: 0;
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: 0.9rem;
  backdrop-filter: blur(6px);
}
.vcard__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.95rem; }
.vcard__quote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.55; color: rgba(255, 255, 255, 0.88); font-weight: 500; flex: 1; }
html[lang="ar"] .vcard__quote, html[lang="ur"] .vcard__quote { line-height: 1.8; }
.vcard__who { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid var(--line); padding-top: 0.9rem; }
.vcard__ini {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201, 164, 104, 0.16); color: var(--gold);
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.9rem;
}
.vcard__who strong { display: block; font-size: 0.93rem; color: #fff; font-weight: 800; line-height: 1.3; }
.vcard__who span { font-size: 0.78rem; color: var(--faint); font-weight: 600; }

/* ============ CTA PANEL ============ */
.ctawrap { padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(3rem, 6vw, 4.5rem); }
.ctapanel {
  position: relative; overflow: hidden; border-radius: 26px;
  background: var(--bg1); text-align: center;
  border: 1px solid var(--line);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.ctapanel__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
}
.ctapanel::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 110% at 50% 100%, rgba(12, 19, 29, 0.25), rgba(12, 19, 29, 0.87));
}
.ctapanel__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.ctapanel h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 1rem;
}
html[lang="ar"] .ctapanel h2, html[lang="ur"] .ctapanel h2 { line-height: 1.45; }
.ctapanel p { color: rgba(255, 255, 255, 0.78); margin-bottom: 2rem; font-size: 1.05rem; }
.ctapanel__actions { display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact__grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.clist { list-style: none; margin-top: 1.8rem; border-top: 1px solid var(--line); }
.clist li {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding-block: 1.15rem; border-bottom: 1px solid var(--line);
  transition: padding-inline-start 0.35s var(--ease);
}
.clist li:hover { padding-inline-start: 0.5rem; }
.clist__icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201, 164, 104, 0.13); border: 1px solid var(--gold-dim); color: var(--gold);
  display: grid; place-items: center; margin-top: 0.15rem;
}
.clist__icon svg { width: 20px; height: 20px; }
.clist__body strong {
  display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.15rem;
}
.clist__body p { font-size: 0.98rem; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.clist__body a:hover { color: var(--gold); }
.cmap {
  margin-top: 1.6rem; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow-sm);
  position: relative; background: var(--bg1);
}
.cmap iframe {
  display: block; width: 100%; height: 260px; border: 0;
  filter: grayscale(0.25) contrast(1.02);
}
.cmap__link {
  position: absolute; bottom: 0.8rem; inset-inline-start: 0.9rem; margin: 0;
  background: rgba(12, 19, 29, 0.85); backdrop-filter: blur(6px);
  padding: 0.45rem 0.9rem; border-radius: 2rem; border-bottom: none;
  font-size: 0.78rem;
}

.contact__form {
  background: linear-gradient(180deg, var(--sand), var(--sand-2)); border: 1px solid var(--warm-line); border-radius: 22px;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.15rem;
  position: sticky; top: 110px;
  box-shadow: var(--shadow-sm);
}
.contact__form h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink-on);
  margin-bottom: 0.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.83rem; font-weight: 800; color: var(--ink-on); letter-spacing: 0.02em; }
.field input, .field textarea {
  width: 100%; background: #fffdf9; border: 1px solid var(--line-on); border-radius: 12px;
  padding: 0.85rem 1.05rem; font-family: inherit; font-size: 0.97rem; color: var(--ink-on);
  outline: none; transition: border-color 0.25s, box-shadow 0.25s; resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(150, 117, 74, 0.18);
}
.form__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.3rem; }
.form__actions .btn { flex: 1; min-width: 190px; }
.form__note { font-size: 0.8rem; color: var(--dim-on); text-align: center; }

/* ============ FOOTER ============ */
.footer { background: #0a1119; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.footer__word {
  font-family: var(--font-display); font-weight: 700; white-space: nowrap; text-align: center;
  font-size: clamp(4.5rem, 14vw, 13rem); line-height: 0.95; letter-spacing: 0.02em;
  color: rgba(201, 164, 104, 0.07); -webkit-text-stroke: 1.5px rgba(201, 164, 104, 0.4);
  user-select: none; pointer-events: none;
  padding-top: clamp(2rem, 4vw, 3.5rem); margin-bottom: -0.25em;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative; z-index: 2;
}
.footer__brand img { width: 120px; margin-bottom: 1.1rem; filter: brightness(1.2); }
.footer__brand p { font-size: 0.93rem; max-width: 28rem; }
.footer__col h4 {
  font-family: var(--font-display); color: #fff; font-size: 1.08rem; font-weight: 600;
  margin-bottom: 1rem;
}
.footer__col nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a { font-size: 0.93rem; transition: 0.25s; }
.footer__col a:hover { color: var(--gold); padding-inline-start: 0.3rem; }
.footer__col p { font-size: 0.93rem; margin-bottom: 0.7rem; }
.footer__bottom {
  border-top: 1px solid var(--line);
  text-align: center; padding-block: 1.1rem;
  font-size: 0.8rem; color: var(--faint);
}

/* ============ FAB ============ */
.fab {
  position: fixed; bottom: 1.5rem; inset-inline-end: 1.5rem; z-index: 110;
  width: 58px; height: 58px; border-radius: 50%;
  background: #17a45e; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease);
}
.fab svg { width: 28px; height: 28px; }
.fab:hover { transform: translateY(-4px) scale(1.06); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1120px) {
  .header__nav, .header__cta { display: none; }
  .burger { display: block; }
  .hero { min-height: 92svh; }
  .plist__wrap { grid-template-columns: 1fr; }
  .plist__preview { display: none; }
  .prow { cursor: pointer; }
  .prow.is-open { background: linear-gradient(90deg, rgba(201, 164, 104, 0.06), transparent 70%); }
  .prow.is-open .prow__media { display: block; margin-top: 0.9rem; }
  .prow.is-open .prow__name { color: var(--gold); }
  .firm { grid-template-columns: 1fr; }
  .firm__media { max-width: 620px; }
  .firm__media img { aspect-ratio: 16/11; }
  .firm__frame { inset: 0.9rem -0.7rem -0.9rem 0.9rem; }
  .section__row { grid-template-columns: 1fr; gap: 0.8rem; align-items: start; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .lang { display: none; }
  .hero__stats { justify-content: flex-start; gap: 1.1rem 1.8rem; }
  .team__grid { grid-template-columns: minmax(0, 430px); }
  .member__meta { transform: translateY(-3.2rem); }
  .member__actions { opacity: 1; transform: none; }
  .member { aspect-ratio: 3/3.2; }
  .cmap iframe { height: 220px; }
  .hero__bg img { object-position: 62% 40%; }
  html[dir="rtl"] .hero__bg img { object-position: 38% 40%; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust { justify-content: center; text-align: center; }
  .trust__logos { justify-content: center; }
  .trust__chip img { height: 30px; }
  .firm__vm { grid-template-columns: 1fr; }
  .prow { grid-template-columns: 2.4rem minmax(0, 1fr) 40px; gap: 0.8rem; }
  .values li { grid-template-columns: 3rem minmax(0, 1fr); }
}


/* ============ ON-LIGHT OVERRIDES (inside .section--panel) ============ */
.section--panel .plist,
.section--panel .prow { border-color: var(--line-on); }
.section--panel .prow:hover { background: linear-gradient(90deg, rgba(150, 117, 74, 0.09), transparent 70%); }
html[dir="rtl"] .section--panel .prow:hover { background: linear-gradient(-90deg, rgba(150, 117, 74, 0.09), transparent 70%); }
.section--panel .prow__name { color: var(--ink-on); }
.section--panel .prow:hover .prow__name { color: var(--gold-deep); }
.section--panel .prow__num { color: var(--gold-deep); }
.section--panel .prow__desc { color: var(--dim-on); }
.section--panel .prow__icon { border-color: rgba(28, 38, 53, 0.25); color: var(--ink-on); }
.section--panel .prow:hover .prow__icon { background: var(--gold-deep); border-color: var(--gold-deep); color: #fffdf9; }
.section--panel .prow.is-open { background: linear-gradient(90deg, rgba(150, 117, 74, 0.09), transparent 70%); }
.section--panel .prow.is-open .prow__name { color: var(--gold-deep); }
.section--panel .plist__preview { border-color: var(--line-on); box-shadow: 0 18px 46px rgba(28, 38, 53, 0.18); }

.section--panel .firm__checks li { color: var(--ink-on); }
.section--panel .gcard {
  background: #fffdf9; border-color: var(--line-on); backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(28, 38, 53, 0.07);
}
.section--panel .gcard:hover { background: #fffdf9; border-color: var(--line-on); box-shadow: 0 16px 40px rgba(28, 38, 53, 0.12); }
.section--panel .gcard h3 { color: var(--gold-deep); }
.section--panel .gcard p { color: var(--dim-on); }
.section--panel .values, .section--panel .values li { border-color: var(--line-on); }
.section--panel .values__num { color: var(--gold-deep); }
.section--panel .values h3 { color: var(--ink-on); }
.section--panel .values p { color: var(--dim-on); }
.section--panel .values li:hover { background: linear-gradient(90deg, rgba(150, 117, 74, 0.08), transparent 60%); }
html[dir="rtl"] .section--panel .values li:hover { background: linear-gradient(-90deg, rgba(150, 117, 74, 0.08), transparent 60%); }
.section--panel .trust p { color: rgba(28, 38, 53, 0.5); }
.section--panel .trust__chip { border: 1px solid var(--line-on); }
.section--panel .firm__frame { border-color: rgba(150, 117, 74, 0.5); }
.section--panel .vcard {
  background: #fffdf9; border-color: var(--line-on); backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(28, 38, 53, 0.07);
}
.section--panel .vcard__stars { color: var(--gold-deep); }
.section--panel .vcard__quote { color: var(--ink-on); }
.section--panel .vcard__who { border-color: var(--line-on); }
.section--panel .vcard__ini { background: rgba(150, 117, 74, 0.14); color: var(--gold-deep); }
.section--panel .vcard__who strong { color: var(--ink-on); }
.section--panel .vcard__who span { color: var(--dim-on); }
.section--panel .member { border-color: var(--line-on); box-shadow: 0 20px 50px rgba(28, 38, 53, 0.22); }
