/* ============================================================================
   Plan One — Pages Stylesheet
   Combines original prototype styles + WordPress-specific additions
   ============================================================================ */

/* page-specific styles for Plan One */

/* ─── Billboard visual placeholder ─── */
.bb-visual {
  position: relative;
  width: 100%;
  background: #0a1530;
  overflow: hidden;
}
.bb-visual svg { display: block; width: 100%; height: 100%; }
.bb-visual-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(10, 27, 64, .75);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}

/* ─── Avail dots ─── */
.avail-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 4px;
}
.avail-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--line);
  display: block;
  position: relative;
  cursor: default;
  transition: transform .15s ease;
}
.avail-dot:hover { transform: scale(1.4); z-index: 2; }
.avail-dot::after {
  content: attr(data-month) " · " attr(data-status);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink, #111);
  color: #fff;
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .12s ease, transform .12s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.avail-dot::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 4px solid transparent;
  border-top-color: var(--ink, #111);
  pointer-events: none;
  opacity: 0;
  transition: opacity .12s ease, transform .12s ease;
  z-index: 10;
}
.avail-dot:hover::after,
.avail-dot:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.avail-dot.ok { background: var(--ok); }
.avail-dot.warn { background: var(--warn); }
.avail-dot.no { background: var(--line); opacity: .85; }

/* ─── Billboard card ─── */
.bb-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column;
}
.bb-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-500);
}
.bb-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bb-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bb-code {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}
.bb-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 44px;
}
.bb-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.bb-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  margin-top: auto;
}
.bb-price-num { font-size: 20px; font-weight: 800; color: var(--ink); }
.bb-price-unit { font-size: 12px; color: var(--muted); margin-right: 4px; }

.bb-card-compact .bb-card-body { padding: 12px 14px 14px; }
.bb-card-compact .bb-card-title { font-size: 14px; min-height: 38px; }

/* ─── Landing ─── */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-500);
  max-width: 56ch;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat-num { font-size: 36px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.hero-stat-lbl { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* hero visual: stylized map preview with floating cards */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-lg);
}
.hero-mini-map {
  position: absolute;
  inset: 0;
}
.hero-floater {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}
.hero-floater-1 { top: 20%; right: 8%; }
.hero-floater-2 { bottom: 18%; left: 6%; }
.hero-floater-3 { top: 55%; right: 18%; }

.hf-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.hf-sub { font-size: 11px; color: var(--muted); }
.hf-row { display: flex; align-items: center; justify-content: space-between; }

/* sections */
.section { padding: 64px 0; }
.section-tight { padding: 44px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head-text { max-width: 60ch; }
.section-head-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 6px;
  text-wrap: balance;
}
.section-head-text p {
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 17px;
}

/* trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 48px;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item-num { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.trust-item-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .1em;
  margin-bottom: 16px;
  display: block;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-500); line-height: 1.5; }

/* featured grid */
.bb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.bb-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 300px at 0% 100%, rgba(31, 207, 192, .25), transparent 60%),
              radial-gradient(700px 280px at 100% 0%, rgba(30, 64, 215, .35), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.cta-banner p { color: rgba(255, 255, 255, .75); margin-top: 14px; font-size: 16px; }

/* footer */
.footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: var(--ink); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-500); font-size: 14px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

/* ─── Browse page ─── */
.browse {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  align-items: start;
}
.browse-filters {
  border-left: 1px solid var(--line);
  background: white;
  padding: 24px 24px;
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.filter-group:first-of-type { padding-top: 0; }
.filter-group:last-of-type { border-bottom: 0; }
.filter-group-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-700);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.filter-list { display: flex; flex-direction: column; gap: 6px; }
.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-700);
  cursor: default;
  transition: background .12s;
}
.filter-item:hover { background: var(--line-soft); }
.filter-item.active { background: var(--brand-50); color: var(--brand); font-weight: 600; }
.filter-item-count {
  font-size: 12px;
  color: var(--muted);
  background: var(--line-soft);
  padding: 1px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.filter-item.active .filter-item-count { background: white; color: var(--brand); }

.checkbox-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 4px;
  font-size: 14px;
}
.checkbox-row input { width: 16px; height: 16px; accent-color: var(--brand); }

.browse-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.browse-toolbar {
  position: sticky;
  top: 72px;
  z-index: 5;
  background: var(--bg);
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.browse-toolbar-left { display: flex; align-items: center; gap: 16px; }
.browse-search {
  position: relative;
}
.browse-search input {
  width: 280px;
  height: 40px;
  padding: 0 40px 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: white;
  font-size: 14px;
  outline: none;
}
.browse-search input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-50); }
.browse-search-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); }

.view-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px;
}
.view-toggle button {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 12px;
  border: 0; background: transparent;
  border-radius: 7px;
  font-size: 13px; font-weight: 600; color: var(--ink-500);
}
.view-toggle button.active { background: var(--ink); color: white; }

