/* ================================================================
   Ajeer Business — Section-specific styles
   ================================================================ */

/* ===== Brand mark (geometric triangle) ===== */
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.brand-mark::after {
  content: "";
  width: 0; height: 0;
  border-inline: 7px solid transparent;
  border-bottom: 11px solid var(--blue);
  margin-top: -2px;
}

/* ===== Hero visual — dashboard frame ===== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  background: var(--ink);
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(10, 18, 48, 0.40),
    0 20px 40px -20px rgba(10, 18, 48, 0.20),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transform: rotate(-1.2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-frame:hover { transform: rotate(0); }
.hero-frame-chrome {
  height: 36px;
  background: linear-gradient(to bottom, #18204a, #0f1738);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.hero-frame-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.hero-frame-dot:nth-child(1) { background: #FF5F57; }
.hero-frame-dot:nth-child(2) { background: #FFBD2E; }
.hero-frame-dot:nth-child(3) { background: #27C93F; }
.hero-frame-url {
  margin-inline-start: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}
.hero-frame-body {
  position: absolute;
  inset: 36px 0 0 0;
  background: var(--paper-3);
  overflow: hidden;
}
.hero-frame-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* Floating decorative cards over hero */
.hero-deco-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-deco-card .icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--blue-50);
  display: grid; place-items: center;
  color: var(--blue);
  flex-shrink: 0;
}
.hero-deco-card .icon.green { background: #DCFCE7; color: var(--green); }
.hero-deco-card .icon.orange { background: var(--accent-50); color: var(--accent); }

.hero-deco-1 {
  top: 12%;
  inset-inline-start: -32px;
  animation: floatA 6s ease-in-out infinite;
}
.hero-deco-2 {
  bottom: 16%;
  inset-inline-end: -28px;
  animation: floatB 7s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-bg-blob {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-blob::before {
  content: "";
  position: absolute;
  top: -30%; inset-inline-end: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(closest-side, rgba(3, 93, 252, 0.10), transparent);
  filter: blur(40px);
}

/* ===== Trust bar (marquee — matches Partners/Stores style) ===== */
.trust {
  background: var(--paper-3);
  border-block: 1px solid var(--line-soft);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.trust-label-wrap {
  text-align: center;
  margin-bottom: 32px;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-label::before,
.trust-label::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--line);
}
.trust-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.trust-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 56px;
  animation: marqueeScroll 50s linear infinite;
}
.trust-marquee:hover .trust-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 140px;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.trust-logo:hover { opacity: 1; }
.trust-logo img {
  max-height: 56px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== Problem ===== */
.problem { background: var(--paper); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .problem-grid { grid-template-columns: 1fr; } }
.pain-card {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.pain-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.pain-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}
.pain-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pain-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== Pillars (4 ركائز) ===== */
.pillars { background: var(--paper-3); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar-card {
  background: white;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.2s ease;
  position: relative;
}
.pillar-card:hover { background: var(--paper-3); }
.pillar-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card .pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  margin-bottom: -4px;
}
.pillar-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: auto;
}

/* ===== How it works ===== */
.how { background: var(--paper-3); color: var(--ink); position: relative; overflow: hidden; }
.how::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(circle at 80% 40%, rgba(3, 93, 252, 0.06), transparent 60%);
  pointer-events: none;
}
.how .section-head { color: var(--ink); position: relative; z-index: 1; }
.how .h2 { color: var(--ink); }
.how .lead { color: var(--ink-3, var(--muted)); }
.how .eyebrow {
  background: var(--blue-soft);
  border-color: var(--blue-100);
  color: var(--blue);
}
.how .eyebrow::before { background: var(--blue); box-shadow: 0 0 0 4px rgba(3, 93, 252, 0.15); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) { .how-steps { grid-template-columns: 1fr; } }
.how-step {
  padding: 32px 28px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}
.how-step:first-child { border-inline-start: none; }
@media (max-width: 900px) {
  .how-step { border-inline-start: none; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .how-step:first-child { border-top: none; }
}
.how-step:hover { background: rgba(255, 255, 255, 0.02); }
.how-step-n {
  font-family: var(--font-mono);
  font-size: 68px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.14);
  line-height: 0.9;
}
.how-step-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: white;
}
.how-step-body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.how-step-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6FA8FF;
  padding: 4px 10px;
  border: 1px solid rgba(111, 168, 255, 0.3);
  background: rgba(3, 93, 252, 0.08);
  border-radius: var(--radius-pill);
  width: fit-content;
  font-weight: 600;
}

/* ===== Services (tabbed catalog) ===== */
.services { background: var(--paper); }
.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 32px;
}
.svc-tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.svc-tab:hover { color: var(--ink); }
.svc-tab.active {
  background: var(--ink);
  color: white;
  font-weight: 600;
}
.svc-tab .count {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.7;
  margin-inline-start: 6px;
}

