:root {
  --brand-primary: #060d24;
  --brand-secondary: #0b2c5e;
  --brand-accent: #0ea5e9;
  --brand-accent-2: #a855f7;
  --text-muted: #6b7280;
}

/* Global reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: 'Inter', 'IBM Plex Sans Arabic', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html[dir='rtl'] {
  letter-spacing: 0.01em;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 116, 144, 0.16), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(148, 163, 184, 0.18), transparent 50%),
    #030712;
  color: #0f172a;
}

/* Page shell */
.page-shell {
  background: #f8fafc;
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto;
  min-height: calc(100vh - 48px);
  width: 100%;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .page-shell {
    padding-inline: 3rem;
  }
}

/* Hero / panels */
.hero-gradient {
  background: linear-gradient(135deg, #040719 0%, #0b2c5e 40%, #0f172a 100%);
}

.shadow-soft {
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.25);
}

.glass-panel {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.22);
}

.panel-padded {
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.glass-panel-dark {
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 80, 0.95));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.7);
  color: #f8fafc;
}

/* Service hero */
.service-hero {
  background: linear-gradient(135deg, #fdfefe, #f3f7fb);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 44px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.15);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }
}

.service-hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 240px;
  margin-inline: auto;
  width: 100%;
}

.media-circle {
  width: clamp(160px, 18vw, 220px);
  height: clamp(160px, 18vw, 220px);
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.25);
  background: radial-gradient(circle at top, rgba(14, 165, 233, 0.08), transparent), #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.media-circle img,
.media-circle svg {
  width: min(70%, 160px);
  height: auto;
  max-height: 160px;
  object-fit: contain;
  color: #0ea5e9;
  flex-shrink: 0;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.65);
}

.service-stat-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .service-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-stat-card {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Service sections */
.service-section {
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.98);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.service-section.dark {
  background: linear-gradient(135deg, #051332, #0f2d66);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(6, 8, 20, 0.45);
}

.service-section.dark p,
.service-section.dark .section-subtitle {
  color: rgba(248, 250, 252, 0.82);
}

.service-scope-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .service-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-scope-card {
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f7f9fc;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Highlights / CTA */
.service-highlight-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .service-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-highlight-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  height: 100%;
}

.service-cta-card {
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(4, 7, 25, 0.02), rgba(14, 116, 144, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  padding: clamp(1.5rem, 4vw, 3rem);
}

/* Icons */
.scope-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scope-icon svg {
  width: 32px;
  height: 32px;
  max-width: 100%;
  max-height: 100%;
  display: block;
  color: #0ea5e9;
  flex-shrink: 0;
}

.scope-icon span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Landing layout */
.it-landing {
  background: #f6f8fb;
  padding: 40px 0 80px;
}

.landing-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.landing-hero {
  padding: 80px 20px 60px;
  text-align: center;
}

.landing-hero-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.landing-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.landing-hero-subtitle {
  max-width: 820px;
  margin: 0 auto 20px;
  color: #6b7280;
  font-size: 1.15rem;
  line-height: 1.9;
}

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

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 36px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.landing-button.primary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
}

.landing-button.secondary {
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #2563eb;
  background: #fff;
  box-shadow: none;
}

.landing-section {
  padding: 60px 20px;
}

.landing-section.light {
  background: #f0f4f8;
}

.landing-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.landing-grid {
  display: grid;
  gap: 20px;
}

.landing-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.landing-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.landing-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.landing-card-icon svg,
.landing-card-icon i {
  width: 48px;
  height: 48px;
  color: #0ea5e9;
}

.landing-card h3 {
  font-size: 1.2rem;
  margin: 18px 0 10px;
}

.landing-card p {
  color: #6b7280;
  line-height: 1.7;
}

.landing-benefit-img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.landing-cta {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.landing-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.landing-cta p {
  max-width: 640px;
  margin: 0 auto 25px;
  font-size: 1.15rem;
}

.landing-button.light {
  background: #fff;
  color: #1d4ed8;
  box-shadow: none;
}

/* Generic section shell */
.section-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.section-title.text-white {
  color: #f8fafc;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
}

/* Pills / badges */
.chip {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  color: #0f172a;
  font-size: 0.85rem;
  padding: 0.35rem 0.95rem;
}

.pill-accent {
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.25),
    rgba(14, 116, 144, 0.08)
  );
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: #0369a1;
}

.badge-lucid {
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  border: 1px solid rgba(248, 250, 252, 0.3);
  color: #f9fafb;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTAs */
.cta-primary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #f9fafb;
  border: none;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.6);
}

.cta-secondary {
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  color: #f9fafb;
}

/* Card grids */
.card-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1fr); /* Mobile-safe default */
}

.card-grid-three {
  /* combine with .card-grid on the element */
}

.card-grid-four {
  /* combine with .card-grid on the element */
}

@media (min-width: 768px) {
  .card-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Stat spark */
.stat-spark {
  position: relative;
  padding-left: 2.2rem;
}

.stat-spark::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--brand-accent), transparent);
}

/* Tag cloud */
.tag-cloud span {
  display: inline-flex;
  align-i