.browse-map-wrap {
  height: 560px;
  margin: 24px 32px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #EFF1F6;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 0 rgba(10,27,64,.04), 0 16px 40px -22px rgba(10,27,64,.18);
}
.city-map-leaflet { position: absolute; inset: 0; }
.city-map-leaflet .leaflet-container {
  width: 100%; height: 100%;
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  background: #F4F6FA;
}
.city-map-leaflet .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255,255,255,.85);
  color: var(--ink-500);
  padding: 2px 6px;
  border-radius: 4px;
}
.city-map-leaflet .leaflet-control-zoom {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(10,27,64,.18);
}
.city-map-leaflet .leaflet-control-zoom a {
  background: white;
  color: var(--ink);
  width: 32px; height: 32px;
  line-height: 32px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.city-map-leaflet .leaflet-control-zoom a:hover { background: var(--brand-50); color: var(--brand); }

/* Custom pins */
.po-pin-wrap { background: transparent !important; border: 0 !important; }
.po-pin {
  position: relative;
  width: 40px; height: 50px;
  transform-origin: 50% 100%;
  transition: transform .18s ease;
  filter: drop-shadow(0 4px 6px rgba(10,27,64,.28));
}
.po-pin-body {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pin);
  border: 2.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.po-pin-dot {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.po-pin-stem {
  width: 0; height: 0;
  margin: -3px auto 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 11px solid var(--pin);
  filter: drop-shadow(0 1px 0 #fff);
}

/* Custom tooltips */
.po-tip-wrap.leaflet-tooltip {
  background: #0A1B40;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px -6px rgba(10,27,64,.45);
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
}
.po-tip-wrap.leaflet-tooltip:before { border-top-color: #0A1B40; }
.po-tip-loc { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.po-tip-meta {
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  font-size: 11px; opacity: .8;
  font-family: 'IBM Plex Mono', monospace;
}
.po-tip-price { color: var(--accent); font-weight: 600; }

.map-legend {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 16px;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 14px -4px rgba(10,27,64,.18);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 401;
  backdrop-filter: blur(6px);
}
.map-legend-title { font-size: 10px; font-weight: 700; color: var(--ink-700); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.map-legend-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-700); font-weight: 500; }
.map-legend-dot { width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(10,27,64,.12); }
.map-city-tabs { z-index: 401; }
.map-controls {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.map-ctrl {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}

.map-city-tabs {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.map-city-tabs button {
  border: 0; background: transparent;
  height: 30px; padding: 0 14px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-500);
}
.map-city-tabs button.active { background: var(--ink); color: white; }

.browse-results-bar {
  padding: 24px 32px 12px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.browse-results-bar h2 { font-size: 22px; font-weight: 800; }
.browse-results-bar .muted { color: var(--muted); font-size: 14px; margin-right: 8px; }

.browse-grid {
  padding: 8px 0 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

/* ─── Detail page ─── */
.detail {
  padding: 32px 0 80px;
}
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 20px;
}
.crumbs a { color: var(--ink-500); }
.crumbs a:hover { color: var(--brand); }
.crumbs-sep { opacity: .5; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.detail-gallery > div:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.detail-meta {
  margin-top: 24px;
}
.detail-title { font-size: clamp(28px, 3vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; text-wrap: balance; }
.detail-sub { color: var(--ink-500); margin-top: 8px; font-size: 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.detail-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.spec {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: white;
}
.spec-lbl { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.spec-val { font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 4px; }

.detail-section { margin-top: 40px; }
.detail-section h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }

.detail-mini-map {
  height: 240px;
  border-radius: var(--radius-lg);
  background: #EFF1F6;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* monthly availability calendar */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.cal-cell {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px;
  text-align: right;
  cursor: pointer;
  transition: all .12s;
  display: flex; flex-direction: column; gap: 2px;
  position: relative;
}
.cal-cell:hover:not(.unavailable) { border-color: var(--brand); }
.cal-cell.selected { border-color: var(--brand); background: var(--brand-50); box-shadow: 0 0 0 3px var(--brand-50); }
.cal-cell.unavailable { background: var(--line-soft); color: var(--muted); cursor: not-allowed; opacity: .8; }
.cal-cell.partial { border-color: var(--warn); }
.cal-month-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.cal-cell.unavailable .cal-month-name { color: var(--muted); text-decoration: line-through; }
.cal-year { font-size: 11px; color: var(--muted); font-weight: 500; }
.cal-status {
  font-size: 11px; font-weight: 600;
  margin-top: 6px;
}
.cal-status.ok { color: var(--ok); }
.cal-status.warn { color: var(--warn); }
.cal-status.no { color: var(--muted); }

/* booking sidebar */
.book-side {
  position: sticky;
  top: 88px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.book-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}
.book-price-num { font-size: 30px; font-weight: 800; letter-spacing: -.01em; }
.book-price-unit { color: var(--muted); font-size: 14px; }
.book-price-meta { font-size: 13px; color: var(--ink-500); margin-bottom: 18px; }
.book-summary {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.book-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-700); }
.book-summary-total { font-size: 18px; font-weight: 800; color: var(--ink); border-top: 1px dashed var(--line); padding-top: 10px; margin-top: 4px; }

/* ─── Cart ─── */
.cart-page { padding: 40px 0 80px; }
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 180px 1fr auto;
  gap: 20px; padding: 16px;
  align-items: center;
}
.cart-item-img { border-radius: var(--radius); overflow: hidden; }
.cart-item-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cart-item-info p { color: var(--ink-500); font-size: 14px; }
.cart-item-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty-control {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.qty-control button {
  width: 34px; height: 34px;
  background: white; border: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-700);
}
.qty-control button:hover:not(:disabled) { background: var(--line-soft); }
.qty-control button:disabled { color: var(--line); }
.qty-control input {
  width: 38px; height: 34px;
  border: 0; text-align: center;
  font-weight: 700; font-size: 14px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: white;
  font-family: 'IBM Plex Mono', monospace;
}
.cart-item-right { text-align: left; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-price { font-size: 20px; font-weight: 800; }
.cart-item-remove { color: var(--danger); background: transparent; border: 0; display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; }

.cart-empty {
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 80px 32px;
  text-align: center;
}
.cart-empty-icon {
  width: 72px; height: 72px;
  border-radius: 24px;
  background: var(--brand-50);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.summary-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.summary-box h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-700); }
.summary-row.muted { color: var(--muted); }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px; margin-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 20px; font-weight: 800;
}
.promo-row {
  display: flex; gap: 8px; margin: 16px 0;
}
.promo-row .input { flex: 1; height: 42px; }

/* ─── Checkout ─── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.steps-bar {
  display: flex; gap: 8px; align-items: center; margin-bottom: 32px;
}
.step-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: white; border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-500);
}
.step-pill.active { background: var(--ink); color: white; border-color: var(--ink); }
.step-pill.done { background: var(--ok-50); color: var(--ok); border-color: transparent; }
.step-pill .num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--line); color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.step-pill.active .num { background: white; color: var(--ink); }
.step-pill.done .num { background: var(--ok); color: white; }
.step-bar-line { flex: 1; height: 2px; background: var(--line); border-radius: 2px; max-width: 32px; }

.form-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.form-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.form-card .form-card-sub { color: var(--ink-500); font-size: 14px; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.field-full { grid-column: 1 / -1; }

.pay-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.pay-option {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  cursor: default;
  transition: all .12s;
  background: white;
}
.pay-option:hover { border-color: var(--ink-500); }
.pay-option.selected { border-color: var(--brand); background: var(--brand-50); box-shadow: 0 0 0 3px var(--brand-50); }
.pay-option-icon { width: 40px; height: 40px; margin: 0 auto 8px; border-radius: 12px; background: var(--line-soft); display: flex; align-items: center; justify-content: center; color: var(--ink); }
.pay-option.selected .pay-option-icon { background: white; color: var(--brand); }
.pay-option-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.pay-option-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

.upload-zone {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  background: var(--tint);
  cursor: default;
}
.upload-zone:hover { border-color: var(--brand); background: var(--brand-50); }
.upload-zone-icon { width: 48px; height: 48px; margin: 0 auto 8px; border-radius: 14px; background: var(--brand); color: white; display: flex; align-items: center; justify-content: center; }

/* ─── Confirmation ─── */
.confirm {
  padding: 80px 0;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.confirm-check {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--ok);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 0 12px var(--ok-50);
  animation: pop .4s ease both;
}
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -.02em; }
.confirm p { color: var(--ink-500); font-size: 17px; margin-top: 12px; }
.confirm-summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
  text-align: right;
}
.confirm-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.confirm-row:last-child { border-bottom: 0; }
.confirm-row-key { color: var(--ink-500); font-size: 14px; }
.confirm-row-val { font-weight: 700; }

.next-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 32px;
  text-align: right;
}
.next-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.next-step-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--brand-50); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.next-step-num { font-size: 11px; font-weight: 700; color: var(--brand); letter-spacing: .1em; }
.next-step h4 { font-size: 16px; font-weight: 700; margin-top: 4px; }
.next-step p { color: var(--ink-500); font-size: 13px; margin-top: 4px; line-height: 1.5; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; }
  .browse { grid-template-columns: 1fr; }
  .browse-filters { position: relative; height: auto; top: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .detail-grid, .cart-grid, .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .next-steps { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
  .pay-options { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 36px; }
}

/* ============================================================================
   Pages-3 (services / works / clients / contact)
   ============================================================================ */
/* pages-3.css — Services / Clients / Contact pages */

/* Page hero shared */
.page-hero { padding: 96px 0 56px; background: var(--bg); }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: start;
}
.page-hero-title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 18px 0 24px;
}
.page-hero-title em {
  font-style: normal;
  color: var(--brand);
  position: relative;
}
.page-hero-title em::after {
  content: '';
  position: absolute;
  inset: auto -6px -2px -6px;
  height: 16px;
  background: var(--accent);
  z-index: -1;
  border-radius: 4px;
  opacity: .7;
}
.page-hero-title-narrow { max-width: 18ch; }
.page-hero-lead {
  color: var(--ink-500);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 56ch;
  margin-bottom: 36px;
}

/* Services quick-jump card */
.page-hero-side {
  position: sticky; top: 100px;
}
.svc-quick-grid {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 18px 40px -20px rgba(30, 64, 215, .12);
}
.svc-quick {
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: background .15s, color .15s;
  color: var(--ink);
  text-decoration: none;
}
.svc-quick:hover { background: var(--brand-50); color: var(--brand); }
.svc-quick-num {
  font-size: 15px; font-weight: 700; color: var(--brand);
}
.svc-quick-title { font-weight: 600; font-size: 15px; }

/* Services bento */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.svc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -22px rgba(30, 64, 215, .18); }
.svc-card-md { grid-column: span 3; }
.svc-card-lg { grid-column: span 6; }
.svc-card-lg .svc-card-desc { max-width: 64ch; }
.svc-card-lg { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: stretch; padding: 48px; }
.svc-card-lg .svc-card-foot { grid-column: 1 / -1; }
.svc-card-lg .svc-bullets { grid-column: 2; grid-row: 1 / span 4; align-self: center; }
.svc-card-brand {
  background: var(--brand);
  border-color: transparent;
  color: white;
}
.svc-card-brand .svc-card-title,
.svc-card-brand .svc-card-desc,
.svc-card-brand .svc-tag,
.svc-card-brand .svc-code,
.svc-card-brand .svc-bullets li,
.svc-card-brand .svc-metric,
.svc-card-brand .svc-metric-lbl { color: white; }
.svc-card-brand .svc-card-desc,
.svc-card-brand .svc-bullets li,
.svc-card-brand .svc-metric-lbl { color: rgba(255, 255, 255, .82); }
.svc-card-brand .svc-bullet-dot { background: var(--accent); }
.svc-card-brand .svc-card-icon { background: rgba(255, 255, 255, .14); color: white; }
.svc-card-brand .btn-ghost { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .2); color: white; }
.svc-card-brand .btn-ghost:hover { background: rgba(255, 255, 255, .2); border-color: white; }

