/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:    #102d47;
  --navy-dk: #0a1f33;
  --navy-lt: #EEF3F8;
  --slate:   #324859;
  --gold:    #ddac57;
  --gold-dk: #a8792a;
  --gold-lt: #FBF3E4;
  --grey:    #F5F7FA;
  --muted:   #5F6F80;
  --border:  #E2E8F0;
  --white:   #FFFFFF;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(16,45,71,.08);
  --shadow-md:0 8px 32px rgba(16,45,71,.12);
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; font-size: 1rem; }
section[id] { scroll-margin-top: 72px; }
.ico { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }

/* ─── Utilities ───────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.section-sub   { font-size: 1.05rem; color: var(--muted); max-width: 620px; }
.section-head  { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin: 0 auto; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #e6b965; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(221,172,87,.45); }
.btn-ghost   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .72rem; font-weight: 600; background: var(--navy-lt); color: var(--slate); }

/* ─── Navigation ─────────────────────────────────────────────── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .3s ease; }
nav.scrolled { box-shadow: 0 2px 20px rgba(16,45,71,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; transition: height .3s ease; }
nav.scrolled .nav-inner { height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; direction: ltr; }
.brand-mark { height: 50px; width: auto; transition: height .3s ease; }
nav.scrolled .brand-mark { height: 40px; }
.brand-text { line-height: 1; font-family: 'Poppins', sans-serif; }
.brand-name { font-size: 1.55rem; font-weight: 700; color: var(--slate); letter-spacing: .01em; display: block; transform: scaleX(.96); transform-origin: left; }
.brand-tag { display: flex; align-items: center; gap: 5px; font-size: .56rem; font-weight: 500; letter-spacing: .06em; color: var(--navy); margin-top: 5px; }
.brand-tag i { width: 3px; height: 3px; border-radius: 50%; background: var(--navy); display: inline-block; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { padding: 10px 22px; font-size: .875rem; }
.lang-toggle { border: 1.5px solid var(--border); background: var(--white); border-radius: 50px; padding: 7px 16px; font-weight: 700; font-size: .82rem; cursor: pointer; color: var(--navy); font-family: 'Poppins', 'Tajawal', sans-serif; transition: all .2s; white-space: nowrap; }
.lang-toggle:hover { border-color: var(--gold); color: var(--gold-dk); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero { padding: 88px 0 80px; overflow: hidden; background: linear-gradient(135deg, var(--white) 55%, var(--gold-lt) 100%); position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--white); border: 1px solid rgba(221,172,87,.5); border-radius: 50px; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; box-shadow: var(--shadow); }
.hero-badge::before { content: '★'; color: var(--gold); }
h1.hero-title { font-size: clamp(2.2rem, 5.2vw, 3.7rem); font-weight: 800; color: var(--navy); margin-bottom: 20px; line-height: 1.1; }
h1.hero-title span { color: var(--gold-dk); }
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 36px; max-width: 500px; line-height: 1.75; }
.typed-line { display: block; white-space: nowrap; min-height: 1.75em; margin-top: 4px; }
.typed-word { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--gold); }
.type-cursor { color: var(--gold-dk); font-weight: 500; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.trust-pill::before { content: '✓'; color: var(--gold-dk); font-weight: 800; }

/* Hero visual — audit report card */
.hero-visual { display: flex; justify-content: center; }
.report-wrap { position: relative; width: 100%; max-width: 460px; padding: 34px 26px; }
.report-watermark { position: absolute; width: 88%; inset-inline-end: -18%; top: -6%; opacity: .07; pointer-events: none; }
.report-card { position: relative; background: var(--white); border-radius: 24px; padding: 28px; box-shadow: 0 24px 60px rgba(16,45,71,.16); border: 1px solid var(--border); }
.report-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.report-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.report-title .ico-box { width: 38px; height: 38px; border-radius: 10px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.report-tag { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; background: var(--gold-lt); color: var(--gold-dk); direction: ltr; }
.report-sub { font-size: .8rem; color: var(--muted); margin: 0 0 16px 48px; }
[dir="rtl"] .report-sub { margin: 0 48px 16px 0; }
.report-chart { width: 100%; height: auto; margin-bottom: 18px; }
.report-chart .bar { transform-box: fill-box; transform-origin: bottom; animation: grow .9s cubic-bezier(.2,.7,.2,1) both; }
.report-chart .trend { stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 1.4s .6s ease forwards; }
.report-chart .arrow-head { opacity: 0; animation: fadein .3s 1.9s forwards; }
@keyframes grow { from { transform: scaleY(0); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadein { to { opacity: 1; } }
.report-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.report-checks li { display: flex; align-items: center; gap: 10px; font-size: .86rem; font-weight: 500; padding: 10px 12px; background: var(--grey); border-radius: 10px; }
.report-checks .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }
.float-chip { position: absolute; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); animation: float 5s ease-in-out infinite; }
.float-chip strong { display: block; font-size: .82rem; font-family: var(--font-head); }
.float-chip small { font-size: .7rem; color: var(--muted); }
.chip-a { top: 0; inset-inline-end: -8px; }
.chip-a .ico-box { width: 34px; height: 34px; border-radius: 50%; background: var(--gold-lt); color: var(--gold-dk); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.chip-b { bottom: 6px; inset-inline-start: -8px; flex-direction: column; align-items: flex-start; gap: 0; background: var(--navy); border-color: var(--navy); animation-delay: -2.5s; }
.chip-b .chip-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1.1; direction: ltr; }
.chip-b small { color: rgba(255,255,255,.75); max-width: 150px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── Trust Bar ─────────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 48px 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-stat { text-align: center; padding: 0 24px; border-inline-end: 1px solid rgba(255,255,255,.12); }
.trust-stat:last-child { border-inline-end: none; }
.trust-stat-icon { font-size: 1.6rem; margin-bottom: 10px; color: var(--gold); display: flex; justify-content: center; }
.trust-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; direction: ltr; }
.trust-stat-label { font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.75); letter-spacing: .02em; }

