/* =====================================================================
   Commitbiz — Desert Dusk visual system
   Warm cream paper, deep teal brand, saffron accent. Editorial.
   ===================================================================== */

:root {
  /* Palette */
  --ink: #0D2438;
  --ink-soft: #1F3A52;
  --paper: #FAF6F0;
  --paper-2: #FFFFFF;
  --mist: #F3EDE3;
  --line: #E5DDD0;
  --line-strong: #D6CABA;
  --brand: #0E5C70;
  --brand-deep: #0A475A;
  --brand-soft: #DDEAEE;
  --accent: #C77A3A;
  --accent-deep: #A7642B;
  --accent-soft: #F3E1CC;
  --muted: #5A6B7A;

  /* Type */
  --display: "Instrument Serif", "Source Serif Pro", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ar: "IBM Plex Sans Arabic", "Plus Jakarta Sans", system-ui, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
}

html[lang="ar"] body { font-family: var(--ar); }
html[lang="ar"] .cb-h1, html[lang="ar"] .cb-h2,
html[lang="ar"] .cb-h3, html[lang="ar"] .cb-h4 { font-family: var(--ar); }
html[dir="rtl"] .cb-svc__chev svg,
html[dir="rtl"] .cb-btn__icon svg { transform: scaleX(-1); }

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { max-width: 100%; display: block; }

/* ─── Wrappers ────────────────────────────────────────────────────── */
.cb-wrap { max-width: 1280px; padding: 0 32px; margin: 0 auto; }
.cb-section { padding: 100px 0; position: relative; }
.cb-section--paper { background: var(--paper); }
.cb-section--mist  { background: var(--mist); }
.cb-section--ink   { background: var(--ink); color: var(--paper); }
.cb-section--ink .cb-eyebrow { color: var(--accent-soft); }
.cb-section--ink .cb-h2,
.cb-section--ink .cb-h3,
.cb-section--ink .cb-h4 { color: var(--paper); }
.cb-section--ink .cb-sub { color: rgba(250,246,240,.7); }

/* ─── Type ────────────────────────────────────────────────────────── */
.cb-h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
  text-wrap: balance;
}
.cb-h1 span { display: block; }
.cb-h1__em {
  color: var(--brand);
  font-style: italic;
}
.cb-h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.cb-h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.cb-h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.005em;
}
.cb-lede { font-size: clamp(17px, 1.3vw, 20px); color: var(--ink-soft); max-width: 56ch; margin: 0 0 28px; }
.cb-sub  { color: var(--muted); max-width: 64ch; margin: 0; }
.cb-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-deep);
}
.cb-wordmark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}

/* ─── Section heads ─────────────────────────────────────────────── */
.cb-sechead { display: grid; gap: 16px; max-width: 880px; margin: 0 0 52px; }
.cb-sechead__top { display: flex; align-items: center; gap: 14px; }
.cb-sechead__num {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  font-size: 22px;
}
.cb-quote-mark { color: var(--accent); font-family: var(--display); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.cb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  background: transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.cb-btn__icon { display: inline-flex; }
.cb-btn__icon svg { width: 16px; height: 16px; transition: transform .2s; }
.cb-btn:hover .cb-btn__icon svg { transform: translateX(3px); }

.cb-btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.cb-btn--primary:hover { background: var(--brand-deep); }

.cb-btn--accent {
  background: var(--accent);
  color: var(--paper-2);
  box-shadow: 0 6px 20px -8px rgba(199, 122, 58, .55);
}
.cb-btn--accent:hover { background: var(--accent-deep); }

.cb-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.cb-btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.cb-section--ink .cb-btn--ghost { color: var(--paper); border-color: rgba(250,246,240,.3); }
.cb-section--ink .cb-btn--ghost:hover { background: rgba(250,246,240,.08); }

/* ─── Nav ───────────────────────────────────────────────────────── */
.cb-nav {
  position: sticky; top: 0; z-index: 30;
  padding: 18px 0;
  background: rgba(250,246,240,0);
  transition: background .25s, box-shadow .25s, padding .25s;
}
.cb-nav.is-scrolled {
  background: rgba(250,246,240,.92);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: saturate(180%) blur(14px);
}
.cb-nav__inner {
  display: flex; align-items: center; gap: 32px;
}
.cb-nav__brand { display: flex; align-items: center; }
.cb-nav__links {
  display: flex; gap: 28px;
  flex: 1; justify-content: center;
}
.cb-nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.cb-nav__links a:hover { color: var(--ink); }
.cb-nav__links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.cb-nav__links a:hover::after { transform: scaleX(1); }
.cb-nav__right { display: flex; align-items: center; gap: 14px; }
.cb-nav__cta { padding: 10px 18px; font-size: 14px; }
.cb-nav__burger {
  display: none;
  background: none; border: none; padding: 6px;
  color: var(--ink);
}
.cb-nav__burger svg { width: 24px; height: 24px; }

/* Locale switcher */
.cb-loc {
  display: inline-flex; align-items: center;
  gap: 2px; padding: 4px 8px 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-2);
}
.cb-loc__icon { display: inline-flex; color: var(--muted); margin-right: 4px; }
.cb-loc__icon svg { width: 14px; height: 14px; }
.cb-loc__btn {
  background: none; border: none;
  padding: 6px 9px;
  font-size: 11.5px; letter-spacing: .08em; font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
}
.cb-loc__btn.is-on { background: var(--ink); color: var(--paper); }

