/* ============================================================
   Shuraa Business Setup — Visual System
   Palette derived from logo-shuraa-blue.svg (navy + #c93828 brick red)
   ============================================================ */

:root {
  /* Brand */
  --navy:        #0F2548;
  --navy-deep:   #081730;
  --navy-soft:   #1A3460;
  --red:         #C93828;
  --red-dark:    #A12B1D;
  --gold:        #C9A24B; /* alt accent for tweak */
  --sand:        #F5F1EA;
  --sand-deep:   #ECE5D7;
  --paper:       #FFFFFF;
  --mist:        #F4F6FA;
  --ink:         #0E1726;
  --ink-soft:    #2A3447;
  --muted:       #5B6577;
  --line:        #E2E7EF;
  --line-deep:   #C9D2E0;

  /* Type */
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Rhythm */
  --section: 96px;
  --gutter:  clamp(20px, 4vw, 56px);
  --maxw:    1280px;

  /* Effects */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(8, 23, 48, 0.06), 0 1px 3px rgba(8, 23, 48, 0.04);
  --shadow-md: 0 4px 12px rgba(8, 23, 48, 0.08), 0 1px 3px rgba(8, 23, 48, 0.04);
  --shadow-lg: 0 24px 60px rgba(8, 23, 48, 0.18);
}

/* Density tweak */
[data-density="compact"] { --section: 72px; }
[data-density="airy"]    { --section: 120px; }

/* Accent tweak */
[data-accent="gold"] { --red: #C9A24B; --red-dark: #A6822E; }
[data-accent="sand"] { --red: #B8784A; --red-dark: #8E5733; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--navy); color: var(--paper); }

/* ---------- Type ramp ---------- */
.h-display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--navy);
  text-wrap: balance;
}
.h-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
.h-eyebrow-ink { color: var(--ink-soft); }
.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 60ch;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: var(--section) 0; }
.section-tight { padding: calc(var(--section) * 0.7) 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: var(--paper); }
.section-navy .h-display { color: var(--paper); }
.section-navy .lead { color: rgba(255,255,255,0.78); }