/* ─── Services ──────────────────────────────────────────────── */
.services { padding: 96px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; padding: 28px; transition: all .25s; display: flex; flex-direction: column; gap: 12px; }
.svc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; }
.svc-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.svc-desc  { font-size: .87rem; color: var(--muted); line-height: 1.65; flex: 1; }
.svc-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-link  { font-size: .82rem; font-weight: 700; color: var(--gold-dk); margin-top: 4px; transition: gap .2s; display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.svc-link:hover { color: var(--navy); }
.audience { margin-top: 48px; background: var(--grey); border-radius: 20px; padding: 26px 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.audience-label { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.audience-list { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.audience-list span { background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 8px 16px; font-size: .84rem; font-weight: 600; color: var(--slate); display: inline-flex; align-items: center; gap: 8px; }
.audience-list span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ─── About / Founder ───────────────────────────────────────── */
.about { padding: 96px 0; background: var(--grey); }
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.founder-card { position: relative; max-width: 440px; width: 100%; justify-self: center; }
.founder-card::before { content: ''; position: absolute; inset: 28px -18px -18px 28px; background: var(--navy); border-radius: 28px; }
[dir="rtl"] .founder-card::before { inset: 28px 28px -18px -18px; }
.founder-photo { position: relative; border-radius: 28px; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; background: var(--white); box-shadow: var(--shadow-md); }
.founder-plate { position: absolute; bottom: 22px; inset-inline-start: 22px; inset-inline-end: 22px; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md); border-inline-start: 4px solid var(--gold); }
.founder-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.founder-role { font-size: .8rem; color: var(--muted); }
.about-quote { font-size: 4rem; color: var(--gold); line-height: .6; margin: 8px 0 12px; font-family: Georgia, serif; }
.about-text { font-size: 1.02rem; color: var(--navy); line-height: 1.85; margin-bottom: 16px; }
.about-text.lead { font-size: 1.12rem; font-weight: 600; }
.about-sign { font-size: .9rem; color: var(--muted); font-style: italic; margin-top: 8px; }
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; }
.cred { background: var(--white); border-radius: 18px; padding: 24px; border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.cred-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold-lt); color: var(--gold-dk); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.cred h4 { font-size: .95rem; font-weight: 600; }
.cred p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ─── Timeline ──────────────────────────────────────────────── */
.journey { padding: 96px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.journey::after { content: ''; position: absolute; width: 520px; height: 430px; inset-inline-end: -120px; bottom: -120px; background: url('../logo-mark-light.svg') no-repeat center / contain; opacity: .04; pointer-events: none; }
.journey .section-title { color: var(--white); }
.journey .section-label { color: var(--gold); }
.journey .section-sub { color: rgba(255,255,255,.7); }
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; list-style: none; }
.timeline::before { content: ''; position: absolute; top: 11px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, rgba(221,172,87,.2), var(--gold), rgba(221,172,87,.2)); }
.tl-item { position: relative; padding-top: 40px; }
.tl-dot { position: absolute; top: 0; inset-inline-start: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); border: 3px solid var(--gold); box-shadow: 0 0 0 6px rgba(221,172,87,.15); }
.tl-item:last-child .tl-dot { background: var(--gold); }
.tl-year { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; direction: ltr; }
.tl-text { font-size: .86rem; color: rgba(255,255,255,.8); line-height: 1.65; }