/* ─── Hero ─────────────────────────────────────────────────────── */
.cb-hero { padding: 80px 0 0; position: relative; overflow: hidden; }
.cb-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  padding-bottom: 100px;
  align-items: end;
}
.cb-hero__copy { padding-top: 40px; }
.cb-hero__copy .cb-eyebrow { margin-bottom: 22px; }
.cb-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 32px; }
.cb-hero__meta {
  font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  max-width: 380px;
}

.cb-hero__visual { position: relative; padding-bottom: 40px; }
.cb-hero__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px -30px rgba(13, 36, 56, .45);
}
.cb-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.cb-hero__caption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(13, 36, 56, .8);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 13px;
  display: flex; flex-direction: column; gap: 2px;
}
.cb-hero__cap-eyebrow {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-soft);
}
.cb-hero__cap-line { color: rgba(250,246,240,.9); }

.cb-hero__plate {
  position: absolute;
  right: -10px;
  bottom: 80px;
  width: 250px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: 0 24px 60px -30px rgba(13,36,56,.3);
}
.cb-hero__plate-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.cb-hero__plate-row:last-child { border-bottom: none; }
.cb-hero__plate-k { color: var(--muted); }
.cb-hero__plate-v { color: var(--ink); font-weight: 600; }

/* Ticker */
.cb-ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid rgba(250,246,240,.08);
  padding: 16px 0;
}
.cb-ticker__inner {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: cb-tick 36s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
}
.cb-ticker__group { display: inline-flex; gap: 36px; align-items: center; padding-right: 36px; }
.cb-ticker__group i { color: var(--accent); font-style: normal; }
@keyframes cb-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Trust strip ──────────────────────────────────────────────── */
.cb-trust { background: var(--paper); border-bottom: 1px solid var(--line); }
.cb-trust .cb-wrap { padding-top: 70px; padding-bottom: 70px; }
.cb-trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.cb-trust__cell { border-left: 1px solid var(--line); padding: 4px 0 4px 18px; }
.cb-trust__cell:first-child { border-left: none; padding-left: 0; }
.cb-trust__v {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.cb-trust__k {
  font-size: 12.5px; color: var(--muted);
  margin-top: 8px;
}

/* ─── Services ────────────────────────────────────────────────── */
.cb-svc__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.cb-svc__list { list-style: none; padding: 0; margin: 0; }
.cb-svc__item {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: transparent; border: none;
  padding: 18px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 17px;
  transition: color .2s;
}
.cb-svc__item:hover { color: var(--ink); }
.cb-svc__item.is-active { color: var(--ink); }
.cb-svc__item.is-active .cb-svc__icon { color: var(--brand); }
.cb-svc__icon { color: var(--muted); display: inline-flex; }
.cb-svc__icon svg { width: 22px; height: 22px; }
.cb-svc__name { font-weight: 500; font-size: 17px; }
.cb-svc__item.is-active .cb-svc__name { font-weight: 600; }
.cb-svc__chev { opacity: .35; display: inline-flex; }
.cb-svc__chev svg { width: 16px; height: 16px; }
.cb-svc__item.is-active .cb-svc__chev { opacity: 1; color: var(--accent); }

.cb-svc__detail {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px;
  animation: cb-fade .26s ease;
}
@keyframes cb-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.cb-svc__detail-eyebrow {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px;
}
.cb-svc__tagline { color: var(--ink-soft); font-size: 17px; margin: 16px 0 32px; max-width: 56ch; }
.cb-svc__detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.cb-svc__col-title {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.cb-svc__check, .cb-svc__bullet { list-style: none; padding: 0; margin: 0; font-size: 14.5px; }
.cb-svc__check li {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 10px; align-items: flex-start;
  padding: 8px 0;
  color: var(--ink-soft);
}
.cb-svc__check li span { display: inline-flex; color: var(--brand); margin-top: 3px; }
.cb-svc__check li span svg { width: 16px; height: 16px; }
.cb-svc__bullet li {
  padding: 8px 0; color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.cb-svc__bullet li:last-child { border-bottom: none; }
.cb-svc__duration {
  font-family: var(--display);
  font-size: 22px; color: var(--ink);
  margin-bottom: 24px;
}
.cb-svc__cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

/* ─── Jurisdictions ──────────────────────────────────────────── */
.cb-cmp {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 60px;
}
.cb-cmp__head, .cb-cmp__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr 1.4fr;
  gap: 0;
}
.cb-cmp__head { background: var(--mist); }
.cb-cmp__col {
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
}
.cb-cmp__col:last-child { border-right: none; }
.cb-cmp__col--label {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  background: var(--mist);
}
.cb-cmp__row { border-top: 1px solid var(--line); }
.cb-cmp__row:hover .cb-cmp__col:not(.cb-cmp__col--label) { background: rgba(243, 237, 227, .35); }
.cb-cmp__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}
.cb-cmp__tag--main { background: var(--brand); color: var(--paper); }
.cb-cmp__tag--fz   { background: var(--accent); color: var(--paper); }
.cb-cmp__tag--off  { background: var(--ink); color: var(--paper); }
.cb-cmp__note {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: var(--mist);
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* Jurisdiction picker */
.cb-jpick { margin-top: 12px; }
.cb-jpick__head { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.cb-jpick__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: start;
}
.cb-jpick__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cb-jchip {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  min-width: 160px;
  transition: border-color .18s, transform .18s, background .18s;
}
.cb-jchip:hover { border-color: var(--ink); }
.cb-jchip.is-on { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.cb-jchip__name { font-weight: 600; font-size: 14.5px; }
.cb-jchip__type {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted);
}
.cb-jchip--mainland.is-on .cb-jchip__type { color: var(--brand-soft); }
.cb-jchip--freezone.is-on .cb-jchip__type { color: var(--accent-soft); }
.cb-jchip--offshore.is-on .cb-jchip__type { color: rgba(250,246,240,.7); }

.cb-jpick__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
}
.cb-jpick__card-eyebrow {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-deep);
  font-weight: 600; margin-bottom: 12px;
}
.cb-jpick__authority { font-size: 13px; color: var(--ink-soft); margin: 12px 0 14px; }
.cb-jpick__authority span { color: var(--muted); }
.cb-jpick__note { color: var(--ink-soft); }
.cb-jpick__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