.svc-card-accent {
  background: var(--accent);
  border-color: transparent;
}
.svc-card-accent .svc-card-icon { background: rgba(0, 0, 0, .08); color: var(--ink); }
.svc-card-accent .svc-bullet-dot { background: var(--brand); }

.svc-card-head {
  display: flex; justify-content: space-between; align-items: center;
}
.svc-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--brand);
  background: var(--brand-50);
  padding: 6px 12px; border-radius: 30px;
}
.svc-card-accent .svc-tag { background: rgba(0, 0, 0, .08); color: var(--ink); }
.svc-code { font-size: 16px; font-weight: 700; color: var(--muted); letter-spacing: -.01em; }
.svc-card-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.svc-card-title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.svc-card-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
  font-weight: 400;
}
.svc-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.svc-bullet-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.svc-card-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.svc-card-brand .svc-card-foot { border-top-color: rgba(255, 255, 255, .2); }
.svc-card-accent .svc-card-foot { border-top-color: rgba(0, 0, 0, .12); }
.svc-metric {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--brand);
}
.svc-metric-lbl {
  font-size: 12px; font-weight: 500; color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase; letter-spacing: .05em;
}

/* Process strip */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.process-step {
  padding: 36px 32px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.process-step:last-child { border-left: 0; }
.process-num {
  font-size: 48px; font-weight: 700; color: var(--brand);
  letter-spacing: -.04em; line-height: 1;
}
.process-body h3 {
  font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.02em;
}
.process-body p { font-size: 14.5px; color: var(--ink-500); line-height: 1.65; margin-top: 8px; }
.process-dur {
  display: inline-block; margin-top: 14px;
  font-size: 12px; font-weight: 700;
  color: var(--accent-600);
  background: var(--accent-50);
  padding: 5px 12px; border-radius: 30px;
}

/* Clients page */
.clients-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.clients-stats > div { padding-right: 24px; }
.cs-num {
  font-size: 44px; font-weight: 700; color: var(--brand);
  letter-spacing: -.03em; line-height: 1;
}
.cs-lbl {
  font-size: 12px; font-weight: 500; color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase; letter-spacing: .05em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.client-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.client-card:hover { transform: translateY(-3px); border-color: var(--brand-100); box-shadow: 0 12px 30px -16px rgba(30, 64, 215, .15); }
.client-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.client-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.client-name { font-weight: 700; font-size: 16px; color: var(--ink); }
.client-sector { font-size: 12px; color: var(--muted); font-weight: 500; }

/* Case studies */
.cases-list {
  display: flex; flex-direction: column; gap: 16px;
}
.case-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: 88px 1fr 280px;
  gap: 32px;
  align-items: center;
  transition: box-shadow .2s, border-color .2s;
}
.case-card:hover { box-shadow: 0 18px 40px -20px rgba(30, 64, 215, .15); }
.case-mark {
  width: 88px; height: 88px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
}
.case-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--muted); font-weight: 500;
}
.case-client { color: var(--brand); font-weight: 700; font-size: 13px; }
.case-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.case-title {
  font-size: 26px; font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; line-height: 1.15;
  margin: 8px 0 12px;
}
.case-summary {
  font-size: 15px; color: var(--ink-500); line-height: 1.65; margin-bottom: 16px;
  max-width: 60ch;
}
.case-quote {
  background: var(--brand-50);
  border-radius: 14px;
  padding: 16px 20px;
  position: relative;
}
.case-quote-mark {
  font-size: 48px; line-height: 0;
  color: var(--brand);
  font-weight: 700;
  position: absolute; top: 22px; right: 16px;
}
.case-quote p {
  font-size: 14.5px; color: var(--ink); line-height: 1.6;
  font-weight: 500;
  padding-right: 28px;
}
.case-quoter { font-size: 12px; color: var(--muted); display: block; margin-top: 6px; padding-right: 28px; }
.case-metrics {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.case-metric { display: flex; flex-direction: column; gap: 2px; }
.case-metric-v {
  font-size: 30px; font-weight: 700; color: var(--brand);
  letter-spacing: -.03em; line-height: 1;
}
.case-metric-l { font-size: 12px; color: var(--muted); font-weight: 500; }

/* Contact page */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-channels {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 8px;
}
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.contact-channel:hover { border-color: var(--brand); transform: translateX(-3px); }
.cc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.cc-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.cc-value { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 2px; }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: sticky; top: 100px;
  box-shadow: 0 22px 50px -22px rgba(30, 64, 215, .15);
}
.contact-form-title {
  font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.02em;
  margin: 0 0 6px;
}
.contact-success {
  background: var(--accent-50);
  color: var(--accent-600);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.form-row { display: grid; gap: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: .02em;
}
.interest-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-pill {
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.interest-pill:hover { border-color: var(--brand); }
.interest-pill.active { background: var(--brand); color: white; border-color: var(--brand); }
.form-actions {
  display: flex; align-items: center; gap: 16px; padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.form-note { font-size: 12px; color: var(--muted); }

/* Offices */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.office-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.office-primary {
  background: var(--brand);
  border-color: transparent;
  color: white;
}
.office-primary h3, .office-primary .office-label,
.office-primary .office-row-text { color: white; }
.office-primary .office-label { color: rgba(255, 255, 255, .8); }
.office-primary .office-row-text { color: rgba(255, 255, 255, .9); }
.office-primary .office-row-icon { background: rgba(255, 255, 255, .15); color: white; }
.office-head { display: flex; flex-direction: column; gap: 4px; }
.office-head h3 {
  font-size: 32px; font-weight: 700; color: var(--ink); letter-spacing: -.025em;
}
.office-label { font-size: 13px; color: var(--brand); font-weight: 600; }
.office-body { display: flex; flex-direction: column; gap: 14px; }
.office-row { display: flex; align-items: center; gap: 14px; }
.office-row-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.office-row-text { font-size: 14px; color: var(--ink-500); line-height: 1.5; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  letter-spacing: -.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  font-size: 22px; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--brand); color: white; }
.faq-item p {
  padding: 0 28px 24px;
  font-size: 15px; line-height: 1.7; color: var(--ink-500);
  max-width: 70ch;
}

/* ─── Landing services preview (replaces "Featured" hint about packages) ─── */
.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-prev {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.svc-prev:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 18px 40px -22px rgba(30, 64, 215, .25);
}
.svc-prev-num { font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: .04em; }
.svc-prev-title { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.svc-prev-desc { font-size: 14px; color: var(--ink-500); line-height: 1.6; flex: 1; }
.svc-prev-foot { display: flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 600; font-size: 13px; }

@media (max-width: 980px) {
  .page-hero-grid, .contact-hero { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-side, .contact-form { position: static; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card-md, .svc-card-lg { grid-column: span 1; }
  .svc-card-lg { grid-template-columns: 1fr; padding: 32px; }
  .svc-card-lg .svc-bullets { grid-column: 1; grid-row: auto; }
  .process-strip, .clients-grid, .offices-grid, .clients-stats { grid-template-columns: 1fr 1fr; }
  .process-step { border-left: 0; border-bottom: 1px solid var(--line); }
  .case-card { grid-template-columns: 64px 1fr; gap: 16px; padding: 24px; }
  .case-mark { width: 64px; height: 64px; border-radius: 16px; }
  .case-metrics { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); border-right: 0; border-top: 1px solid var(--line); padding-right: 0; padding-top: 16px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .svc-preview-grid { grid-template-columns: 1fr; }
}


/* ─────────────── Works / Portfolio page ─────────────── */
.works-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.works-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-500);
  cursor: pointer;
  transition: all .18s ease;
  position: relative;
}
.works-filter-btn:hover { color: var(--ink); }
.works-filter-btn.active {
  color: var(--ink);
  border-bottom-color: var(--brand);
  font-weight: 600;
}
.works-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 600;
}
.works-filter-btn.active .works-filter-count {
  background: var(--brand);
  color: white;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.work-card {
  grid-column: span 2;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(15, 23, 42, .25);
  border-color: var(--ink-200);
}
.work-card-lg {
  grid-column: span 3;
}

.work-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.work-card-lg .work-cover { aspect-ratio: 16/9; }
.work-cover-deco {
  position: absolute;
  inset: 0;
  opacity: .9;
}
.work-cover-mark {
  position: relative;
  z-index: 1;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,.95);
  mix-blend-mode: overlay;
}
.work-cover-meta {
  position: absolute;
  z-index: 2;
  top: 16px;
  inset-inline-end: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.work-cover-year {
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: .04em;
}
.work-cover-sector {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: white;
  font-weight: 500;
}

.work-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.work-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-service-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--ink-500);
  border: 1px solid var(--line);
}
.work-title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.work-card-lg .work-title { font-size: 28px; }
.work-client-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}
.work-client {
  color: var(--brand);
  font-weight: 600;
}
.work-loc {
  color: var(--ink-500);
}
.work-summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 4px 0 0;
}
.work-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin-top: 4px;
}
.work-metric {
  text-align: center;
  padding: 0 8px;
  border-inline-end: 1px solid var(--line);
}
.work-metric:last-child { border-inline-end: 0; }
.work-metric-v {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.work-metric-l {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
  font-weight: 500;
}

.work-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 8px 0 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  transition: gap .2s ease, color .2s ease;
  align-self: flex-start;
}
.work-cta:hover { gap: 10px; color: var(--brand-700); }
.work-cta svg { width: 14px; height: 14px; }