/* ─── Mission / Vision / Values ─────────────────────────────── */
.values { padding: 96px 0; background: var(--white); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.mv-card { border-radius: 22px; padding: 36px; display: flex; gap: 22px; align-items: flex-start; }
.mv-card.mission { background: var(--navy); color: var(--white); }
.mv-card.vision { background: var(--gold-lt); border: 1.5px solid rgba(221,172,87,.4); }
.mv-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.mission .mv-icon { background: rgba(255,255,255,.08); color: var(--gold); }
.vision .mv-icon { background: var(--navy); color: var(--gold); }
.mv-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.mission h3 { color: var(--gold); }
.mv-card p { font-size: .93rem; line-height: 1.8; }
.mission p { color: rgba(255,255,255,.82); }
.vision p { color: var(--slate); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { border: 1.5px solid var(--border); border-radius: 18px; padding: 24px; transition: all .25s; }
.value:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.value-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.value-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.value h4 { font-size: 1rem; font-weight: 600; }
.value p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.value.wide { grid-column: span 2; }
.value.highlight { background: var(--navy); border-color: var(--navy); }
.value.highlight h4 { color: var(--gold); }
.value.highlight p { color: rgba(255,255,255,.78); }
.value.highlight .value-icon { background: var(--gold); color: var(--navy); }

/* ─── Approach ──────────────────────────────────────────────── */
.approach { padding: 96px 0; background: var(--grey); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; list-style: none; }
.step { background: var(--white); border-radius: 20px; padding: 26px; position: relative; box-shadow: var(--shadow); border-top: 3px solid transparent; transition: all .25s; }
.step:hover { border-top-color: var(--gold); transform: translateY(-3px); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px var(--navy-lt); margin-bottom: 18px; direction: ltr; }
.step-title { font-family: var(--font-head); font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.step-desc  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ─── Success stories ───────────────────────────────────────── */
.stories { padding: 96px 0; background: var(--white); }
.stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.story { border: 1.5px solid var(--border); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; gap: 12px; transition: all .25s; background: var(--white); }
.story:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(221,172,87,.6); }
.story-top { display: flex; align-items: center; justify-content: space-between; }
.story-num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--gold); line-height: 1; direction: ltr; }
.story-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-lt); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.story h4 { font-size: 1rem; font-weight: 600; }
.story p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.story.featured { background: var(--navy); border-color: var(--navy); }
.story.featured h4 { color: var(--white); }
.story.featured p { color: rgba(255,255,255,.78); }
.story.featured .story-icon { background: rgba(255,255,255,.1); color: var(--gold); }