/* ─── Estimator ──────────────────────────────────────────────── */
.cb-est {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.cb-est__controls { display: flex; flex-direction: column; gap: 28px; }
.cb-est__field {
  background: rgba(250,246,240,.04);
  border: 1px solid rgba(250,246,240,.12);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.cb-est__field legend {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-soft);
  font-weight: 600; padding: 0;
  display: flex; gap: 10px; align-items: baseline;
}
.cb-est__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px; letter-spacing: 0;
  color: var(--paper); text-transform: none;
}
.cb-est__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cb-est__pill {
  background: transparent; color: rgba(250,246,240,.7);
  border: 1px solid rgba(250,246,240,.18);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px;
}
.cb-est__pill.is-on { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.cb-est__split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cb-est__range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  margin-top: 16px;
  background: linear-gradient(to right, var(--accent) 0 var(--p, 20%), rgba(250,246,240,.15) var(--p, 20%) 100%);
  border-radius: 4px; outline: none;
}
.cb-est__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%; background: var(--paper);
  border: 2px solid var(--accent);
  cursor: pointer;
}
.cb-est__range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--accent);
  cursor: pointer;
}
.cb-est__rangeticks {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  color: rgba(250,246,240,.5);
  font-size: 11px;
}

.cb-est__segs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 14px; padding: 4px; background: rgba(250,246,240,.06); border-radius: 999px; }
.cb-est__seg {
  background: transparent; color: rgba(250,246,240,.7);
  border: none; padding: 9px 8px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
}
.cb-est__seg.is-on { background: var(--paper); color: var(--ink); font-weight: 600; }