.svc-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  min-height: 380px;
}
@media (max-width: 900px) { .svc-panel { grid-template-columns: 1fr; padding: 32px; gap: 32px; } }
.svc-panel-head { display: flex; flex-direction: column; gap: 16px; }
.svc-panel-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.svc-panel-desc { font-size: 15px; line-height: 1.6; color: var(--muted); }
.svc-panel-foot {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.svc-panel-count {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--blue);
}
.svc-panel-count-label { font-size: 13px; color: var(--muted); }

.svc-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 700px) { .svc-items { grid-template-columns: repeat(2, 1fr); } }
.svc-item {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 110px;
}
.svc-item:hover,
.svc-item:focus-visible {
  background: white;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(3, 93, 252, 0.18);
  outline: none;
}
.svc-item-icon {
  width: 38px; height: 38px;
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--blue);
  transition: opacity 0.2s ease;
}
.svc-item-icon svg { width: 20px; height: 20px; }
.svc-item-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.3;
  transition: opacity 0.2s ease;
}

/* Hover-reveal description overlay */
.svc-item-desc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 93, 252, 0.08) 0%, #ffffff 65%);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.svc-item:hover .svc-item-desc-overlay,
.svc-item:focus-visible .svc-item-desc-overlay,
.svc-item.is-open .svc-item-desc-overlay {
  opacity: 1;
  transform: translateY(0);
}
.svc-item:hover .svc-item-icon,
.svc-item:focus-visible .svc-item-icon,
.svc-item.is-open .svc-item-icon,
.svc-item:hover .svc-item-label,
.svc-item:focus-visible .svc-item-label,
.svc-item.is-open .svc-item-label {
  opacity: 0;
}
.svc-item-desc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.svc-item-desc-body {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

/* ===== Service models (On-Demand vs Scheduled) ===== */
.models { background: var(--paper-3); }
.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .models-grid { grid-template-columns: 1fr; } }
.model-card {
  padding: 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.model-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.model-card.dark { background: var(--ink); color: white; border-color: var(--ink); }
.model-card.dark .model-desc { color: rgba(255, 255, 255, 0.7); }
.model-card.dark .model-feature { color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.1); }
.model-card.dark .model-feature .check { background: rgba(255, 255, 255, 0.1); color: #6FA8FF; }

.model-head { display: flex; align-items: baseline; justify-content: space-between; }
.model-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 4px 10px;
  border: 1px solid var(--blue-100);
  background: var(--blue-50);
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.model-card.dark .model-tag {
  color: #6FA8FF;
  border-color: rgba(111, 168, 255, 0.3);
  background: rgba(3, 93, 252, 0.18);
}
.model-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.model-desc { font-size: 15px; line-height: 1.6; color: var(--muted); }
.model-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.model-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
}
.model-feature:last-child { padding-bottom: 0; }
.model-feature .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.model-feature .check svg { width: 12px; height: 12px; }

/* ===== Platform showcase ===== */
.platform { background: var(--paper); }
.platform-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-bottom: clamp(56px, 6vw, 80px);
}
@media (max-width: 980px) { .platform-hero { grid-template-columns: 1fr; gap: 40px; } }

.platform-screen-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: white;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.platform-screen-wrap:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.platform-screen-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.platform-screen-wrap.tilt-l { transform: rotate(-1deg); }
.platform-screen-wrap.tilt-r { transform: rotate(1deg); }
.platform-screen-wrap.tilt-l:hover, .platform-screen-wrap.tilt-r:hover { transform: rotate(0); }

.platform-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}
@media (max-width: 700px) { .platform-features { grid-template-columns: 1fr; } }
.pf-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.pf-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.pf-icon svg { width: 18px; height: 18px; }
.pf-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.pf-body { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* Screens row */
.platform-screens-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .platform-screens-row { grid-template-columns: 1fr; } }
.screen-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.screen-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.screen-card-img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.screen-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.screen-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.screen-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}
.screen-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.screen-card-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===== Order Journey timeline ===== */
.journey { background: var(--paper-3); }
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .journey-timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .journey-timeline { grid-template-columns: 1fr; } }
.journey-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.journey-step:hover { border-color: var(--blue); transform: translateY(-2px); }
.journey-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.journey-n {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.journey-actor {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}
.journey-step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.3;
}
.journey-step-body { font-size: 13px; line-height: 1.6; color: var(--muted); }

.journey-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.journey-note b { color: var(--blue); font-weight: 700; }
.journey-note .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ===== Gold Warranty ===== */
.warranty { background: var(--paper); }
.warranty-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .warranty-grid { grid-template-columns: 1fr; gap: 32px; } }
.warranty-medal {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.warranty-medal-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #FFD78A, #D4A93A, #C8961D, #FFD78A);
  filter: blur(20px);
  opacity: 0.5;
}
.warranty-medal-inner {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #FFD78A 0%, #D4A93A 50%, #8E6A1B 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 30px 80px -20px rgba(212, 169, 58, 0.5), inset 0 -8px 24px rgba(0,0,0,0.15);
  text-align: center;
}
.warranty-medal-days {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: var(--font-en);
  font-variant-numeric: tabular-nums;
}
.warranty-medal-label {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}
.warranty-medal-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
  padding: 4px 14px;
  background: rgba(10, 18, 48, 0.15);
  border-radius: var(--radius-pill);
}

