/* Creative Services Pages Design (RTL friendly) */

:root {
  --nr-surface: rgba(255, 255, 255, 0.86);
  --nr-surface-2: rgba(255, 255, 255, 0.72);
  --nr-border: rgba(15, 23, 42, 0.10);
  --nr-text: #0f172a;
  --nr-muted: rgba(15, 23, 42, 0.72);
  --nr-accent: #2563eb;
  --nr-accent-2: #7c3aed;
  --nr-shadow: 0 16px 50px rgba(2, 6, 23, 0.10);
}

.nr-services-page,
.nr-service-page {
  direction: rtl;
  color: var(--nr-text);
}

.nr-services-page *,
.nr-service-page * {
  box-sizing: border-box;
}

.nr-service-page figure,
.nr-services-page figure {
  margin: 0;
}

.nr-mt {
  margin-top: 14px;
}

.nr-my {
  margin: 12px 0;
}

.nr-hero {
  position: relative;
  margin: 28px auto;
  max-width: 1420px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--nr-border);
  background:
    radial-gradient(1200px 320px at 90% 0%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(900px 320px at 15% 20%, rgba(37, 99, 235, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
  box-shadow: var(--nr-shadow);
  overflow: hidden;
}

.nr-hero:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(37,99,235,0.30), rgba(124,58,237,0.22), rgba(16,185,129,0.10));
  opacity: 0.35;
  filter: blur(30px);
  pointer-events: none;
}

.nr-hero__content {
  position: relative;
  z-index: 1;
}

.nr-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: center;
}

.nr-media {
  border: 1px solid var(--nr-border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.72));
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.08);
  overflow: hidden;
}

.nr-media--placeholder {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
}

.nr-media__ph {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(700px 220px at 80% 0%, rgba(37,99,235,0.10), transparent 60%),
    radial-gradient(600px 220px at 10% 30%, rgba(124,58,237,0.08), transparent 60%),
    rgba(255,255,255,0.65);
}

.nr-media__ph-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.nr-media__ph-hint {
  color: var(--nr-muted);
  font-size: 13px;
  line-height: 1.8;
  max-width: 46ch;
}

.nr-media__img {
  display: block;
  width: 100%;
  height: auto;
}

.nr-media__cap {
  padding: 10px 12px 12px 12px;
  color: var(--nr-muted);
  font-size: 13px;
  line-height: 1.8;
}

.nr-kpi {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.nr-kpi__item {
  border: 1px solid var(--nr-border);
  border-radius: 14px;
  background: rgba(255,255,255,0.70);
  padding: 10px 12px;
}

.nr-kpi__n {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 2px;
}

.nr-kpi__t {
  color: var(--nr-muted);
  font-size: 13px;
  line-height: 1.7;
}

.nr-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.nr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--nr-border);
  background: rgba(255, 255, 255, 0.65);
  color: var(--nr-muted);
  font-size: 13px;
  line-height: 1.4;
}

.nr-hero__title {
  margin: 0 0 10px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  /* Smaller, more standard sizing (responsive) */
  font-size: clamp(22px, 1.35vw + 16px, 32px);
  line-height: 1.35;
}

.nr-hero__lead {
  margin: 0;
  max-width: 72ch;
  color: var(--nr-muted);
  line-height: 1.9;
}

.nr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.nr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--nr-border);
  text-decoration: none !important;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nr-btn--primary {
  background: linear-gradient(135deg, var(--nr-accent), var(--nr-accent-2));
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.22);
  border-color: rgba(37, 99, 235, 0.35);
}

.nr-btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--nr-text) !important;
}

.nr-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.12);
}

.nr-section {
  max-width: 1420px;
  margin: 18px auto;
  padding: 0 6px;
}

.nr-h2 {
  font-weight: 800;
  margin: 18px 0 14px 0;
  letter-spacing: -0.01em;
  font-size: clamp(18px, 0.9vw + 14px, 24px);
  line-height: 1.45;
}

.nr-grid {
  display: grid;
  gap: 14px;
}

.nr-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nr-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nr-card {
  border: 1px solid var(--nr-border);
  border-radius: 16px;
  background: var(--nr-surface);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.06);
  padding: 16px;
}

.nr-card--link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
}

.nr-card--link:hover {
  transform: translateY(-1px);
  transition: transform 0.15s ease;
}

.nr-card__title {
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.nr-card__text {
  color: var(--nr-muted);
  line-height: 1.9;
}

.nr-card__cta {
  margin-top: 12px;
  font-weight: 800;
  color: var(--nr-accent);
}

.nr-list {
  margin: 10px 0 0 0;
  padding: 0 18px 0 0;
  color: var(--nr-muted);
  line-height: 2.0;
}

.nr-steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nr-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--nr-border);
  background: var(--nr-surface-2);
}

.nr-step__n {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--nr-accent), var(--nr-accent-2));
  flex: 0 0 auto;
}

.nr-step__t {
  font-weight: 900;
  margin-bottom: 4px;
}

.nr-step__d {
  color: var(--nr-muted);
  line-height: 1.9;
}

.nr-faq {
  display: grid;
  gap: 10px;
}

.nr-faq__item {
  border: 1px solid var(--nr-border);
  border-radius: 14px;
  background: var(--nr-surface);
  padding: 12px 14px;
}

.nr-faq__item summary {
  cursor: pointer;
  font-weight: 900;
  outline: none;
}

.nr-faq__item summary::-webkit-details-marker {
  display: none;
}

.nr-faq__item > div {
  margin-top: 10px;
  color: var(--nr-muted);
  line-height: 1.95;
}

.nr-cta {
  margin-top: 26px;
}

.nr-cta__box {
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 18px;
  padding: 18px;
  background: radial-gradient(800px 240px at 80% 0%, rgba(37,99,235,0.14), transparent 60%),
              radial-gradient(600px 240px at 10% 30%, rgba(124,58,237,0.10), transparent 60%),
              rgba(255,255,255,0.86);
  box-shadow: var(--nr-shadow);
}

.nr-cta__t {
  font-weight: 900;
  font-size: clamp(18px, 0.7vw + 16px, 22px);
  margin-bottom: 6px;
  line-height: 1.5;
}

.nr-cta__d {
  color: var(--nr-muted);
  line-height: 1.9;
  margin-bottom: 12px;
}

.nr-note {
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.70);
  padding: 12px 14px;
  color: var(--nr-muted);
  line-height: 1.9;
}

@media (max-width: 1024px) {
  .nr-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nr-hero {
    padding: 18px;
    margin: 18px 10px;
  }
  .nr-split {
    grid-template-columns: 1fr;
  }
  .nr-kpi {
    grid-template-columns: 1fr;
  }
  .nr-grid--2,
  .nr-grid--3,
  .nr-steps {
    grid-template-columns: 1fr;
  }
}