.cb-est__addons { display: grid; gap: 8px; margin-top: 14px; }
.cb-est__addon {
  display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(250,246,240,.14);
  border-radius: var(--r-md);
  cursor: pointer;
}
.cb-est__addon input { display: none; }
.cb-est__addon-box {
  width: 22px; height: 22px;
  border: 1px solid rgba(250,246,240,.28);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent;
}
.cb-est__addon-box svg { width: 16px; height: 16px; }
.cb-est__addon.is-on { border-color: var(--accent); }
.cb-est__addon.is-on .cb-est__addon-box { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.cb-est__addon-label { font-size: 14px; color: var(--paper); }

.cb-est__result {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 18px;
}
.cb-est__result-eyebrow {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-deep);
  font-weight: 600;
}
.cb-est__amount { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cb-est__cur { color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.cb-est__val { font-family: var(--display); font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -0.02em; }
.cb-est__dash { color: var(--muted); font-family: var(--display); font-size: 36px; }
.cb-est__bar { height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; }
.cb-est__bar-fill {
  height: 100%; background: linear-gradient(to right, var(--brand), var(--accent));
  border-radius: 4px; width: 100%;
}
.cb-est__breakdown { list-style: none; margin: 0; padding: 0; border-top: 1px dashed var(--line); }
.cb-est__breakdown li {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.cb-est__breakdown li:last-child { border-bottom: none; }
.cb-est__breakdown li span:first-child { color: var(--muted); }
.cb-est__breakdown li span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; }

.cb-est__leadform { display: grid; gap: 8px; }
.cb-est__leadform input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}
.cb-est__leadform input:focus { outline: none; border-color: var(--brand); }
.cb-est__leadbtn { justify-content: center; margin-top: 6px; }

.cb-est__thanks {
  display: flex; gap: 14px;
  background: var(--brand-soft);
  border-radius: var(--r-md);
  padding: 16px;
  font-size: 14px;
  color: var(--ink);
}
.cb-est__thanks-icon { color: var(--brand); display: inline-flex; }
.cb-est__thanks-icon svg { width: 20px; height: 20px; }

.cb-est__disclaimer {
  font-size: 11.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  line-height: 1.5;
}

/* ─── About / Timeline / Leadership ────────────────────────── */
.cb-tl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 60px 0;
  max-width: 920px;
}
.cb-tl__step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 28px 0;
}
.cb-tl__bar { position: relative; }
.cb-tl__dot {
  position: absolute; top: 12px; left: 8px;
  width: 14px; height: 14px;
  background: var(--accent); border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--accent);
}
.cb-tl__line {
  position: absolute; left: 14px; top: 12px;
  width: 1px; bottom: -28px;
  background: var(--line);
}
.cb-tl__step:last-child .cb-tl__line { display: none; }
.cb-tl__body {
  border-left: 1px solid var(--line);
  padding-left: 24px;
  margin-left: -24px;
}
.cb-tl__year {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--brand);
}
.cb-tl__title { font-size: 22px; font-weight: 600; margin: 4px 0 6px; }
.cb-tl__copy { color: var(--ink-soft); max-width: 60ch; margin: 0 0 18px; }
.cb-tl__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 480px;
  aspect-ratio: 16/9;
  background: var(--mist);
}
.cb-tl__photo img { width: 100%; height: 100%; object-fit: cover; }