.warranty-content { display: flex; flex-direction: column; gap: 24px; }

/* ── Warranty benefit points ── */
.warranty-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.warranty-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.warranty-points-ic {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(200, 150, 29, .10);
  color: var(--gold, #C8961D);
  display: flex; align-items: center; justify-content: center;
}
.warranty-points li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.warranty-points li b {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.warranty-points li span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2, var(--muted));
}

/* ===== Numbers (Dark) ===== */
.numbers { background: var(--ink); color: white; position: relative; overflow: hidden; }
.numbers .section-head { color: white; }
.numbers .h2 { color: white; }
.numbers .lead { color: rgba(255,255,255,0.65); }
.numbers .eyebrow {
  background: rgba(3, 93, 252, 0.18);
  border-color: rgba(3, 93, 252, 0.32);
  color: #6FA8FF;
}
.numbers .eyebrow::before { background: #6FA8FF; box-shadow: 0 0 0 4px rgba(111, 168, 255, 0.18); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .numbers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .numbers-grid { grid-template-columns: 1fr; } }
.number-cell {
  background: var(--ink);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
  transition: background 0.3s ease;
}
.number-cell:hover { background: #131c44; }
.number-cell-num {
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.number-cell-num .unit {
  color: #6FA8FF;
  font-size: 0.45em;
  font-weight: 500;
  margin-inline-start: 6px;
}
.number-cell-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: auto;
  line-height: 1.45;
}
.number-cell-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Comparison Table ===== */
.compare { background: var(--paper-3); }
.compare-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.compare-cell {
  padding: 24px 28px;
  border-block-start: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-size: 15px;
}
.compare-cell.head {
  background: var(--paper);
  font-weight: 700;
  font-size: 15px;
  border-block-start: none;
  padding: 28px;
  letter-spacing: -0.005em;
}
.compare-cell.head.ajeer {
  background: var(--ink);
  color: white;
  position: relative;
}
.compare-cell.head.ajeer::after {
  content: "موصى به";
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: white;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.compare-cell.criterion {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  background: var(--paper-3);
}
.compare-cell.value {
  color: var(--ink-2);
  position: relative;
}
.compare-cell.value.ajeer {
  background: rgba(3, 93, 252, 0.04);
  color: var(--blue);
  font-weight: 600;
}
.compare-cell.value::before {
  content: "✕";
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-50);
  color: var(--accent);
  margin-inline-end: 12px;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}
.compare-cell.value.ajeer::before {
  content: "✓";
  background: var(--blue-50);
  color: var(--blue);
}
@media (max-width: 800px) {
  .compare-table { grid-template-columns: 1fr; }
  .compare-cell.head { padding: 16px 24px; }
  .compare-cell.criterion { background: var(--ink); color: white; }
  .compare-cell.criterion + .compare-cell { border-block-start: none; }
}

/* ===== FAQ ===== */
.faq { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-block-start: 1px solid var(--line);
  overflow: hidden;
}
.faq-item:last-child { border-block-end: 1px solid var(--line); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: start;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  gap: 20px;
}
.faq-trigger:hover { color: var(--blue); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner {
  padding-block-end: 24px;
  padding-inline-end: 52px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ===== Contact Form Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 48, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-shell {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: hidden;
}
.modal-overlay.open .modal-shell { transform: translateY(0); }

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  gap: 20px;
}
.modal-head-text { flex: 1; }
.modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}
.modal-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}
.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.18s ease;
  font-size: 20px;
  color: var(--muted);
}
.modal-close:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.modal-body {
  flex: 1;
  overflow: hidden;
  padding: 0 12px 12px;
}
.modal-body iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}
@media (max-width: 600px) {
  .modal-shell { max-height: 92vh; }
  .modal-body iframe { height: 65vh; min-height: 480px; }
}
.cta-final {
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-final .section-head { color: white; max-width: 700px; }
.cta-final .h2 { color: white; }
.cta-final .lead { color: rgba(255,255,255,0.85); }
.cta-final .eyebrow {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.cta-final .eyebrow::before { background: white; box-shadow: 0 0 0 4px rgba(255,255,255,0.18); }

.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, white 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, white 0%, transparent 40%);
}

.cta-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-final .btn-light { background: white; color: var(--blue); border-color: white; }
.cta-final .btn-light:hover { background: var(--paper); }
.cta-final .btn-ghost { color: white; border-color: rgba(255, 255, 255, 0.4); }
.cta-final .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: white; }

.cta-meta {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-meta-item { display: flex; flex-direction: column; gap: 4px; }
.cta-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.cta-meta-val {
  font-size: 18px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.005em;
}