@media (max-width: 1100px) {
  .works-grid { grid-template-columns: repeat(4, 1fr); }
  .work-card { grid-column: span 2; }
  .work-card-lg { grid-column: span 4; }
}
@media (max-width: 700px) {
  .works-grid { grid-template-columns: 1fr; gap: 18px; }
  .work-card, .work-card-lg { grid-column: span 1; }
}


/* ─────────────── Editorial Hero ─────────────── */
.hero-ed {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-ed-meta {
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-500);
  text-transform: uppercase;
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.hero-ed-meta-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 0;
  gap: 24px;
}
.hed-meta-l { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.hed-meta-c { font-weight: 700; color: var(--ink); letter-spacing: .12em; }
.hed-meta-r { justify-self: end; }
.hed-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300, var(--ink-500)); display: inline-block; opacity: .5; }

.hero-ed-stage {
  position: relative;
  padding: 70px 0 56px;
}

/* Massive watermark numeral */
.hed-watermark {
  position: absolute;
  inset-inline-start: -2vw;
  top: 35%;
  font-size: clamp(280px, 38vw, 560px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(15, 23, 42, .055);
  pointer-events: none;
  z-index: 0;
  font-family: 'IBM Plex Mono', 'IBM Plex Sans Arabic', monospace;
}

/* Billboard mock card — anchored top-left in RTL = top-right visually */
.hed-mock {
  position: absolute;
  inset-inline-start: 0;
  top: 80px;
  width: clamp(320px, 30vw, 460px);
  z-index: 2;
  transform: rotate(-1.5deg);
  filter: drop-shadow(0 32px 48px rgba(15, 23, 42, .18));
}
.hed-mock-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .1);
}
.hed-mock-frame svg { display: block; aspect-ratio: 8/5; }
.hed-mock-tag {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}
.hed-mock-id {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--brand);
}
.hed-mock-loc {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.hed-mock-pill {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: white;
  font-size: 11px;
  font-weight: 600;
  color: var(--ok, #0E7C66);
  box-shadow: 0 4px 16px rgba(15, 23, 42, .15);
}
.hed-mock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok, #0E7C66);
  box-shadow: 0 0 0 3px rgba(14, 124, 102, .18);
  animation: hedPulse 1.6s ease-in-out infinite;
}
@keyframes hedPulse { 50% { box-shadow: 0 0 0 6px rgba(14, 124, 102, 0); } }

/* Title */
.hed-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 24px 0 8px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 12vw, 200px);
  line-height: .92;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hed-line {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.hed-line-1 {
  justify-content: flex-end;
  padding-inline-end: 4vw;
}
.hed-line-2 {
  justify-content: flex-start;
  padding-inline-start: 8vw;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-500);
}
.hed-line-3 {
  justify-content: flex-end;
  padding-inline-end: 0;
}
.hed-line-3 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, var(--accent) 60%, var(--accent) 90%, transparent 90%);
  padding: 0 .04em;
}
.hed-rule {
  display: inline-block;
  width: clamp(60px, 12vw, 200px);
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
  align-self: center;
  margin-bottom: .12em;
}