.cb-ld { margin-top: 60px; }
.cb-ld__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px; flex-wrap: wrap;
}
.cb-ld__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cb-ld__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.cb-ld__card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px -16px rgba(13,36,56,.25); }
.cb-ld__photo { aspect-ratio: 4/5; overflow: hidden; background: var(--mist); }
.cb-ld__photo img { width: 100%; height: 100%; object-fit: cover; }
.cb-ld__body { padding: 18px 20px 22px; }
.cb-ld__name { font-family: var(--display); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin: 0; }
.cb-ld__role { color: var(--brand); font-size: 13px; font-weight: 600; margin: 2px 0 8px; }
.cb-ld__note { font-size: 13px; color: var(--muted); margin: 0; }

/* ─── Offices ─────────────────────────────────────────────── */
.cb-off__group { margin-bottom: 48px; }
.cb-off__group:last-child { margin-bottom: 0; }
.cb-off__group-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.cb-off__group-tag {
  font-family: var(--display); font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.cb-off__group-count {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600;
}
.cb-off__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cb-off__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.cb-off__card:hover { border-color: var(--ink); transform: translateY(-2px); }
.cb-off__card--primary { border-color: var(--brand); box-shadow: 0 12px 36px -20px rgba(14, 92, 112, .35); }
.cb-off__card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cb-off__flag { font-size: 26px; line-height: 1; }
.cb-off__country { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cb-off__city { font-size: 22px; font-weight: 600; font-family: var(--display); letter-spacing: -0.005em; }
.cb-off__since {
  margin-left: auto;
  font-size: 11px; color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 4px 8px; border-radius: 999px;
  font-weight: 600;
}
.cb-off__role { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: 12px; }
.cb-off__addr { list-style: none; padding: 0; margin: 0 0 16px; }
.cb-off__addr li { font-size: 13.5px; color: var(--ink-soft); padding: 2px 0; }
.cb-off__actions { border-top: 1px dashed var(--line); padding-top: 12px; }
.cb-off__pin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-soft);
}
.cb-off__pin:hover { color: var(--ink); }
.cb-off__pin svg { width: 14px; height: 14px; color: var(--accent); }

/* ─── Guides ─────────────────────────────────────────────── */
.cb-gd__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.cb-gd__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 200px;
  transition: border-color .2s, transform .2s;
}
.cb-gd__card:hover { border-color: var(--ink); transform: translateY(-2px); }
.cb-gd__card--feat {
  grid-row: span 2;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  min-height: 380px;
}
.cb-gd__card--feat .cb-gd__kind,
.cb-gd__card--feat .cb-gd__tag { color: var(--accent-soft); border-color: rgba(250,246,240,.2); }
.cb-gd__card--feat .cb-gd__title { color: var(--paper); }
.cb-gd__card--feat .cb-gd__read { color: rgba(250,246,240,.6); }

.cb-gd__top { display: flex; justify-content: space-between; align-items: center; }
.cb-gd__kind {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
  color: var(--accent-deep);
}
.cb-gd__tag {
  font-size: 11px; color: var(--muted);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.cb-gd__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.cb-gd__card--feat .cb-gd__title { font-size: 36px; }
.cb-gd__foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
}
.cb-gd__read { font-size: 13px; color: var(--muted); }
.cb-gd__arrow svg { width: 18px; height: 18px; }

/* ─── Contact ─────────────────────────────────────────────── */
.cb-ct {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.cb-ct__channels { display: grid; gap: 12px; }
.cb-ct__channel {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(250,246,240,.04);
  border: 1px solid rgba(250,246,240,.12);
  border-radius: var(--r-lg);
  transition: background .2s, border-color .2s, transform .2s;
}
.cb-ct__channel:hover { background: rgba(250,246,240,.07); border-color: var(--accent); transform: translateX(4px); }
.cb-ct__icon {
  display: inline-flex; width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(199,122,58,.15);
  align-items: center; justify-content: center;
  color: var(--accent-soft);
}
.cb-ct__icon svg { width: 22px; height: 22px; }
.cb-ct__label {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-soft);
  font-weight: 600;
  grid-column: 2; grid-row: 1;
}
.cb-ct__v {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
  grid-column: 2; grid-row: 2;
}
.cb-ct__hint {
  font-size: 12px; color: rgba(250,246,240,.5);
  grid-column: 3; grid-row: 1 / span 2;
  align-self: center;
}

