/* Ajeer Partners — sections */

/* =====================================================
   INTEGRATION SHOWCASE
   ===================================================== */
.int-section {
  background: var(--paper-warm);
}

/* Slider container */
.int-slider {
  position: relative;
  margin-bottom: 24px;
}
.int-slider-stage {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.int-slide {
  display: none;
  flex-direction: column;
}
.int-slide.is-active {
  display: flex;
}

.int-slide-body {
  background: white;
  position: relative;
}

/* Real screenshot mode — box sized to match store screenshots (Saudi Ceramics / Zinco).
   Retail photos scale down with object-fit: contain to fit inside the same box. */
.int-slide-real {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
.int-slide-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .int-slide-real { max-height: 380px; }
}

/* Ajeer box highlight overlay */
.int-slide-highlight {
  position: absolute;
  border: 2.5px solid var(--blue);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 4px rgba(0, 92, 252, 0.15), 0 8px 24px rgba(0, 92, 252, 0.18);
  pointer-events: none;
  animation: highlight-pulse 2.4s ease-in-out infinite;
}
@keyframes highlight-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 92, 252, 0.15), 0 8px 24px rgba(0, 92, 252, 0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(0, 92, 252, 0.12), 0 8px 28px rgba(0, 92, 252, 0.32); }
}
.int-slide-highlight-label {
  position: absolute;
  bottom: calc(100% + 10px);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: white;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 92, 252, 0.35);
}
body[data-lang="ar"] .int-slide-highlight-label { transform: translateX(50%); }
.int-slide-highlight-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--blue);
}
.int-slide-highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
  animation: dot-blink 1.4s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Slider nav (dots + arrows) */
.int-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.int-slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
  flex-shrink: 0;
}
.int-slider-arrow:hover { background: var(--ink); color: white; border-color: var(--ink); transform: scale(1.05); }

.int-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px;
}
.int-slider-dot {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
  background: transparent;
}
.int-slider-dot:hover { color: var(--ink); }
.int-slider-dot.is-active {
  background: var(--ink);
  color: white;
}

/* Mock fallback (when no real screenshot yet) */
.int-mock-fallback {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 36px;
  gap: 20px;
  background: linear-gradient(180deg, white 0%, var(--paper-2) 100%);
}
.int-mock-fallback-product {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  flex: 1;
}
@media (max-width: 600px) { .int-mock-fallback-product { grid-template-columns: 1fr; gap: 14px; } }
.int-mock-fallback-img {
  position: relative;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.int-mock-fallback-info { display: flex; flex-direction: column; gap: 8px; }

/* Reused mock atoms (keep working for fallback) */
.int-mock-ribbon {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: #EE3B3B;
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.int-mock-partner { display: flex; align-items: center; margin-bottom: 2px; }
.int-mock-partner .partner-img { height: 32px; filter: none; opacity: 1; }
.int-mock-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.int-mock-price-row { display: flex; align-items: baseline; gap: 10px; }
.int-mock-price {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.int-mock-price small { font-size: 12px; color: var(--muted); font-weight: 500; }
.int-mock-price-was { font-size: 13px; color: var(--muted-2); text-decoration: line-through; }
.int-mock-meta { font-size: 13px; color: var(--muted); }

/* Ajeer install card */
.int-mock-ajeer {
  border: 2px solid var(--blue);
  background: linear-gradient(135deg, var(--blue-50) 0%, white 100%);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
}
.int-mock-ajeer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(0, 92, 252, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.int-mock-ajeer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.int-mock-ajeer-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.int-mock-ajeer-logo .logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.int-mock-ajeer-logo .logo-mark::after {
  border-inline-start: 5px solid transparent;
  border-inline-end: 5px solid transparent;
  border-bottom: 8px solid white;
}
.int-mock-ajeer-pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius-pill);
}
.int-mock-ajeer-body { display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 1; }
.int-mock-ajeer-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.int-mock-ajeer-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.int-mock-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.int-mock-city {
  font-size: 11px;
  padding: 3px 9px;
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-pill);
  color: var(--ink-2);
  font-weight: 500;
}
.int-mock-city-more {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  font-weight: 600;
}

/* Browser chrome */
.browser-chrome {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  max-width: 80%;
}
.browser-url svg { color: var(--green); flex-shrink: 0; }

/* Mock body — legacy (kept for reference, fallback uses dedicated atoms above) */
.int-mock-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
}
.int-mock-product {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 480px) { .int-mock-product { grid-template-columns: 1fr; } }
.int-mock-img {
  position: relative;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.int-mock-info { display: flex; flex-direction: column; gap: 6px; }

/* (Legacy duplicates removed; styling lives in slider/fallback rules above) */

.int-footnote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.int-footnote svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* =====================================================
   WHY AJEER — 6 cards
   ===================================================== */
.why-section { background: white; }

.cj-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 8px 0 18px;
}
.cj-flow-sources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
@media (max-width: 600px) { .cj-flow-sources { grid-template-columns: 1fr; gap: 12px; } }