/* ─── Clients ───────────────────────────────────────────────── */
.clients { padding: 96px 0; background: var(--grey); }
.client-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.client-tab { padding: 9px 18px; border: 1.5px solid var(--border); border-radius: 50px; font-size: .85rem; font-weight: 600; color: var(--muted); background: var(--white); cursor: pointer; transition: all .2s; }
.client-tab:hover { border-color: var(--gold); color: var(--navy); }
.client-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.client-tab .count { display: inline-block; margin-inline-start: 6px; font-size: .72rem; padding: 1px 7px; border-radius: 10px; background: var(--gold-lt); color: var(--gold-dk); }
.client-tab.active .count { background: var(--gold); color: var(--navy); }
.client-panel { background: var(--white); border-radius: 22px; padding: 32px; box-shadow: var(--shadow); }
.client-sub { margin-bottom: 20px; }
.client-sub:last-child { margin-bottom: 0; }
.client-sub h5 { font-family: var(--font-head); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dk); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 16px; border-radius: 12px; background: var(--grey); border: 1px solid var(--border); font-size: .86rem; font-weight: 600; color: var(--navy); }
.logo-wall { margin-top: 28px; background: var(--white); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.logo-wall img { width: 100%; height: auto; border-radius: 10px; }

/* ─── Coverage ──────────────────────────────────────────────── */
.coverage { padding: 96px 0; background: var(--white); }
.cov-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; list-style: none; }
.cov-tile { border-radius: 18px; padding: 22px 16px; text-align: center; color: var(--white); background: var(--navy); transition: transform .25s; }
.cov-tile:nth-child(even) { background: var(--slate); }
.cov-tile:hover { transform: translateY(-3px); }
.cov-num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; direction: ltr; }
.cov-name { font-size: .95rem; font-weight: 600; }
.cov-note { grid-column: span 1; background: var(--gold) !important; color: var(--navy) !important; font-size: .8rem; font-weight: 600; line-height: 1.5; display: flex; align-items: center; justify-content: center; text-align: center; }