/* Bottom row */
.hed-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 56px;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.hed-lead-block { display: flex; flex-direction: column; gap: 24px; }
.hed-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0;
  max-width: 36ch;
}
.hed-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-link-ed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 6px 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: gap .2s ease, opacity .2s ease;
}
.btn-link-ed:hover { gap: 12px; opacity: .7; }
.btn-link-ed svg { width: 12px; height: 12px; }

.hed-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-self: start;
}
.hed-stat {
  padding: 0 24px;
  border-inline-start: 1px solid var(--line);
}
.hed-stat:first-child { border-inline-start: 0; padding-inline-start: 0; }
.hed-stat-num {
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}
.hed-stat-lbl {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-500);
  font-weight: 500;
}

/* Marquee ticker */
.hed-ticker {
  background: var(--ink);
  color: white;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.hed-ticker-track {
  display: flex;
  width: max-content;
  animation: hedScroll 38s linear infinite;
}
.hed-ticker-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 14px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.hed-ticker-row > span:first-child::before,
.hed-ticker-row > span:nth-child(odd):not(.hed-ticker-sep)::after {
  content: '';
}
.hed-ticker-sep {
  color: var(--accent);
  font-size: 8px;
  opacity: .8;
}
@keyframes hedScroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@media (max-width: 900px) {
  .hed-mock { position: static; width: 100%; transform: none; margin-bottom: 24px; }
  .hed-watermark { display: none; }
  .hed-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hed-stats { grid-template-columns: repeat(3, 1fr); }
  .hed-stat { padding: 0 12px; }
  .hed-stat-num { font-size: 32px; }
  .hed-line-1, .hed-line-2, .hed-line-3 { padding: 0; justify-content: flex-start; }
}


/* ─────────────── Detail modal overlay ─────────────── */
.detail-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px;
  overflow-y: auto;
  animation: dmFade .25s ease-out;
}
.detail-modal {
  position: relative;
  width: 100%;
  max-width: 1200px;
  background: var(--bg);
  border-radius: 18px;
  box-shadow: 0 32px 96px -24px rgba(15, 23, 42, .5);
  overflow: hidden;
  animation: dmRise .3s cubic-bezier(.16,1,.3,1);
}
.detail-modal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
  transition: transform .18s ease, background .18s ease;
}
.detail-modal-close:hover { background: var(--ink); color: white; transform: scale(1.05); }

/* Detail page when rendered inside modal */
.detail-in-modal {
  padding: 28px 0 8px;
}
.detail-in-modal .container { max-width: 100%; padding: 0 36px; }

@keyframes dmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dmRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 700px) {
  .detail-modal-overlay { padding: 12px; }
  .detail-modal { border-radius: 12px; }
  .detail-in-modal .container { padding: 0 16px; }
  .detail-modal-close { top: 10px; inset-inline-end: 10px; }
}

/* ============================================================================
   WordPress / Theme-specific additions
   ============================================================================ */
/* ============================================================================
   Plan One — Pages Stylesheet
   ============================================================================ */

/* Featured */
.featured-section { background: var(--bg); }

/* ============================================================================
   Services Grid (Home)
   ============================================================================ */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	background: #fff;
	padding: 32px 28px;
	border-radius: 16px;
	border: 1px solid rgba(0,0,0,.05);
	transition: all .25s;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,.08);
	border-color: var(--brand-100);
}

.service-num {
	font-size: .75rem;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: .05em;
}

.service-icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	align-items: center;
	justify-content: center;
}

.service-title { font-size: 1.25rem; margin: 0; }

.service-short {
	color: var(--muted);
	font-size: .9375rem;
	line-height: 1.7;
	margin: 0;
}

.service-cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--brand);
	font-weight: 700;
	font-size: .875rem;
	margin-top: 8px;
}

.services-page-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.service-page-card {
	background: #fff;
	padding: 36px 32px;
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,.05);
	transition: all .25s;
	text-align: center;
}

.service-page-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,.08);
	border-color: var(--service-color, var(--brand));
}

.service-icon-large {
	display: inline-flex;
	width: 80px;
	height: 80px;
	border-radius: 20px;
	background: rgba(30, 64, 215, .1);
	color: var(--service-color, var(--brand));
	align-items: center;
	justify-content: center;
	margin: 16px 0 20px;
}