.cb-ct__hq {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.cb-ct__hq-eyebrow {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-deep);
  font-weight: 600;
}
.cb-ct__hq-addr { color: var(--ink-soft); margin: 0; line-height: 1.65; font-size: 14.5px; }
.cb-ct__hq-hours {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.cb-ct__hq-hours svg { width: 14px; height: 14px; }
.cb-ct__hq-note { font-size: 11.5px; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 12px; line-height: 1.5; }

/* ─── Footer ─────────────────────────────────────────────── */
.cb-foot { background: var(--ink); color: var(--paper); padding: 80px 0 40px; }
.cb-foot__top {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,246,240,.12);
}
.cb-foot__brand { max-width: 320px; }
.cb-foot__pitch {
  margin: 18px 0 0;
  color: rgba(250,246,240,.65);
  font-size: 14px;
}
.cb-foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cb-foot__cols h6 {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-soft);
  font-weight: 600; margin: 0 0 16px;
}
.cb-foot__cols ul { list-style: none; padding: 0; margin: 0; }
.cb-foot__cols li { padding: 5px 0; }
.cb-foot__cols a { color: rgba(250,246,240,.7); font-size: 13.5px; }
.cb-foot__cols a:hover { color: var(--paper); }
.cb-foot__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 32px;
  font-size: 12.5px;
  color: rgba(250,246,240,.5);
}
.cb-foot__socials { display: flex; gap: 12px; }
.cb-foot__socials a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(250,246,240,.16);
  font-size: 11px;
  color: rgba(250,246,240,.7);
  font-family: var(--sans); font-weight: 600;
  letter-spacing: .04em;
  text-transform: lowercase;
}
.cb-foot__socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

/* ─── Sticky WhatsApp ─────────────────────────────────────── */
.cb-sticky {
  position: fixed; right: 24px; bottom: 24px; z-index: 20;
}
.cb-sticky__wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25D366; color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(37,211,102,.55);
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s;
}
.cb-sticky__wa:hover { transform: translateY(-2px); }
.cb-sticky__wa-icon { display: inline-flex; }
.cb-sticky__wa-icon svg { width: 22px; height: 22px; }

html[dir="rtl"] .cb-sticky { right: auto; left: 24px; }