/* ─── Contact / Form ────────────────────────────────────────── */
.contact { padding: 96px 0; background: var(--grey); }
.contact-inner { display: grid; grid-template-columns: .8fr 1.4fr; gap: 28px; align-items: start; }
.info-card { background: var(--navy); color: var(--white); border-radius: 24px; padding: 36px 30px; position: relative; overflow: hidden; }
.info-card::after { content: ''; position: absolute; width: 240px; height: 200px; inset-inline-end: -50px; bottom: -40px; background: url('../logo-mark-light.svg') no-repeat center / contain; opacity: .06; }
.info-card h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--gold); }
.info-card > p { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 26px; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; position: relative; z-index: 1; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.info-val { font-size: .92rem; color: var(--white); line-height: 1.55; word-break: break-word; }
.info-val a:hover { color: var(--gold); }
.btn-wa { background: #25D366; color: #fff; width: 100%; justify-content: center; position: relative; z-index: 1; }
.btn-wa:hover { background: #1fb959; transform: translateY(-1px); }
.form-card { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label, .field-label { font-size: .82rem; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.field-label { display: block; margin-bottom: 10px; }
.form-group input, .form-group textarea, .form-group select { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--navy); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(221,172,87,.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.sub-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.svc-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
.svc-type-card { border: 1.5px solid var(--border); border-radius: 14px; padding: 14px 8px; text-align: center; cursor: pointer; transition: all .2s; user-select: none; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.svc-type-card:hover { border-color: var(--gold); background: var(--gold-lt); }
.svc-type-card.active { border-color: var(--navy); background: var(--navy); }
.svc-type-card.active .svc-type-name { color: var(--white); }
.svc-type-card.active .svc-type-icon { color: var(--gold); }
.svc-type-card input { position: absolute; opacity: 0; pointer-events: none; }
.svc-type-icon { font-size: 1.35rem; color: var(--slate); }
.svc-type-name { font-size: .74rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-opt { padding: 8px 18px; border: 1.5px solid var(--border); border-radius: 50px; font-size: .82rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .2s; user-select: none; }
.pill-opt:hover, .pill-opt.active { border-color: var(--gold); color: var(--navy); background: var(--gold-lt); }
.pill-opt input { position: absolute; opacity: 0; pointer-events: none; }
.btn-submit { width: 100%; padding: 17px; font-size: 1.02rem; font-family: var(--font-head); font-weight: 600; background: var(--navy); color: var(--white); border: none; border-radius: 50px; cursor: pointer; transition: all .2s; margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--slate); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,45,71,.3); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 12px; }
#form-errors { display: none; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; font-size: .85rem; color: #B91C1C; line-height: 1.8; }
#form-success { display: none; text-align: center; padding: 40px 12px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--gold-lt); color: var(--gold-dk); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 18px; }
#form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
#form-success p { color: var(--muted); margin-bottom: 8px; }
#form-success .btn { margin-top: 14px; }

/* ─── Footer ─────────────────────────────────────────────────── */
footer { background: var(--navy-dk); color: rgba(255,255,255,.85); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1.2fr 1.2fr .9fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: rgba(255,255,255,.7); }
.footer-brand .brand-tag i { background: var(--gold); }
.footer-tagline { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 300px; margin-top: 18px; }
.footer-col h5 { font-family: var(--font-head); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .85rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col li a:hover, .footer-col li[data-service]:hover { color: var(--white); cursor: pointer; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .ico { color: var(--gold); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-left { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom-right { display: flex; gap: 16px; }
.footer-bottom-right span { font-size: .78rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 6px; }
.footer-bottom-right span::before { content: '·'; color: var(--gold); font-weight: 800; }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 22px; inset-inline-end: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); z-index: 90; transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; }
  .report-chart .trend { stroke-dashoffset: 0; }
  .report-chart .arrow-head { opacity: 1; }
}

/* ─── Arabic / RTL ───────────────────────────────────────────── */
[dir="rtl"] body, [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5,
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] button, [dir="rtl"] .btn,
[dir="rtl"] .svc-title, [dir="rtl"] .step-title, [dir="rtl"] .report-title, [dir="rtl"] .founder-name,
[dir="rtl"] .float-chip strong, [dir="rtl"] .audience-label { font-family: 'Tajawal', 'Inter', sans-serif; }
[dir="rtl"] .section-label, [dir="rtl"] .sub-label, [dir="rtl"] .footer-col h5, [dir="rtl"] .client-sub h5,
[dir="rtl"] .trust-stat-label, [dir="rtl"] .form-group label, [dir="rtl"] .field-label, [dir="rtl"] .info-label { letter-spacing: normal; text-transform: none; }
[dir="rtl"] h1.hero-title { line-height: 1.3; }
[dir="rtl"] .section-title { line-height: 1.4; }
[dir="rtl"] .about-text, [dir="rtl"] .hero-sub { line-height: 1.95; }
[dir="rtl"] .flip { transform: scaleX(-1); }
[dir="rtl"] .timeline::before { background: linear-gradient(270deg, rgba(221,172,87,.2), var(--gold), rgba(221,172,87,.2)); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .services-grid, .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .cov-grid { grid-template-columns: repeat(4, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; align-items: stretch; gap: 16px; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 18px 24px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav-links.open .btn { width: 100%; justify-content: center; }
  .hero-inner, .about-inner, .contact-inner, .mv-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; }
  .about-inner { gap: 56px; }
  .founder-card { max-width: 380px; margin: 0 auto; width: 100%; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stat { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 20px; }
  .trust-stat:nth-child(odd) { border-inline-end: 1px solid rgba(255,255,255,.12); }
  .trust-stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-type-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .nav-inner { height: 72px; }
  nav.scrolled .nav-inner { height: 62px; }
  .brand-mark { height: 40px; } nav.scrolled .brand-mark { height: 34px; }
  .brand-name { font-size: 1.25rem; }
  .brand-tag { font-size: .47rem; }
  .nav-right { gap: 10px; }
  .lang-toggle { padding: 6px 12px; }
  .hero { padding: 56px 0 64px; }
  .hero-sub .typed-line { white-space: normal; }
  .report-wrap { padding: 30px 6px; }
  .chip-a { inset-inline-end: 0; } .chip-b { inset-inline-start: 0; }
  .services, .about, .journey, .values, .approach, .stories, .clients, .coverage, .contact { padding: 72px 0; }
  .services-grid, .stories-grid, .values-grid, .steps, .creds { grid-template-columns: 1fr; }
  .value.wide { grid-column: auto; }
  .timeline { grid-template-columns: 1fr; row-gap: 28px; padding-inline-start: 8px; }
  .cov-grid { grid-template-columns: repeat(2, 1fr); }
  .cov-note { grid-column: span 2; }
  .mv-card { flex-direction: column; padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .client-panel { padding: 22px 18px; }
  .svc-type-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .founder-card::before { inset: 20px -10px -12px 20px; }
  [dir="rtl"] .founder-card::before { inset: 20px 20px -12px -10px; }
}