.service-title-large { font-size: 1.5rem; margin-bottom: 12px; }
.service-short-large { color: var(--muted); margin-bottom: 24px; min-height: 80px; }

.service-icon-huge {
	display: inline-flex;
	width: 96px;
	height: 96px;
	border-radius: 24px;
	background: rgba(30, 64, 215, .1);
	color: var(--service-color, var(--brand));
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.single-service-head { text-align: center; margin-bottom: 48px; }

.single-service-content {
	max-width: 800px;
	margin: 0 auto 64px;
	font-size: 1.0625rem;
	line-height: 1.8;
}

.services-cta { margin-top: 80px; }

/* ============================================================================
   Works
   ============================================================================ */
.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.work-card {
	display: block;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.05);
	transition: all .25s;
	color: inherit;
	text-decoration: none;
}

.work-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0,0,0,.08);
}

.work-card-featured { grid-column: span 2; }

.work-cover {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, var(--brand-50), var(--accent-50));
}

.work-cover img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.work-card:hover .work-cover img { transform: scale(1.04); }

.work-cover-fallback {
	width: 100%; height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
}

.work-letter {
	font-size: 5rem;
	font-weight: 900;
	color: rgba(255,255,255,.4);
}

.work-overlay {
	position: absolute;
	top: 16px; right: 16px;
	display: flex;
	gap: 8px;
}

.work-year {
	background: rgba(0,0,0,.7);
	color: #fff;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: .8125rem;
	font-weight: 700;
}

.work-sector {
	background: rgba(255,255,255,.95);
	color: var(--text);
	padding: 4px 12px;
	border-radius: 100px;
	font-size: .8125rem;
	font-weight: 600;
}

.work-body { padding: 24px; }

.work-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}

.work-title { font-size: 1.25rem; margin: 0 0 8px; }
.work-card-featured .work-title { font-size: 1.5rem; }

.work-summary {
	color: var(--muted);
	margin-bottom: 16px;
	line-height: 1.7;
}

.work-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 16px;
	background: var(--bg-soft);
	border-radius: 12px;
	margin-bottom: 12px;
}

.work-kpi { text-align: center; }

.work-kpi .num {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--brand);
	line-height: 1.1;
}

.work-kpi .kpi-lbl {
	display: block;
	font-size: .75rem;
	color: var(--muted);
	margin-top: 4px;
}

.work-location {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--muted);
	font-size: .875rem;
}

/* Works page */
.works-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 32px;
}

.works-filter-btn {
	background: #fff;
	border: 1.5px solid rgba(0,0,0,.06);
	color: var(--text);
	padding: 8px 18px;
	border-radius: 100px;
	font-weight: 600;
	font-size: .875rem;
	transition: all .2s;
}

.works-filter-btn:hover,
.works-filter-btn.active {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}

.works-bento {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.work-bento-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.05);
	transition: all .25s;
}

.work-bento-card.is-featured { grid-column: span 2; }

.work-bento-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0,0,0,.1);
}

.work-bento-link { display: block; color: inherit; text-decoration: none; }

.work-bento-cover {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.work-bento-card.is-featured .work-bento-cover {
	aspect-ratio: 21 / 9;
}

.work-bento-overlay {
	position: absolute;
	top: 16px; right: 16px;
	display: flex; gap: 8px;
}

.work-bento-year, .work-bento-sector {
	padding: 4px 12px;
	border-radius: 100px;
	font-size: .8125rem;
	font-weight: 700;
}

.work-bento-year { background: rgba(0,0,0,.7); color: #fff; }
.work-bento-sector { background: rgba(255,255,255,.95); color: var(--text); font-weight: 600; }

.work-bento-body { padding: 24px 28px; }
.work-bento-title { font-size: 1.375rem; margin: 0 0 8px; }
.work-bento-card.is-featured .work-bento-title { font-size: 1.625rem; }
.work-bento-summary { color: var(--muted); margin-bottom: 16px; }

.work-bento-loc {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--muted);
	font-size: .875rem;
}

/* Single work */
.single-work-header { max-width: 800px; margin: 0 auto 32px; text-align: center; }
.single-work-title { font-size: 2.5rem; margin: 8px 0 16px; }

.single-work-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	color: var(--muted);
	font-size: .9375rem;
}

.single-work-cover {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 32px;
}

.single-work-summary {
	max-width: 800px;
	margin: 0 auto 32px;
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--muted);
	text-align: center;
}

.single-work-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 32px;
	background: var(--bg-soft);
	border-radius: 16px;
	margin-bottom: 48px;
}

.work-kpi-large .num { font-size: 2.5rem; }
.work-kpi-large span:last-child { display: block; color: var(--muted); font-size: .9375rem; }

.single-work-content {
	max-width: 800px;
	margin: 0 auto 48px;
	font-size: 1.0625rem;
	line-height: 1.8;
}

.work-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.work-gallery-item {
	border-radius: 12px;
	overflow: hidden;
}

/* ============================================================================
   Clients
   ============================================================================ */
.clients-strip {
	padding: 64px 0;
	background: var(--bg-soft);
}

.clients-title {
	text-align: center;
	font-size: 1rem;
	color: var(--muted);
	margin-bottom: 32px;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 700;
}

.clients-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	align-items: center;
}

.client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	opacity: .7;
	transition: opacity .25s;
}

.client-logo:hover { opacity: 1; }

.client-letter-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 60px;
	background: #fff;
	border-radius: 8px;
	padding: 16px 8px;
	border: 1px solid rgba(0,0,0,.06);
	font-weight: 700;
	font-size: .875rem;
	color: var(--text);
	text-align: center;
}

/* Clients page */
.clients-grid-large {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 80px;
}

.client-card {
	background: #fff;
	padding: 24px 16px;
	border-radius: 16px;
	border: 1px solid rgba(0,0,0,.05);
	text-align: center;
	transition: all .2s;
}

.client-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(0,0,0,.06);
}

.client-card a { color: inherit; text-decoration: none; }

.client-card-logo {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.client-card-name { font-size: 1rem; margin: 0 0 4px; }
.client-card-sector { font-size: .8125rem; color: var(--muted); }

/* Testimonials */
.testimonials-section { padding: 64px 0; }

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.testimonial-card {
	background: #fff;
	padding: 32px;
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,.05);
}

.testimonial-stars {
	display: flex;
	gap: 2px;
	color: #FBBF24;
	margin-bottom: 16px;
}

.testimonial-content {
	margin: 0 0 24px;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--text);
	border: 0;
	padding: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	background: var(--brand);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.125rem;
}

