:root {
  --ink: #07101f;
  --ink-2: #0b1628;
  --ink-3: #111f34;
  --ivory: #f5f1e8;
  --paper: #ece6da;
  --muted: #9ba6b5;
  --line: rgba(232, 213, 169, 0.15);
  --gold: #d6b56d;
  --gold-2: #f0d694;
  --gold-on-light: #75500d;
  --gold-soft: rgba(214, 181, 109, 0.11);
  --white: #fff;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  --font: "IBM Plex Sans Arabic", sans-serif;
  --display: "Alexandria", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { color: var(--ink); background: var(--gold-2); }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.noise {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; z-index: 1001; inset: 0 0 auto; height: 3px; direction: ltr; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); box-shadow: 0 0 16px var(--gold); }

.demo-strip {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.35rem 1rem;
  color: #d4dbe5;
  background: #030810;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
}
.demo-strip strong { color: var(--gold-2); }
.demo-strip a { color: var(--gold-2); font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-color: var(--line); background: rgba(7,16,31,0.94); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; flex: none; }
.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(214,181,109,0.16), rgba(214,181,109,0.02));
}
.brand-mark img { width: 100%; height: 100%; display: block; }
.brand > span:last-child { display: grid; }
.brand strong { font-family: var(--display); font-size: 0.88rem; letter-spacing: -0.02em; }
.brand small { color: var(--muted); font-size: 0.58rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.desktop-nav a { position: relative; color: #bdc5d0; font-size: 0.8rem; font-weight: 600; }
.desktop-nav a::after { content: ''; position: absolute; inset: auto 0 -0.65rem; width: 0; height: 1px; margin: auto; background: var(--gold); transition: width 0.25s; }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.fake-phone { direction: ltr; color: var(--gold-2); font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.04em; }
.menu-toggle { width: 44px; height: 44px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; flex: none; display: block; border-radius: 2px; background: var(--ivory); transition: transform 0.25s; }
.menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display: none; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.75rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: #10141c; background: linear-gradient(135deg, var(--gold-2), #c79b45); box-shadow: 0 12px 34px rgba(194,145,55,0.16); }
.button-gold:hover { box-shadow: 0 16px 40px rgba(194,145,55,0.27); }
.button-sm { min-height: 39px; padding: 0.55rem 1.05rem; font-size: 0.74rem; }
.button-lg { min-height: 57px; padding: 0.9rem 1.65rem; }
.button-light { color: var(--ink); background: var(--ivory); }
.button-outline { color: var(--ivory); border-color: rgba(245,241,232,0.25); background: transparent; }
.button-ghost { color: var(--ivory); border-color: var(--line); background: rgba(255,255,255,0.025); }
.text-link { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--gold-2); font-size: 0.82rem; font-weight: 700; }
.text-link span { transition: transform 0.25s; }
.text-link:hover span { transform: translateX(-4px); }

.hero { position: relative; min-height: calc(100vh - 120px); min-height: calc(100svh - 120px); display: flex; flex-direction: column; overflow: hidden; background: radial-gradient(circle at 18% 48%, rgba(119,80,30,0.17), transparent 31%), linear-gradient(120deg, #08111f, #060d18 58%, #0a1322); }
.hero::before { content: ''; position: absolute; inset: 0; opacity: 0.15; background: linear-gradient(90deg, transparent 49.8%, rgba(214,181,109,0.22) 50%, transparent 50.2%), linear-gradient(0deg, transparent 49.8%, rgba(214,181,109,0.12) 50%, transparent 50.2%); background-size: 120px 120px; mask-image: linear-gradient(to left, #000, transparent 68%); }
.hero-orbit { position: absolute; border: 1px solid rgba(214,181,109,0.09); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 720px; aspect-ratio: 1; inset: 5% auto auto -250px; }
.hero-orbit-two { width: 500px; aspect-ratio: 1; inset: 20% auto auto -140px; border-style: dashed; animation: rotate 50s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-grid { position: relative; z-index: 2; flex: 1; min-height: clamp(560px, calc(100svh - 185px), 760px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(1.5rem, 4vh, 3.5rem); }
.eyebrow, .section-number { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--gold-2); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; }
.eyebrow span { width: 26px; height: 1px; background: var(--gold); }
.hero h1, .section-head h2, .strategy-copy h2, .faq-intro h2, .final-cta h2 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.12;
  letter-spacing: -0.065em;
}
.hero h1 { font-size: clamp(2.65rem, 4.8vw, 3.8rem); line-height: 1.1; letter-spacing: -0.05em; }
.hero h1 em, .section-head h2 em, .strategy-copy h2 em, .faq-intro h2 em { color: var(--gold-2); font-style: normal; font-weight: 400; }
.hero-lead { max-width: 590px; margin: clamp(1.25rem, 2vw, 1.75rem) 0 0; color: #b7c0cd; font-size: clamp(1rem, 1.35vw, 1.14rem); line-height: 2; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
.hero-trust { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.hero-trust > div { display: flex; align-items: center; gap: 0.65rem; }
.trust-icon { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-2); }
.hero-trust p { display: grid; margin: 0; }
.hero-trust strong { font-size: 0.75rem; }
.hero-trust small { color: var(--muted); font-size: 0.62rem; }

.hero-portrait { position: relative; align-self: center; width: 100%; height: clamp(485px, calc(100svh - 275px), 640px); min-height: 0; display: flex; align-items: flex-end; justify-content: center; isolation: isolate; }
.portrait-halo { position: absolute; z-index: -2; width: min(92%, 540px); aspect-ratio: 0.92; bottom: 7%; border-radius: 50% 50% 42% 42%; background: radial-gradient(circle at 50% 38%, rgba(214,181,109,0.26), rgba(50,62,79,0.16) 48%, transparent 70%); filter: blur(2px); }
.portrait-frame { position: relative; width: min(100%, 520px); height: 100%; min-height: 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.portrait-frame::after { content: ''; position: absolute; inset: auto 0 0; height: 28%; background: linear-gradient(transparent, var(--ink)); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; min-height: 0; display: block; object-fit: contain; object-position: center bottom; filter: saturate(0.9) contrast(1.03); }
.portrait-name { position: absolute; z-index: 2; inset: auto auto 0.8rem 50%; transform: translateX(-50%); width: max-content; max-width: 85%; display: grid; text-align: center; }
.portrait-name span { color: var(--gold-2); font-size: 0.65rem; }
.portrait-name strong { font-family: var(--display); font-size: 1.05rem; }
.portrait-name small { color: var(--muted); font-size: 0.62rem; }
.portrait-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 0.7rem; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(9,18,31,0.72); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.portrait-card > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--gold-2); background: var(--gold-soft); font-family: var(--display); font-size: 0.72rem; }
.portrait-card p { display: grid; margin: 0; }
.portrait-card strong { font-size: 0.72rem; }
.portrait-card small { color: var(--muted); font-size: 0.6rem; }
.portrait-card-one { top: 23%; right: -2%; }
.portrait-card-two { bottom: 22%; left: -4%; }
.hero-footer { position: relative; z-index: 3; min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; overflow: hidden; color: #8d99aa; border-top: 1px solid var(--line); font-size: 0.72rem; white-space: nowrap; }
.hero-footer i { width: 3px; aspect-ratio: 1; border-radius: 50%; background: var(--gold); }

.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-dark { padding: 3.3rem 0; background: #040a13; border-block: 1px solid var(--line); }
.assessment-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; align-items: center; gap: 4rem; }
.assessment-grid h2 { margin: 0.7rem 0 0.25rem; font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.assessment-grid p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.assessment-options { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.assessment-options button { min-height: 135px; display: grid; align-content: center; gap: 0.3rem; padding: 1.2rem; color: var(--ivory); text-align: right; border: 0; border-inline-start: 1px solid var(--line); background: rgba(255,255,255,0.018); cursor: pointer; transition: background 0.25s; }
.assessment-options button:first-child { border-inline-start: 0; }
.assessment-options button:hover { background: var(--gold-soft); }
.assessment-options span { font-weight: 700; }
.assessment-options small { color: var(--muted); font-size: 0.64rem; }
.assessment-options b { color: var(--gold-2); font-size: 1rem; }

#expertise, .insights-section { color: var(--ink); background: var(--ivory); }
#expertise .section-number,
.insights-section .section-number,
#expertise .section-head h2 em,
.insights-section .section-head h2 em { color: var(--gold-on-light); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.section-head h2, .strategy-copy h2, .faq-intro h2 { font-size: clamp(2.3rem, 4.4vw, 4.1rem); }
.section-head > p { max-width: 500px; margin: 0 0 0.8rem; color: #5e6876; }
.practice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.practice-card { position: relative; min-height: 340px; padding: clamp(1.35rem, 2.4vw, 1.9rem); border: 1px solid rgba(7,16,31,0.12); border-radius: var(--radius); background: rgba(255,255,255,0.26); transition: transform 0.3s, box-shadow 0.3s, background 0.3s; }
.practice-card:hover { transform: translateY(-6px); background: #fff; box-shadow: 0 30px 70px rgba(7,16,31,0.1); }
.practice-featured { color: var(--ivory); background: var(--ink-2); }
.practice-featured:hover { background: var(--ink-3); }
.card-index { position: absolute; inset: 1.4rem auto auto 1.4rem; color: #8792a1; font-family: var(--display); font-size: 0.72rem; }
.practice-icon { width: 66px; height: 66px; display: grid; place-items: center; margin-bottom: 1.55rem; border: 1px solid rgba(7,16,31,0.13); border-radius: 20px; color: var(--gold-on-light); background: rgba(117,80,13,0.1); font-size: 1.75rem; font-weight: 800; line-height: 1; }
.practice-featured .practice-icon { border-color: var(--line); color: var(--gold-2); }
.practice-card h3 { margin: 0; font-family: var(--display); font-size: 1.3rem; }
.practice-card p { color: #66717e; font-size: 0.86rem; }
.practice-featured p { color: #aeb8c5; }
.practice-card ul { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.9rem 0; padding: 0; list-style: none; }
.practice-card li { padding: 0.32rem 0.65rem; border: 1px solid rgba(7,16,31,0.1); border-radius: 999px; color: #5e6875; font-size: 0.62rem; }
.practice-featured li { border-color: var(--line); color: #abb5c2; }
.card-link { position: absolute; inset: auto 1.9rem 1.45rem auto; display: flex; gap: 0.6rem; padding: 0; color: #76571d; border: 0; background: transparent; cursor: pointer; font-weight: 700; }
.practice-featured .card-link { color: var(--gold-2); }

.strategy-section { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 20%, rgba(214,181,109,0.08), transparent 26%), var(--ink-2); }
.strategy-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); }
.strategy-copy { position: sticky; top: 140px; align-self: start; }
.strategy-copy > p { color: #a9b4c2; }
.strategy-quote { display: flex; gap: 1rem; margin-top: 2rem; padding: 1.4rem; border-inline-start: 2px solid var(--gold); background: rgba(255,255,255,0.025); }
.strategy-quote > span { color: var(--gold); font-family: serif; font-size: 2.7rem; line-height: 1; }
.strategy-quote blockquote { margin: 0; color: #d1d7df; font-size: 0.86rem; }
.strategy-photo { position: relative; margin: 1rem 0 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #050b14; }
.strategy-photo::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); }
.strategy-photo img { width: 100%; aspect-ratio: 16 / 10; display: block; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.strategy-photo:hover img { transform: scale(1.035); }
.strategy-photo figcaption { position: absolute; inset: auto .7rem .7rem; padding: .7rem .85rem; color: #c7ced8; border: 1px solid var(--line); border-radius: 12px; background: rgba(5,11,20,.82); backdrop-filter: blur(12px); font-size: .65rem; }
.strategy-photo figcaption span { display: block; color: var(--gold-2); font-weight: 800; }
.process-list { display: grid; }
.process-list article { display: grid; grid-template-columns: 54px 1fr; gap: 1.2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.process-list article:first-child { padding-top: 0; }
.process-list article > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-2); font-family: var(--display); font-size: 0.65rem; }
.process-list h3 { margin: 0 0 0.5rem; font-family: var(--display); font-size: 1.15rem; }
.process-list p { margin: 0; color: #9ca8b7; font-size: 0.82rem; }

.document-section { color: var(--ink); background: var(--paper); }
.document-card { display: grid; grid-template-columns: 0.8fr 1fr 0.7fr; align-items: center; gap: clamp(2rem,5vw,5rem); padding: clamp(2rem,5vw,4rem); border-radius: var(--radius-lg); background: #d9c7a1; box-shadow: 0 35px 80px rgba(48,39,23,0.18); }
.document-visual { position: relative; min-height: 340px; display: grid; place-items: center; }
.document-sheet { width: 220px; height: 300px; display: grid; align-content: center; gap: 1rem; padding: 2rem; border-radius: 7px; background: var(--ivory); box-shadow: 22px 26px 50px rgba(72,52,22,0.18); transform: rotate(4deg); }
.document-sheet span { height: 7px; border-radius: 9px; background: #c7c0b3; }
.document-sheet span:nth-child(2) { width: 70%; }.document-sheet span:nth-child(3) { width: 85%; }.document-sheet span:nth-child(4) { width: 55%; }
.document-sheet b { width: 42px; height: 42px; display: grid; place-items: center; margin-top: 1rem; border: 1px solid #a88034; border-radius: 50%; color: #806023; }
.document-seal { position: absolute; bottom: 8%; right: 6%; width: 74px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 20px; background: transparent; box-shadow: 0 12px 28px rgba(7,16,31,0.22); }
.document-seal img { width: 100%; display: block; border-radius: 20px; }
.document-copy .section-number { color: #6f4a0a; }
.document-copy h2 { margin: 0.7rem 0; font-family: var(--display); font-size: clamp(1.8rem,3.4vw,2.8rem); line-height: 1.3; }
.document-copy p { color: #4b535d; }
.document-points { display: grid; gap: 1rem; }
.document-points p { display: flex; align-items: center; gap: 0.7rem; margin: 0; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(7,16,31,0.13); font-size: 0.78rem; font-weight: 700; }
.document-points span { color: #7d5b1b; font-family: var(--display); font-size: 0.65rem; }

.insights-section .section-head .text-link { margin-bottom: 1rem; color: #73551e; }
.insights-toggle { padding: 0; border: 0; background: transparent; cursor: pointer; }
.insights-grid { display: grid; grid-template-columns: 1.35fr 0.825fr 0.825fr; gap: 1rem; }
.insight-card { min-width: 0; display: block; overflow: hidden; border: 1px solid rgba(7,16,31,0.11); border-radius: var(--radius); background: #fff; box-shadow: 0 18px 45px rgba(7,16,31,.035); cursor: pointer; transition: transform .35s, box-shadow .35s; }
.insight-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(7,16,31,.12); }
.insight-card:focus-visible { outline: 3px solid rgba(117,80,13,.45); outline-offset: 4px; }
.insight-cover { position: relative; min-height: 225px; display: block; overflow: hidden; background: #101c2e; }
.insight-cover::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3,8,16,.58)); pointer-events: none; }
.insight-cover img { width: 100%; height: 225px; display: block; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.insight-card:hover .insight-cover img { transform: scale(1.055); }
.insight-cover > span { position: absolute; z-index: 2; top: 1rem; right: 1rem; padding: .35rem .7rem; color: var(--gold-2); border: 1px solid rgba(240,214,148,.35); border-radius: 999px; background: rgba(7,16,31,.72); backdrop-filter: blur(8px); font-size: .63rem; font-weight: 700; }
.insight-body { display: flex; min-height: 215px; flex-direction: column; align-items: flex-start; padding: 1.4rem; }
.insight-body small { color: #8b6b2f; }
.insight-body h3 { margin: 0.5rem 0; font-family: var(--display); font-size: 1.02rem; line-height: 1.55; }
.insight-large .insight-body h3 { font-size: 1.2rem; }
.insight-body p,
.insight-summary { color: #65707e; font-size: 0.8rem; }
.insight-body .read-link { margin-top: auto; color: #78581f; font-size: 0.75rem; font-weight: 700; }
.insight-extra { display: none; }
.insights-grid.show-all .insight-extra { display: block; animation: extraArticleIn .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes extraArticleIn { from { opacity: 0; transform: translateY(18px); } }

@media (min-width: 1060px) and (max-height: 820px) {
  .hero-grid { min-height: 535px; padding-block: 1.25rem; }
  .hero-portrait { height: clamp(470px, calc(100svh - 258px), 535px); min-height: 0; }
  .hero h1 { margin: .55rem 0; font-size: clamp(2.5rem, 4.4vw, 3.8rem); }
  .hero-lead { font-size: .92rem; line-height: 1.75; }
  .hero-actions { margin-top: 1.2rem; }
  .hero-trust { margin-top: 1.35rem; padding-top: 1rem; }
  .portrait-card-one { top: 17%; }
}

.faq-section { background: #070e1a; }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem,8vw,8rem); }
.faq-intro { position: sticky; top: 140px; align-self: start; }
.faq-intro p { color: var(--muted); }
.faq-intro .button { margin-top: 1rem; }
.accordion { display: grid; gap: 0.75rem; }
.accordion details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,0.02); overflow: hidden; }
.accordion summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem; cursor: pointer; list-style: none; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--gold-2); font-size: 1.2rem; transition: transform 0.2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: 0; padding: 0 1.2rem 1.2rem; color: #a0aab8; font-size: 0.82rem; }

.final-cta { padding: clamp(5rem,10vw,9rem) 0; color: var(--ink); background: var(--gold); }
.final-cta-inner { display: grid; grid-template-columns: 1fr 0.7fr; align-items: end; gap: 4rem; }
.final-cta .section-number { color: #5f4514; }
.final-cta h2 { margin-bottom: 0; font-size: clamp(2.3rem,4.3vw,4.1rem); }
.final-cta p { color: #4e4636; }
.final-cta .button-gold { color: var(--ivory); background: var(--ink); }

.site-footer { padding: 5rem 0 1.2rem; background: #03070d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 0.65fr); gap: 3rem; }
.footer-brand { margin-bottom: 1.2rem; }
.footer-grid > div:first-child p { max-width: 430px; color: #778392; font-size: 0.74rem; }
.footer-grid h3 { margin: 0 0 1rem; color: var(--gold-2); font-size: 0.75rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.footer-grid a, .footer-grid span { color: #8e99a7; font-size: 0.7rem; }
.social-links { display: flex; gap: 0.5rem; }
.social-links a { width: 38px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-2); font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.07); color: #697483; font-size: 0.62rem; }
.footer-bottom a { color: var(--gold-2); }

.floating-consultation { position: fixed; z-index: 90; right: 24px; bottom: 24px; min-height: 52px; display: flex; align-items: center; gap: 0.8rem; padding: 0.55rem 0.65rem 0.55rem 1rem; color: var(--ink); border: 0; border-radius: 999px; background: var(--gold-2); box-shadow: 0 18px 45px rgba(0,0,0,0.35); cursor: pointer; }
.floating-consultation b { width: 38px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--ivory); background: var(--ink); }
.floating-consultation span { font-weight: 800; font-size: 0.75rem; }

.consultation-dialog { width: min(620px, calc(100% - 24px)); max-height: calc(100vh - 24px); padding: 0; color: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ink-2); box-shadow: 0 45px 100px rgba(0,0,0,0.55); }
.consultation-dialog::backdrop { background: rgba(1,5,11,0.78); backdrop-filter: blur(8px); }
.consultation-dialog[open] { animation: dialogIn 0.3s ease both; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } }
.dialog-shell { position: relative; padding: clamp(1.4rem,5vw,2.6rem); }
.dialog-close { position: absolute; inset: 1rem auto auto 1rem; width: 38px; aspect-ratio: 1; color: var(--ivory); border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.2rem; }
.dialog-head > span { color: var(--gold-2); font-size: 0.68rem; font-weight: 700; }
.dialog-head h2 { margin: 0.3rem 0; font-family: var(--display); font-size: clamp(1.7rem,4vw,2.4rem); }
.dialog-head p { margin: 0; color: var(--muted); font-size: 0.74rem; }
.dialog-progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.4rem; margin: 1.5rem 0; direction: rtl; }
.dialog-progress span { height: 3px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.dialog-progress span.active { background: var(--gold); }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.25s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(10px); } }
.field-label { display: block; margin-bottom: 0.8rem; font-weight: 700; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.65rem; }
.choice-grid-wide { grid-template-columns: repeat(3,1fr); }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label span { min-height: 64px; display: grid; place-items: center; padding: 0.7rem; border: 1px solid var(--line); border-radius: var(--radius-sm); color: #bdc6d1; background: rgba(255,255,255,0.02); text-align: center; font-size: 0.78rem; transition: border-color .2s, background .2s, color .2s; }
.choice-grid input:checked + span { color: var(--gold-2); border-color: rgba(214,181,109,0.55); background: var(--gold-soft); }
.form-step > .button { width: 100%; margin-top: 1rem; }
.form-actions { display: grid; grid-template-columns: 0.5fr 1fr; gap: 0.7rem; margin-top: 1rem; }
.form-error { min-height: 1.2rem; margin: 0.5rem 0 0; color: #ff8b92; font-size: 0.68rem; }
.privacy-hint { color: #8591a1; font-size: 0.66rem; }
textarea, .form-step input[type="text"] { width: 100%; padding: 0.9rem 1rem; color: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-sm); outline: 0; background: rgba(255,255,255,0.025); resize: vertical; }
textarea:focus, .form-step input[type="text"]:focus { border-color: rgba(214,181,109,0.55); }
.form-step input[type="text"] { margin-bottom: 0.8rem; direction: ltr; text-align: right; }
.form-success { padding: 1rem 0; text-align: center; }
.success-mark { width: 70px; aspect-ratio: 1; display: grid; place-items: center; margin: auto; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-2); font-size: 1.6rem; }
.form-success h3 { margin: 1rem 0 0.4rem; font-family: var(--display); font-size: 1.7rem; }
.form-success p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav, .fake-phone { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { position: absolute; inset: 100% 24px auto; display: grid; gap: 0; padding: 0.7rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,16,31,0.98); box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .25s, transform .25s; }
  .mobile-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-nav a { padding: 0.8rem; border-bottom: 1px solid var(--line); color: #c4ccd6; font-size: 0.8rem; }
  .mobile-nav .button { margin-top: 0.7rem; }
  .hero-grid { grid-template-columns: 1fr 0.8fr; }
  .hero h1 { font-size: clamp(2.55rem,5.1vw,4.1rem); }
  .hero-portrait { height: clamp(520px, calc(100svh - 190px), 650px); }
  .portrait-frame, .portrait-frame img { min-height: 0; }
  .hero-trust { grid-template-columns: 1fr; max-width: 360px; }
  .assessment-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .strategy-grid, .faq-grid { grid-template-columns: 1fr; }
  .strategy-copy, .faq-intro { position: static; }
  .document-card { grid-template-columns: 0.65fr 1fr; }
  .document-points { grid-column: 1 / -1; grid-template-columns: repeat(4,1fr); }
  .insights-grid { grid-template-columns: repeat(2,1fr); }
  .insight-large { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 620px); }
  .demo-strip { justify-content: space-between; gap: 0.5rem; font-size: 0.62rem; }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 41px; }
  .brand strong { font-size: 0.76rem; }
  .brand small { font-size: 0.52rem; }
  .header-actions .button { display: none; }
  .mobile-nav { inset-inline: 14px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; padding-top: 2.2rem; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1 { margin: 0.8rem 0; font-size: clamp(2rem,8.5vw,2.65rem); }
  .hero-lead { margin-inline: auto; font-size: 0.92rem; }
  .hero-actions { justify-content: center; }
  .hero-actions .button { width: 100%; }
  .hero-trust { grid-template-columns: repeat(3,1fr); max-width: none; gap: 0.45rem; margin-top: 2rem; text-align: right; }
  .hero-trust > div { flex-direction: column; align-items: center; text-align: center; }
  .hero-trust small { display: none; }
  .hero-portrait { height: clamp(470px, 125vw, 540px); min-height: 0; margin-top: 1rem; }
  .portrait-frame, .portrait-frame img { height: 100%; min-height: 0; }
  .portrait-frame { width: min(100%,430px); }
  .portrait-frame img { object-fit: contain; object-position: center bottom; }
  .portrait-card-one { top: 24%; right: 0; }
  .portrait-card-two { left: 0; bottom: 21%; }
  .portrait-card { padding: 0.55rem; }
  .portrait-card > span { width: 29px; height: 29px; }
  .portrait-card small { display: none; }
  .hero-footer { justify-content: flex-start; min-height: 56px; overflow-x: auto; scrollbar-width: none; }
  .assessment-options { grid-template-columns: 1fr; }
  .assessment-options button { min-height: 100px; border-inline-start: 0; border-top: 1px solid var(--line); }
  .assessment-options button:first-child { border-top: 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .section-head h2, .strategy-copy h2, .faq-intro h2 { font-size: clamp(2.15rem,10.5vw,3rem); }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 350px; }
  .strategy-grid { gap: 2.5rem; }
  .document-card { grid-template-columns: 1fr; text-align: center; }
  .document-visual { min-height: 290px; }
  .document-sheet { width: 190px; height: 260px; }
  .document-seal { right: 15%; }
  .document-points { grid-column: auto; grid-template-columns: 1fr 1fr; text-align: right; }
  .document-copy .button { width: 100%; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-large { grid-column: auto; display: block; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .floating-consultation { right: 14px; bottom: 14px; }
  .choice-grid-wide { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .demo-strip > span { max-width: 55%; }
  .brand small { display: none; }
  .hero-portrait { height: clamp(450px, 127vw, 510px); min-height: 0; }
  .portrait-frame, .portrait-frame img { min-height: 0; }
  .portrait-card { transform: scale(0.88); }
  .portrait-card-one { right: -10px; }.portrait-card-two { left: -12px; }
  .portrait-name { bottom: 0.2rem; }
  .hero-trust strong { font-size: 0.64rem; }
  .document-points, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .choice-grid { grid-template-columns: 1fr; }
}

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