/* ─── Modal ──────────────────────────────────────────────── */
.cb-modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(13,36,56,.5);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: cb-fade .2s;
  backdrop-filter: blur(6px);
}
.cb-modal__panel {
  width: min(720px, 100%);
  max-height: 90vh; overflow: auto;
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  box-shadow: 0 36px 80px -32px rgba(13,36,56,.55);
}
.cb-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: var(--mist); border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.cb-modal__close:hover { background: var(--line-strong); }
.cb-modal__close svg { width: 18px; height: 18px; }
.cb-modal__head { margin-bottom: 24px; display: flex; flex-direction: column; gap: 12px; }
.cb-modal__steps { display: flex; gap: 6px; }
.cb-modal__step {
  width: 36px; height: 4px;
  background: var(--line); border-radius: 4px;
  transition: background .2s;
}
.cb-modal__step.is-on { background: var(--accent); }
.cb-modal__hint { color: var(--muted); margin: 6px 0 24px; }
.cb-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.cb-modal__grid--3 { grid-template-columns: repeat(3, 1fr); }
.cb-modal__choice {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: left;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.cb-modal__choice:hover { border-color: var(--ink); }
.cb-modal__choice.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cb-modal__choice-icon { display: inline-flex; color: var(--brand); }
.cb-modal__choice.is-on .cb-modal__choice-icon { color: var(--accent); }
.cb-modal__choice-icon svg { width: 20px; height: 20px; }
.cb-modal__choice--text { padding: 14px; font-size: 13.5px; }
.cb-modal__nav {
  display: flex; justify-content: flex-start; margin-top: 18px;
  align-items: center; gap: 12px;
}
.cb-modal__nav--end { justify-content: space-between; }
.cb-modal__back {
  background: none; border: none; padding: 8px 4px;
  color: var(--muted);
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.cb-modal__back:hover { color: var(--ink); }
.cb-modal__back svg { width: 14px; height: 14px; }
.cb-modal__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cb-modal__form-wide { grid-column: 1 / -1; }
.cb-modal__form label {
  display: flex; flex-direction: column; gap: 6px;
}
.cb-modal__form label span {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600;
}
.cb-modal__form input,
.cb-modal__form textarea {
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 14px; color: var(--ink);
  resize: vertical;
}
.cb-modal__form input:focus, .cb-modal__form textarea:focus { outline: none; border-color: var(--brand); }
.cb-modal__body--done { text-align: center; padding: 20px 0; }
.cb-modal__done-mark {
  width: 64px; height: 64px;
  background: var(--brand-soft); color: var(--brand);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.cb-modal__done-mark svg { width: 30px; height: 30px; }
.cb-modal__done-summary {
  display: grid; gap: 8px;
  margin: 24px auto; max-width: 360px; text-align: left;
}
.cb-modal__done-summary > div {
  display: flex; justify-content: space-between;
  padding: 10px 14px;
  background: var(--mist); border-radius: var(--r-md);
  font-size: 13px;
}
.cb-modal__done-summary span { color: var(--muted); }

/* ─── Mobile menu ─────────────────────────────────────────── */
.cb-mm {
  position: fixed; inset: 0; z-index: 40;
  background: var(--paper);
  padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.cb-mm__head { display: flex; justify-content: space-between; align-items: center; }
.cb-mm__close { background: none; border: none; padding: 8px; color: var(--ink); }
.cb-mm__close svg { width: 24px; height: 24px; }
.cb-mm__links { display: flex; flex-direction: column; flex: 1; }
.cb-mm__links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 28px;
}
.cb-mm__links a svg { width: 20px; height: 20px; color: var(--accent); }
.cb-mm__cta { justify-content: center; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cb-nav__links { display: none; }
  .cb-nav__burger { display: inline-flex; }
  .cb-nav__cta { display: none; }
  .cb-hero__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .cb-hero__plate { position: static; width: 100%; margin-top: 18px; }
  .cb-trust__grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .cb-svc__layout { grid-template-columns: 1fr; gap: 28px; }
  .cb-svc__detail { padding: 28px; }
  .cb-svc__detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .cb-cmp__head, .cb-cmp__row { grid-template-columns: 1fr; }
  .cb-cmp__col { border-right: none; border-bottom: 1px solid var(--line); }
  .cb-cmp__col--label { background: var(--mist); font-size: 11px; padding-bottom: 8px; }
  .cb-jpick__grid { grid-template-columns: 1fr; }
  .cb-est { grid-template-columns: 1fr; }
  .cb-est__result { position: static; }
  .cb-est__split { grid-template-columns: 1fr; }
  .cb-ld__grid { grid-template-columns: repeat(2, 1fr); }
  .cb-off__grid { grid-template-columns: 1fr 1fr; }
  .cb-gd__grid { grid-template-columns: 1fr 1fr; }
  .cb-gd__card--feat { grid-row: auto; grid-column: 1 / -1; min-height: auto; }
  .cb-ct { grid-template-columns: 1fr; }
  .cb-foot__top { grid-template-columns: 1fr; gap: 40px; }
  .cb-foot__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cb-wrap { padding: 0 20px; }
  .cb-section { padding: 70px 0; }
  .cb-trust__grid { grid-template-columns: 1fr 1fr; }
  .cb-trust__cell { border-left: none; padding-left: 0; }
  .cb-ld__grid { grid-template-columns: 1fr; }
  .cb-off__grid { grid-template-columns: 1fr; }
  .cb-gd__grid { grid-template-columns: 1fr; }
  .cb-modal__panel { padding: 28px 22px; }
  .cb-modal__grid { grid-template-columns: 1fr; }
  .cb-modal__grid--3 { grid-template-columns: 1fr 1fr; }
  .cb-modal__form { grid-template-columns: 1fr; }
  .cb-foot__cols { grid-template-columns: 1fr; }
  .cb-tl__step { grid-template-columns: 60px 1fr; gap: 16px; }
  .cb-hero__plate { width: 100%; }
  .cb-svc__detail { padding: 22px; }
  .cb-est__amount { gap: 4px; }
  .cb-est__val { font-size: 32px; }
}