.testimonial-author strong { display: block; font-size: .9375rem; }
.testimonial-author small { display: block; color: var(--muted); font-size: .8125rem; margin-top: 2px; }

/* ============================================================================
   Browse Page
   ============================================================================ */
.browse-section { padding: 32px 0 80px; }

.browse-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.browse-title { font-size: 2rem; margin: 0 0 4px; }
.browse-sub { color: var(--muted); margin: 0; }

.browse-toolbar {
	display: flex;
	gap: 12px;
	align-items: center;
}

.view-toggle {
	display: flex;
	background: #fff;
	border: 1.5px solid rgba(0,0,0,.06);
	border-radius: 10px;
	overflow: hidden;
}

.view-btn {
	background: transparent;
	border: 0;
	padding: 8px 14px;
	font-weight: 600;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .875rem;
}

.view-btn.active { background: var(--brand); color: #fff; }

.sort-select {
	background: #fff;
	border: 1.5px solid rgba(0,0,0,.06);
	border-radius: 10px;
	padding: 8px 14px;
	font-weight: 600;
	font-size: .875rem;
	cursor: pointer;
}

.city-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.city-tab {
	background: #fff;
	border: 1.5px solid rgba(0,0,0,.06);
	color: var(--text);
	padding: 8px 18px;
	border-radius: 100px;
	font-weight: 600;
	font-size: .875rem;
	transition: all .2s;
}

.city-tab.active, .city-tab:hover {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

.browse-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: start;
}

.browse-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: sticky;
	top: 80px;
}

.filter-card {
	background: #fff;
	padding: 18px 20px;
	border-radius: 14px;
	border: 1px solid rgba(0,0,0,.05);
}

.filter-title {
	font-size: .9375rem;
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 12px;
	font-weight: 700;
}

.search-input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid #E2E8F0;
	border-radius: 10px;
	font-family: inherit;
	font-size: .9375rem;
}

.search-input:focus { outline: 0; border-color: var(--brand); }

.filter-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	font-size: .9375rem;
	cursor: pointer;
}

.filter-checkbox span:first-of-type { flex: 1; }

.filter-count {
	font-size: .75rem;
	background: var(--bg-soft);
	color: var(--muted);
	padding: 2px 8px;
	border-radius: 100px;
}

.price-range {
	display: flex;
	align-items: center;
	gap: 8px;
}

.price-input {
	flex: 1;
	width: 0;
	padding: 8px 10px;
	border: 1.5px solid #E2E8F0;
	border-radius: 8px;
	font-family: var(--font-mono);
	font-size: .875rem;
}

.reset-filters { margin-top: 8px; }

.bb-map {
	height: 600px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.06);
}

/* Custom Leaflet markers */
.bb-marker {
	background: transparent !important;
	border: 0 !important;
}

.bb-marker-pin {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: 11px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

.bb-popup-content {
	padding: 4px;
	min-width: 200px;
}

.bb-popup-title { font-weight: 700; margin-bottom: 4px; }
.bb-popup-meta { font-size: .8125rem; color: var(--muted); margin-bottom: 8px; }
.bb-popup-price { font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.bb-popup-btn {
	display: inline-block;
	background: var(--brand);
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: .8125rem;
	font-weight: 700;
	text-decoration: none;
}

/* ============================================================================
   Single Billboard
   ============================================================================ */
.single-bb-section { padding: 32px 0 80px; }

.breadcrumb {
	display: flex;
	gap: 8px;
	font-size: .875rem;
	color: var(--muted);
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }

.single-bb-layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}

.single-bb-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.single-bb-rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	color: #FBBF24;
}

.single-bb-rating .muted { color: var(--muted); }

.single-bb-title { font-size: 2rem; margin: 0 0 8px; }

.single-bb-loc {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	margin-bottom: 24px;
}

.single-bb-visual {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 32px;
	background: var(--bg-soft);
}

.single-bb-visual-svg { aspect-ratio: 16 / 9; }
.gallery-main { aspect-ratio: 16 / 9; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-top: 8px;
}

.gallery-thumb {
	border: 0;
	background: transparent;
	padding: 0;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	opacity: .6;
	transition: opacity .2s;
	cursor: pointer;
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { opacity: 1; outline: 2px solid var(--brand); }

.single-bb-specs h2,
.single-bb-desc h2,
.single-bb-availability h2 {
	font-size: 1.25rem;
	margin-bottom: 16px;
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 32px;
}

.spec-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: var(--bg-soft);
	border-radius: 10px;
}

.spec-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: .875rem;
}

.spec-value { font-weight: 700; color: var(--text); }

.single-bb-desc { margin-bottom: 32px; }
.single-bb-availability { margin-bottom: 32px; }

.single-bb-card {
	position: sticky;
	top: 90px;
	background: #fff;
	padding: 28px;
	border-radius: 16px;
	border: 1px solid rgba(0,0,0,.06);
	box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.single-bb-price-block {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 20px;
}

.single-bb-price {
	font-size: 2.25rem;
	font-weight: 900;
	color: var(--brand);
	line-height: 1;
}

.single-bb-price-unit { color: var(--muted); font-size: .9375rem; }

.single-bb-card .btn { margin-bottom: 8px; }

.single-bb-perks {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,.06);
}

.perk {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .875rem;
	color: var(--muted);
}

.perk svg { color: var(--brand); flex-shrink: 0; }

/* ============================================================================
   Modal
   ============================================================================ */
.detail-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 41, .75);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	backdrop-filter: blur(4px);
}

.detail-modal {
	background: #fff;
	border-radius: 20px;
	width: 100%;
	max-width: 720px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: modalIn .25s ease-out;
}

@keyframes modalIn {
	from { opacity: 0; transform: scale(.95); }
	to { opacity: 1; transform: scale(1); }
}

.detail-modal-close {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(0,0,0,.06);
	border: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all .2s;
}

.detail-modal-close:hover { background: rgba(0,0,0,.1); }

.bb-modal { padding: 24px 28px 28px; }

.bb-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.bb-modal-rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #FBBF24;
	font-weight: 700;
}

.bb-modal-reviews { color: var(--muted); font-size: .875rem; }
.bb-modal-title { font-size: 1.5rem; margin: 0 0 6px; }

.bb-modal-loc {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--muted);
	margin-bottom: 16px;
	font-size: .9375rem;
}

.bb-modal-visual {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
	aspect-ratio: 16 / 9;
}

.bb-modal-visual .bb-visual { width: 100%; height: 100%; }

.bb-modal-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	height: 100%;
}

.bb-gallery-item.is-main { grid-column: span 2; grid-row: span 2; }
.bb-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.bb-modal-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 20px;
	padding: 16px;
	background: var(--bg-soft);
	border-radius: 12px;
}