.grid { display: grid; gap: 24px; }
.row { display: flex; gap: 16px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 6px 20px -6px rgba(201, 56, 40, 0.55);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-navy {
  background: var(--navy);
  color: var(--paper);
}
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line-deep);
}
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn-ghost {
  color: var(--ink);
}
.btn-ghost:hover { color: var(--red); }
.btn-whatsapp {
  background: #25D366;
  color: var(--paper);
  box-shadow: 0 6px 20px -6px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover { background: #1FB857; }
.btn-sm { padding: 10px 16px; font-size: 13px; }

/* Ribbon arrow */
.btn .arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform 0.18s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { color: var(--navy); background: var(--mist); }
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.lang-switch {
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.lang-switch button {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
}
.lang-switch button.active {
  background: var(--navy);
  color: var(--paper);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.6) contrast(1.1);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 40%, rgba(15,37,72,0.25), rgba(8,23,48,0.95) 80%),
    linear-gradient(180deg, rgba(8,23,48,0.55) 0%, rgba(8,23,48,0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 100px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 18px 0 24px;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--red) 0%, #E66E5C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  max-width: 52ch;
}
.hero .h-eyebrow { color: #F2A89D; }
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-attrib {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.hero-attrib .dot {
  width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%;
}

/* Hero right panel — anniversary card */
.hero-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero-card-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.hero-card-badge img { width: 220px; max-width: 100%; }
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}
.hero-card-stats div { text-align: left; }
.hero-card-stats .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-card-stats .l {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--mono);
}

/* Hero ticker / marquee strip */
.hero-strip {
  position: relative;
  z-index: 1;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 14px 0;
}
.hero-strip-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.hero-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-strip-item .red { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Trust strip ---------- */
.trust {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px 0;
}
.trust-cell {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.trust-cell:first-child { border-left: none; padding-left: 0; }
.trust-cell .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-cell .n .since { color: var(--red); font-size: 22px; vertical-align: super; margin-right: 4px; }
.trust-cell .l {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
.trust-cell .l strong { color: var(--ink); font-weight: 600; }
.trust-cell .src {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.06em;
}

/* ---------- Section headers ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.025em;
  line-height: 1.03;
  color: var(--navy);
  margin: 14px 0 0;
  text-wrap: balance;
}
.section-head .lead { margin: 0; }

/* ---------- Service cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.svc-card {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.svc-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.svc-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.svc-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin: 14px 0 8px;
  letter-spacing: -0.015em;
}
.svc-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.svc-card .journey {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
}
.svc-card .journey span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.svc-card .journey span + span::before {
  content: "→";
  margin: 0 6px 0 2px;
  color: var(--red);
}
.svc-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--sand);
  display: grid; place-items: center;
  color: var(--red);
}
.svc-card .icon svg { width: 22px; height: 22px; }
.svc-card.featured {
  grid-column: span 6;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}
.svc-card.featured h3 { color: var(--paper); }
.svc-card.featured p { color: rgba(255,255,255,0.75); }
.svc-card.featured .num { color: rgba(255,255,255,0.5); }
.svc-card.featured .journey { border-top-color: rgba(255,255,255,0.12); }
.svc-card.featured .journey span { color: rgba(255,255,255,0.55); }
.svc-card.featured .icon { background: rgba(255,255,255,0.08); color: var(--paper); }
.svc-card.featured:hover { border-color: var(--red); }

/* ---------- Jurisdiction Comparison ---------- */
.juris {
  background: var(--sand);
}
.juris-table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.juris-cols {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
}
.juris-header {
  padding: 28px 24px 24px;
  border-bottom: 2px solid var(--navy);
  border-right: 1px solid var(--line);
  position: relative;
}
.juris-header:last-child { border-right: none; }
.juris-header.spec {
  background: var(--mist);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.juris-header.spec .h-eyebrow { color: var(--muted); }
.juris-header.spec h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 6px 0 0;
}
.juris-header h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  margin: 4px 0 8px;
  letter-spacing: -0.015em;
}
.juris-header p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.juris-header.active {
  background: var(--navy);
  color: var(--paper);
}
.juris-header.active h3 { color: var(--paper); }
.juris-header.active p { color: rgba(255,255,255,0.75); }
.juris-header.active .h-eyebrow { color: #F2A89D; }
.juris-header.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.juris-row {
  display: contents;
}
.juris-cell {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.juris-cell:last-child { border-right: none; }
.juris-cell.label {
  background: var(--mist);
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -0.005em;
}
.juris-cell.active {
  background: rgba(201, 56, 40, 0.045);
  box-shadow: inset 0 -1px 0 rgba(201, 56, 40, 0.08);
}
.juris-pill {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink-soft);
  font-weight: 500;
}
.juris-pill.good { background: #E8F4ED; color: #1E7A47; }
.juris-pill.med  { background: #FEF3E2; color: #9A6111; }
.juris-pill.low  { background: #FDEBE6; color: #A12B1D; }
.juris-pill.dot::before {
  content: "•";
  margin-right: 6px;
  font-size: 14px;
  line-height: 0;
}

.juris-foot {
  padding: 20px 24px;
  background: var(--mist);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}
.juris-foot .note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Cost Estimator ---------- */
.estimator {
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.estimator::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 56, 40, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.04), transparent 60%);
  z-index: 0;
}
.estimator > * { position: relative; z-index: 1; }
.est-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.est-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 36px;
}
.est-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.est-step {
  flex: 1;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.est-step.active { border-color: var(--red); color: var(--paper); }
.est-step.done { color: rgba(255,255,255,0.7); border-color: rgba(201,56,40,0.6); }
.est-step .num {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 10px;
}
.est-step.active .num { background: var(--red); }
.est-step.done .num { background: rgba(201,56,40,0.5); }

.est-q {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0 0 8px;
}
.est-help {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 24px;
}
.est-options {
  display: grid;
  gap: 10px;
}
.est-option {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  text-align: left;
  transition: all 0.15s ease;
  align-items: flex-start;
}
.est-option:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
}
.est-option.selected {
  background: rgba(201, 56, 40, 0.12);
  border-color: var(--red);
}
.est-option .est-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 2px;
  display: grid;
  place-items: center;
}
.est-option.selected .est-radio {
  border-color: var(--red);
}
.est-option.selected .est-radio::after {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
}
.est-option .est-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--paper);
}
.est-option .est-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  font-family: var(--body);
}

.est-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 18px 22px;
}
.est-counter .label-block {
  display: flex;
  flex-direction: column;
}
.est-counter .est-label { font-family: var(--display); font-weight: 600; font-size: 15px; }
.est-counter .est-sub { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.est-counter-ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px;
}
.est-counter-ctrl button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  font-size: 18px;
  display: grid; place-items: center;
}
.est-counter-ctrl button:hover { background: var(--red); }
.est-counter-ctrl .val {
  min-width: 32px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--paper);
}

.est-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}
.est-nav .btn-ghost { color: rgba(255,255,255,0.7); padding-left: 0; }
.est-nav .btn-ghost:hover { color: var(--paper); }