.cj-flow-node {
  background: #fff;
  border: 1px solid var(--line-soft, #E6E0D0);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.cj-flow-node::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  height: 2px;
  background: var(--phase-color, var(--blue, #035DFC));
}
.cj-flow-node[data-phase="create"] { --phase-color: #6B7280; }
.cj-flow-node[data-phase="approve"] { --phase-color: #035DFC; }
.cj-flow-node[data-phase="exec"]    { --phase-color: #1F8A5B; }
.cj-flow-code {
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted, #5C6480);
}
.cj-flow-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #0A1230);
}

.cj-flow-lines {
  width: 100%;
  height: 60px;
  color: var(--blue, #035DFC);
  display: block;
}
@media (max-width: 600px) { .cj-flow-lines { height: 36px; } }

.cj-flow-target {
  background: linear-gradient(135deg, var(--blue, #035DFC), #0046C7);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.cj-flow-target-label {
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.7);
}
.cj-flow-target-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.005em;
}
.why-card.why-card-compact {
  padding: 0;
  min-height: 0;
}
.why-card-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 22px 18px;
  width: 100%;
  box-sizing: border-box;
}
.why-card.why-card-compact .why-card-title {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
.why-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  font-family: var(--font-mono), monospace;
  letter-spacing: .04em;
}
[dir="rtl"] .why-card-more svg { transform: scaleX(-1); }
.why-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 18, 48, .55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.why-modal-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 30px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 80px -20px rgba(10, 18, 48, .45);
  text-align: start;
}
.why-modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.why-modal-close:hover { background: var(--ink); color: #fff; }
.why-modal-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-soft, #F0F5FF);
  color: var(--blue);
  margin-bottom: 16px;
}
.why-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-modal-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft, var(--muted));
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  background: white;
  border-color: var(--blue);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.why-card-body {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* =====================================================
   INDUSTRIES — 4 cards (split visual + content)
   ===================================================== */
.ind-section { background: var(--paper-2); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .ind-grid { grid-template-columns: 1fr; } }

.ind-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ind-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ind-card-visual {
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-inline-end: 1px solid var(--line);
}
.ind-card-visual svg {
  width: 100%;
  height: 100%;
  max-width: 92px;
  max-height: 92px;
}
.ind-card-content {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.ind-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.ind-card-name {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.014em;
  margin: 0;
}
.ind-card-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   PROCESS — 4 cells
   ===================================================== */
.process-section {
  background: var(--ink);
  color: white;
}
.process-section .h2 { color: white; }
.process-section .lead { color: rgba(255, 255, 255, 0.7); }
.process-section .eyebrow {
  background: rgba(0, 92, 252, 0.18);
  border-color: rgba(0, 92, 252, 0.3);
  color: #6FA8FF;
}
.process-section .eyebrow::before { background: #6FA8FF; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.process-cell {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}
.process-cell:last-child { border-inline-end: none; }
@media (max-width: 900px) {
  .process-cell:nth-child(2n) { border-inline-end: none; }
  .process-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
}
@media (max-width: 600px) {
  .process-cell { border-inline-end: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .process-cell:last-child { border-bottom: none; }
}
.process-cell:hover { background: rgba(255, 255, 255, 0.03); }

.process-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.process-n {
  font-size: clamp(46px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  font-family: var(--font-en);
}
body[data-lang="ar"] .process-n { font-family: var(--font-ar); }
.process-time {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6FA8FF;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid rgba(111, 168, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(0, 92, 252, 0.08);
}
body[data-lang="ar"] .process-time { letter-spacing: 0; }
.process-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.014em;
  color: white;
  margin: 0;
}
.process-body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* =====================================================
   CASE STUDY — Saudi Ceramics deep dive
   ===================================================== */
.case-section { background: var(--paper-warm); }
.case-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 28px;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; gap: 40px; } }
.case-main { display: flex; flex-direction: column; gap: 18px; }
.case-partner-head {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.case-partner-head .partner-img { height: 120px; max-width: 280px; filter: none; opacity: 1; }
.case-title { font-size: clamp(28px, 3.6vw, 42px); }
.case-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.case-quote {
  position: relative;
  padding: 24px 32px;
  margin-top: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-quote-mark {
  font-size: 80px;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--blue);
  line-height: 0.5;
  margin-top: 18px;
  height: 24px;
}
.case-quote-text {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
}
.case-quote-who {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.case-side { display: flex; flex-direction: column; gap: 16px; }
.case-metrics {
  background: var(--ink);
  color: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.case-metric:last-child { padding-bottom: 0; border-bottom: none; }
.case-metric-num {
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.case-metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.case-report {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.case-report svg { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.case-report-cta { align-self: flex-start; }

/* =====================================================
   NUMBERS
   ===================================================== */
.numbers-section { background: white; padding: clamp(50px, 6vw, 80px) 0; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.number-cell {
  background: white;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 180px;
}
.number-cell-num {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--ink);
}
.number-cell-unit {
  font-size: 0.5em;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.number-cell-label {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: auto;
  line-height: 1.45;
}
.number-cell-sub {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =====================================================
   COVERAGE — cities + map
   ===================================================== */
.coverage-section { background: var(--paper-2); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; gap: 40px; } }
.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.coverage-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink-2);
}
.coverage-chip svg { color: var(--blue); }
.coverage-map-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.ksa-map { width: 100%; height: 100%; }
.coverage-map-note {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 28px;
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

/* =====================================================
   TRUST — 4 horizontal cards
   ===================================================== */
.trust-section { background: white; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 900px) { .trust-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .trust-row { grid-template-columns: 1fr; } }
.trust-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-inline-end: 1px solid var(--line);
  background: white;
  transition: background 0.2s ease;
}
.trust-card:hover { background: var(--paper-2); }
.trust-card:last-child { border-inline-end: none; }
@media (max-width: 900px) {
  .trust-card:nth-child(2n) { border-inline-end: none; }
  .trust-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 500px) {
  .trust-card { border-inline-end: none !important; border-bottom: 1px solid var(--line); }
  .trust-card:last-child { border-bottom: none; }
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.trust-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* =====================================================
   CALCULATOR
   ===================================================== */
.calc-section { background: var(--paper-warm); }
.calc-shell {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .calc-shell { grid-template-columns: 1fr; } }
.calc-controls {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-row { display: flex; flex-direction: column; gap: 12px; }
.calc-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.calc-label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.calc-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 92, 252, 0.35);
  cursor: pointer;
  transition: transform 0.12s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 92, 252, 0.35);
  cursor: pointer;
}
.calc-toggle-group {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--line);
  padding: 3px;
  border-radius: var(--radius-pill);
  background: var(--paper-2);
  width: fit-content;
}
.calc-toggle-btn {
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.18s ease;
}
.calc-toggle-btn.active { background: var(--ink); color: white; }

.calc-result {
  padding: 40px 36px;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: '';
  position: absolute;
  top: -40%;
  inset-inline-end: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(0, 92, 252, 0.35), transparent);
  pointer-events: none;
  filter: blur(40px);
}
.calc-result > * { position: relative; z-index: 1; }
.calc-result-primary {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.calc-result-num {
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-result-unit {
  font-size: 0.36em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0;
}
.calc-result-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.calc-result-cell-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.calc-result-cell-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  line-height: 1.4;
}
.calc-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: auto;
  line-height: 1.5;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-section { background: white; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 240px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.testi-card:hover {
  transform: translateY(-3px);
  background: white;
  border-color: var(--blue);
}
.testi-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 500;
  flex: 1;
  margin: 0;
}
.testi-quote::first-letter { color: var(--blue); font-weight: 700; }
.testi-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testi-attr-logo {
  display: flex;
  align-items: center;
}
.testi-attr-logo .partner-img {
  height: 32px;
  max-width: 100px;
  filter: none;
  opacity: 1;
}
.testi-attr-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-role { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.testi-company { font-size: 12px; color: var(--muted); }

/* =====================================================
   MEDIA — clean list
   ===================================================== */
.media-section { background: var(--paper-2); }
.media-list {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.media-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  transition: background 0.2s ease;
  cursor: pointer;
}
.media-row:first-child { border-top: none; }
.media-row:hover { background: var(--paper-2); }
@media (max-width: 700px) {
  .media-row { grid-template-columns: auto 1fr auto; gap: 12px; padding: 16px 18px; }
  .media-row .media-kind-pill { display: none; }
}
.media-kind-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.media-row-text { display: flex; flex-direction: column; gap: 4px; }
.media-source {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.media-headline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.3;
}
.media-kind-pill {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--blue-100);
  background: var(--blue-50);
  border-radius: var(--radius-pill);
}
body[data-lang="ar"] .media-kind-pill { letter-spacing: 0; }
.media-ext-icon {
  color: var(--muted-2);
  transition: color 0.2s ease, transform 0.2s ease;
}
.media-row:hover .media-ext-icon { color: var(--blue); transform: translate(2px, -2px); }
body[data-lang="ar"] .media-row:hover .media-ext-icon { transform: translate(-2px, -2px); }

/* =====================================================
   CTA — meeting booking
   ===================================================== */
.cta-section { background: var(--ink); color: white; }
.cta-section .h2 { color: white; }
.cta-section .lead { color: rgba(255, 255, 255, 0.7); }
.cta-section .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}
.cta-section .eyebrow::before { background: white; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }
.cta-intro { display: flex; flex-direction: column; gap: 20px; }
.cta-title { color: white; }
.cta-sub { color: rgba(255, 255, 255, 0.75); font-size: 16.5px; line-height: 1.6; max-width: 48ch; }
.cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
.cta-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 92, 252, 0.3);
  color: #6FA8FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cta-contact {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-contact-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
body[data-lang="ar"] .cta-contact-label { letter-spacing: 0.04em; }
.cta-contact-value {
  font-family: var(--font-mono);
  font-size: 16px;
  color: white;
  font-weight: 500;
  transition: color 0.2s ease;
}
.cta-contact-value:hover { color: #6FA8FF; }

/* Zoho form embed shell */
.cta-zoho-shell {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
}
.cta-zoho-head {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper-2) 0%, white 100%);
}
.cta-zoho-head-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cta-zoho-head-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.cta-zoho-iframe {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
  background: white;
}
@media (max-width: 600px) {
  .cta-zoho-iframe { height: 820px; }
  .cta-zoho-head { padding: 20px; }
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { background: var(--paper-warm); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.faq-item { border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: none; }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  text-align: start;
  font-size: clamp(15.5px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: -0.005em;
}
.faq-trigger:hover { background: var(--paper-2); color: var(--blue); }
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s ease, color 0.2s ease;
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner {
  padding: 0 28px 24px;
  padding-inline-end: 80px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--ink); color: white; padding: 80px 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-brand-col { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-col .logo { color: white; }
.footer-tagline {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 32ch;
  line-height: 1.55;
  margin: 0;
}
.footer-col-title {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-bottom: 14px;
}
body[data-lang="ar"] .footer-col-title { letter-spacing: 0.04em; }
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-link:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