.spec-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.spec-item .spec-label { font-size: .75rem; }
.spec-item .spec-value { font-size: .9375rem; font-weight: 700; }

.bb-modal-desc {
	color: var(--muted);
	margin-bottom: 24px;
	line-height: 1.7;
}

.bb-modal-section { margin-bottom: 24px; }

.bb-modal-section-title {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.0625rem;
	margin-bottom: 12px;
}

/* Availability calendar */
.avail-calendar {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}

.avail-calendar-large {
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.avail-month {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 8px;
	border-radius: 10px;
	cursor: pointer;
	transition: all .2s;
	border: 2px solid transparent;
	font-size: .8125rem;
	text-align: center;
	gap: 2px;
	position: relative;
}

.avail-month input { display: none; }

.avail-month.avail-ok {
	background: rgba(16, 185, 129, .1);
	color: #065f46;
}

.avail-month.avail-warn {
	background: rgba(245, 158, 11, .1);
	color: #78350f;
}

.avail-month.avail-no,
.avail-month.is-disabled {
	background: rgba(239, 68, 68, .08);
	color: #7f1d1d;
	cursor: not-allowed;
	opacity: .55;
}

.avail-month-name { font-weight: 700; font-size: .9375rem; }
.avail-month-year { color: var(--muted); }
.avail-month-status { font-size: .6875rem; opacity: .8; }

.avail-month:not(.is-disabled):hover {
	border-color: currentColor;
	transform: translateY(-1px);
}

.avail-month.is-selected {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand-700);
}

.avail-month.is-selected .avail-month-year,
.avail-month.is-selected .avail-month-status {
	color: rgba(255,255,255,.85);
}

.bb-modal-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 20px;
	background: var(--bg-soft);
	border-radius: 12px;
	margin-top: 16px;
}

.bb-modal-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.bb-modal-price .num {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--brand);
}

.bb-modal-price-unit { color: var(--muted); font-size: .875rem; }

/* ============================================================================
   Contact Page
   ============================================================================ */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: start;
}

.contact-channels {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.contact-channel {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: #fff;
	border-radius: 14px;
	border: 1px solid rgba(0,0,0,.05);
	color: inherit;
	text-decoration: none;
	transition: all .2s;
}

.contact-channel:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.channel-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

.contact-channel strong { display: block; font-size: 1rem; }
.contact-channel small { display: block; color: var(--muted); font-size: .875rem; margin-top: 2px; }

.offices-grid h3 { font-size: 1.125rem; margin-bottom: 16px; }

.office-card {
	background: var(--bg-soft);
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 12px;
}

.office-card h4 {
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 8px;
}

.office-card p {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: .875rem;
	margin: 4px 0;
}

.office-card a { color: var(--muted); }
.office-card a:hover { color: var(--brand); }

.contact-form-wrap {
	background: #fff;
	padding: 32px;
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,.05);
}

.contact-form-wrap h2 { margin-bottom: 24px; }
.contact-form-wrap textarea { resize: vertical; }

#contact-form-status {
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: .9375rem;
	display: none;
}

#contact-form-status.success {
	display: block;
	background: rgba(16, 185, 129, .12);
	color: #065F46;
}

#contact-form-status.error {
	display: block;
	background: rgba(239, 68, 68, .12);
	color: #991B1B;
}

/* ============================================================================
   Confirm Page
   ============================================================================ */
.confirm-section {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.confirm-card {
	background: #fff;
	padding: 56px 48px;
	border-radius: 24px;
	border: 1px solid rgba(0,0,0,.05);
	text-align: center;
	max-width: 600px;
	width: 100%;
}

.confirm-icon-wrap { display: flex; justify-content: center; margin-bottom: 24px; }

.confirm-icon {
	width: 96px;
	height: 96px;
	background: rgba(16, 185, 129, .15);
	color: #10b981;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.confirm-title { font-size: 2rem; margin: 0 0 8px; }
.confirm-sub { color: var(--muted); margin: 0 0 32px; }

.confirm-details {
	background: var(--bg-soft);
	padding: 20px;
	border-radius: 14px;
	margin-bottom: 24px;
}

.confirm-detail-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-size: .9375rem;
}

.confirm-detail-row + .confirm-detail-row {
	border-top: 1px solid rgba(0,0,0,.06);
}

.confirm-payment-info {
	text-align: right;
	background: var(--brand-50);
	padding: 20px;
	border-radius: 14px;
	margin-bottom: 24px;
}

.confirm-payment-info h3 { font-size: 1rem; margin: 0 0 8px; }

.confirm-payment-info pre {
	background: #fff;
	padding: 12px;
	border-radius: 8px;
	font-family: var(--font-mono);
	font-size: .875rem;
	white-space: pre-wrap;
	word-break: break-word;
	margin: 0 0 8px;
}

.confirm-note { font-size: .875rem; color: var(--muted); }

.confirm-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Compact card */
.bb-card-compact .bb-visual { aspect-ratio: 16 / 9; }
.bb-card-compact .bb-card-body { padding: 14px; gap: 8px; }

/* ─── Map element targeting (browse page) ─── */
#plan-one-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #F4F6FA;
}
#plan-one-map .leaflet-container {
  width: 100%; height: 100%;
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  background: #F4F6FA;
}

/* Fix map layout — original used 24px 32px; on WP we keep margin but make full-width */
.browse-map-wrap { margin: 24px 0 0; }

/* List view for grid */
.browse-grid.list-view {
  grid-template-columns: 1fr !important;
  max-width: 800px;
}

/* ════════════════════════════════════════════════════════════════════════
   Works page — Hero stats grid
   ════════════════════════════════════════════════════════════════════════ */
.works-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.works-stat-card {
	background: #fff;
	border: 1px solid var(--line, #E5E9F2);
	border-radius: 16px;
	padding: 22px 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all .2s cubic-bezier(.4, 0, .2, 1);
	position: relative;
	overflow: hidden;
}

.works-stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background: radial-gradient(circle at top right, rgba(30, 64, 215, .06), transparent 70%);
	pointer-events: none;
}

.works-stat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px -10px rgba(30, 64, 215, .15);
	border-color: rgba(30, 64, 215, .2);
}

.works-stat-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 6px 14px -4px rgba(15, 23, 42, .2);
}

.works-stat-num {
	font-size: 30px;
	font-weight: 800;
	color: var(--ink, #0F172A);
	line-height: 1;
	letter-spacing: -1px;
}

.works-stat-lbl {
	font-size: 13px;
	color: var(--muted, #64748B);
	font-weight: 600;
}

@media (max-width: 900px) {
	.works-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.works-stat-card {
		padding: 18px 14px;
	}
	.works-stat-num { font-size: 24px; }
}
@media (max-width: 480px) {
	.works-stats-grid {
		grid-template-columns: 1fr 1fr;
	}
}