/* Live panel */
.est-panel {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.est-panel .h-eyebrow { color: var(--red); }
.est-panel h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}
.est-range {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 28px 0 8px;
  line-height: 1.05;
}
.est-range .currency {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--red);
  vertical-align: top;
  margin-right: 6px;
  letter-spacing: 0.04em;
}
.est-range .from-to {
  font-size: clamp(36px, 4.5vw, 56px);
}
.est-range .dash {
  color: var(--line-deep);
  margin: 0 12px;
  font-weight: 400;
}
.est-disclaimer {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin-top: 4px;
}
.est-disclaimer strong { color: var(--red); }

.est-breakdown {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.est-breakdown .row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.est-breakdown .row-item:last-child { border-bottom: none; }
.est-breakdown .row-item .k { color: var(--muted); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.est-breakdown .row-item .v { font-family: var(--display); font-weight: 600; color: var(--navy); }
.est-breakdown .row-item .v.placeholder { color: var(--line-deep); }

.est-handoff {
  margin-top: auto;
  padding-top: 28px;
}
.est-handoff .btn { width: 100%; justify-content: center; }
.est-handoff .or {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
  letter-spacing: 0.08em;
}

/* ---------- Founder block ---------- */
.founder {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder-portrait {
  position: relative;
}
.founder-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--r-md);
}
.founder-portrait .stamp {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--red);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.founder-portrait .caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(15, 37, 72, 0.85);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
}
.founder-portrait .caption strong { display: block; font-family: var(--display); font-size: 14px; margin-bottom: 2px; }
.founder blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 24px 0 0;
  text-wrap: balance;
}
.founder .timeline {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.founder .timeline div {
  border-top: 2px solid var(--red);
  padding-top: 14px;
}
.founder .timeline .y {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.founder .timeline .t {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-top: 6px;
  line-height: 1.35;
}
.founder .timeline .d {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Global Offices ---------- */
.offices-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}
.office-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.office-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.office-card .img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.office-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.office-card:hover .img img { transform: scale(1.04); }
.office-card.hq .img { aspect-ratio: 16/10; }
.office-card.hq { grid-row: span 1; }
.office-card .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--paper);
  padding: 5px 10px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.office-card .body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.office-card .h-eyebrow { color: var(--muted); }
.office-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin: 6px 0 8px;
  letter-spacing: -0.015em;
}
.office-card address {
  font-style: normal;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.office-card .contact {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.office-card .contact .lbl { color: var(--red); }

/* ---------- Consultation form ---------- */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
.consult-left h2 { margin-top: 14px; }
.consult-left .channels {
  margin-top: 36px;
  display: grid;
  gap: 12px;
}
.consult-channel {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  align-items: center;
  background: var(--paper);
  transition: border-color 0.15s ease;
}
.consult-channel:hover { border-color: var(--navy); }
.consult-channel .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--sand);
  display: grid; place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.consult-channel.wa .ico { background: rgba(37, 211, 102, 0.12); color: #1FB857; }
.consult-channel .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.consult-channel .value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  margin-top: 2px;
  letter-spacing: -0.005em;
}
.consult-channel.wa .value { color: #1FB857; }

.consult-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.consult-form h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.consult-form .sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-deep);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 37, 72, 0.08);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 20px;
  line-height: 1.5;
}
.consult-form .btn { width: 100%; justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo img { height: 42px; margin-bottom: 20px; }
.footer-bio {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 38ch;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer ul a:hover { color: var(--paper); }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s ease;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: var(--paper); }

/* ---------- Sticky WhatsApp ---------- */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab .btn {
  box-shadow: var(--shadow-lg);
}

/* ---------- RTL ---------- */
[dir="rtl"] body { font-family: "IBM Plex Sans Arabic", "Noto Kufi Arabic", var(--body); }
[dir="rtl"] .btn .arrow { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(3px); }
[dir="rtl"] .nav-inner,
[dir="rtl"] .hero-inner,
[dir="rtl"] .section-head,
[dir="rtl"] .juris-cols,
[dir="rtl"] .est-grid,
[dir="rtl"] .founder,
[dir="rtl"] .offices-grid,
[dir="rtl"] .consult-grid,
[dir="rtl"] .footer-grid {
  direction: rtl;
}
[dir="rtl"] .fab { right: auto; left: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .svc-grid > .svc-card { grid-column: span 6; }
  .svc-grid > .svc-card.featured { grid-column: span 12; }
  .est-grid { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .trust-cell { padding: 16px 18px; border-left: none; border-top: 1px solid var(--line); }
  .trust-cell:nth-child(-n+2) { border-top: none; }
  .svc-grid > .svc-card { grid-column: span 12; min-height: 0; }
  .svc-grid > .svc-card.featured { grid-column: span 12; }
  .juris-cols { grid-template-columns: 1fr; }
  .juris-cell, .juris-header { border-right: none; }
  .juris-cell.active::before { display: none; }
  .offices-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-inner { padding: 80px 0 60px; }
}
