@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: optional;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

html {
  scrollbar-gutter: stable;
}

/*
─────────────────────────────────────────────────────────────────────────────
1. |HERO 
───────────────────────────────────────────────────────────────────────────── 
*/

.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 52% 60% at 80% 48%, rgba(130, 53, 48, 0.05) 0%, transparent 68%), radial-gradient(ellipse 28% 36% at 10% 18%, rgba(130, 53, 48, 0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: clamp(24px, 3vh, 48px) clamp(16px, 3.5vw, 52px) clamp(24px, 3vh, 48px) clamp(24px, 6vw, 88px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-brand);
  background: var(--c-brand-tint);
  border: 1px solid rgba(130, 53, 48, 0.13);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  opacity: 0;
  animation: hFadeUp 0.5s var(--ease) 0.08s both;
}

.hero-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  flex-shrink: 0;
  animation: dotBeat 2.6s ease-in-out infinite;
}
@keyframes dotBeat {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.35;
  }
}

.hero-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--c-text);
  margin-bottom: 14px;
  contain: layout style;
}

.hero-title__line {
  display: block;
  overflow: hidden;
  min-height: 1.3em;
  padding-bottom: 0.18em;
  margin-bottom: -0.12em;
  box-sizing: border-box;
}

.hero-title__inner {
  display: block;
  opacity: 0;
  transform: translateY(105%);
  animation: hMaskUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-title__line:nth-child(1) .hero-title__inner {
  animation-delay: 0.14s;
}
.hero-title__line:nth-child(2) .hero-title__inner {
  animation-delay: 0.26s;
}
.hero-title__line:nth-child(3) .hero-title__inner {
  animation-delay: 0.38s;
}

@keyframes hMaskUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title__accent {
  color: var(--c-brand);
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 8px;
}
.hero-title__accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-brand-light) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  animation: hDrawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
@keyframes hDrawLine {
  to {
    transform: scaleX(1);
  }
}

.hero-sub {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(0.875rem, 1.15vw, 0.95rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-text-2);
  max-width: 420px;
  margin-right: auto;
  margin-bottom: 32px;
  opacity: 0;
  animation: hFadeUp 0.55s var(--ease) 0.52s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
  opacity: 0;
  animation: hFadeUp 0.55s var(--ease) 0.64s both;
}

/* ====== RIGHT — NOTIFICATION PANEL ====== */
.hero-panel {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(26, 12, 11, 0.05);
  contain: layout style paint;
}
[dir='rtl'] .hero-panel {
  border-left: none;
  border-right: 1px solid rgba(26, 12, 11, 0.05);
}

.hero-feed-area {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0 14px;
}

.hero-feed-area::before,
.hero-feed-area::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 64px;
  pointer-events: none;
  z-index: 4;
}
.hero-feed-area::before {
  top: 0;
  background: linear-gradient(to bottom, var(--c-bg) 0%, transparent 80%);
}
.hero-feed-area::after {
  bottom: 0;
  background: linear-gradient(to top, var(--c-bg) 0%, transparent 80%);
}

.hero-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  will-change: transform;
  contain: layout;
}

.notif-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 36px 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  border: 1.5px solid rgba(230, 230, 230, 0.85);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 2px 8px rgba(0, 0, 0, 0.07),
    0 8px 32px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateX(32px) scale(0.97);
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s var(--ease);
  min-width: 0;
  outline: none;
  direction: ltr;
  text-align: left;
}

.notif-card.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.notif-card:focus-visible {
  box-shadow:
    0 0 0 2px var(--c-brand),
    0 2px 8px rgba(0, 0, 0, 0.07),
    0 8px 32px rgba(0, 0, 0, 0.06);
}

@media (hover: hover) {
  .notif-card:hover {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 2px 6px rgba(0, 0, 0, 0.07),
      0 8px 24px rgba(0, 0, 0, 0.1),
      0 24px 48px rgba(0, 0, 0, 0.06);
    transform: translateX(0) scale(1) translateY(-2px) !important;
  }
}

.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  background: var(--notif-bg, var(--c-brand));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 2px 8px rgba(0, 0, 0, 0.14);
}

.notif-body {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.notif-app {
  font-family: 'Cairo', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(26, 12, 11, 0.5);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-dot {
  display: none;
}

.notif-time {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.7rem;
  color: rgba(26, 12, 11, 0.36);
  white-space: nowrap;
  margin-left: auto;
  padding-left: 8px;
}

.notif-title {
  font-family: 'Cairo', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.005em;
}

.notif-text {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(26, 12, 11, 0.5);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-live {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.18);
  animation: notifLive 1.9s ease-in-out infinite;
}
@keyframes notifLive {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.2);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 5px rgba(52, 199, 89, 0);
    opacity: 0.65;
  }
}

/* ====== SHARED KEYFRAMES ====== */
@keyframes hFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE ====== */
@media (min-width: 1400px) {
  .hero {
    grid-template-columns: 5fr 4fr;
  }
}

@media (max-width: 1060px) {
  .hero-copy {
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(16px, 3vw, 32px);
  }
}

@media (max-width: 860px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    height: 110vh;
    max-height: 110vh;
    padding-top: 72px;
    box-sizing: border-box;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    padding: 32px clamp(20px, 6vw, 40px) 24px;
    flex-shrink: 0;
    background: var(--c-bg);
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: clamp(1.875rem, 6.5vw, 2.625rem);
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .hero-sub {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: row; /* keep buttons next to each other */
    .hero-proof {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 0;
      margin-top: 44px;
      padding-top: 28px;
      border-top: 1px solid rgba(26, 12, 11, 0.07);
      width: 100%;
      max-width: 400px;
    }

    .hero-proof__sep {
      display: block;
      width: 1px;
      height: 40px;
      align-self: center;
      background: rgba(26, 12, 11, 0.1);
    }

    .hero-proof__stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      flex: 1;
      padding: 0 12px;
    }

    .hero-proof__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: var(--c-brand-tint);
      color: var(--c-brand);
      font-size: 0.75rem;
      margin-bottom: 4px;
    }

    .hero-proof__val {
      display: block;
      font-family: 'Cairo', sans-serif;
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--c-text);
      line-height: 1;
    }

    .hero-proof__val sup {
      font-size: 0.65em;
      color: var(--c-brand);
    }

    .hero-proof__label {
      display: block;
      font-family: 'Tajawal', sans-serif;
      font-size: 0.6875rem;
      color: var(--c-text-2);
      text-align: center;
      letter-spacing: 0.02em;
    }

    .hero-panel {
      display: flex;
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.35;
      border: none;
    }

    .notif-card:hover {
      box-shadow:
        0 0 0 2px var(--c-brand),
        0 2px 8px rgba(0, 0, 0, 0.07),
        0 8px 32px rgba(0, 0, 0, 0.06);
      transform: translateX(0) scale(1) translateY(0);
    }
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 32px 24px 44px;
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(1.875rem, 8.5vw, 2.375rem);
    line-height: 1.14;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: 1 1 130px;
    max-width: 180px;
    text-align: center;
    justify-content: center;
    font-size: 0.875rem;
    padding: 11px 16px;
  }

  .hero-title__accent::after {
    animation: hDrawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
  }
}

@media (max-width: 360px) {
  .hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    font-size: 1.875rem;
    line-height: 1.16;
  }

  .hero-sub {
    font-size: 0.875rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
}

/* ====== RTL ====== */
[dir='rtl'] .hero-copy {
  align-items: flex-start;
  text-align: right;
  padding-left: clamp(16px, 3.5vw, 52px);
  padding-right: clamp(24px, 6vw, 88px);
}

[dir='rtl'] .hero-title {
  letter-spacing: 0;
  line-height: 1.18;
  font-size: clamp(2rem, 3.6vw, 3rem);
  text-align: right;
  contain: layout style;
}

[dir='rtl'] .hero-title__accent {
  padding-bottom: 12px;
}
[dir='rtl'] .hero-title__accent::after {
  transform-origin: right center;
  background: linear-gradient(270deg, var(--c-brand) 0%, var(--c-brand-light) 100%);
}

[dir='rtl'] .hero-sub {
  line-height: 1.9;
  font-size: clamp(0.85rem, 1.1vw, 0.93rem);
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}

[dir='rtl'] .hero-tag {
  align-self: flex-start;
}

[dir='rtl'] .hero-actions {
  justify-content: flex-start;
}

[dir='rtl'] .hero-proof {
  display: none;
}

@media (max-width: 860px) {
  [dir='rtl'] .hero-copy {
    align-items: center;
    text-align: center;
    padding-left: clamp(24px, 7vw, 56px);
    padding-right: clamp(24px, 7vw, 56px);
  }

  [dir='rtl'] .hero-title {
    text-align: center;
    font-size: clamp(1.875rem, 6.5vw, 2.625rem);
    margin-bottom: 20px;
  }

  [dir='rtl'] .hero-title__accent {
    padding-bottom: 10px;
  }

  [dir='rtl'] .hero-title__accent::after {
    transform-origin: right center;
  }

  [dir='rtl'] .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.9;
  }

  [dir='rtl'] .hero-tag {
    align-self: center;
  }

  [dir='rtl'] .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  [dir='rtl'] .hero-actions {
    align-items: center;
  }
}

/* 
─────────────────────────────────────────────────────────────────────────────
2. |CLIENTS
───────────────────────────────────────────────────────────────────────────── 
*/

.clients {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--c-bg);
  overflow: hidden;
  position: relative;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(130, 53, 48, 0.1) 50%, transparent 100%);
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ====== Clients Section Heading Overrides ====== */
.clients .section-heading {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.clients .section-subtitle strong {
  color: var(--c-brand);
  font-weight: 700;
}

/* ====== Logo Scroller ====== */
.logo-scroller {
  position: relative;
  overflow: hidden;
  direction: ltr;
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.logo-scroller__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  padding: 8px 0;
  width: max-content;
  list-style: none;
  margin: 0;
}

.logo-scroller[data-animated='true'] .logo-scroller__inner {
  animation: logoScroll 90s linear infinite;
}

.logo-scroller[data-direction='right'][data-animated='true'] .logo-scroller__inner {
  animation-direction: reverse;
}

.logo-scroller:hover .logo-scroller__inner {
  animation-play-state: paused;
}

@keyframes logoScroll {
  to {
    transform: translateX(calc(-50% - clamp(16px, 2.5vw, 28px)));
  }
}

/* ====== Logo Item ====== */
.logo-scroller__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
}

.client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

@media (hover: hover) {
  .client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .clients {
    padding: clamp(48px, 8vw, 80px) 0;
  }

  .logo-scroller:hover .logo-scroller__inner {
    animation-play-state: running;
  }

  .logo-scroller__inner {
    gap: clamp(20px, 3vw, 32px);
  }

  .logo-scroller__item {
    width: 140px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .logo-scroller__item {
    width: 120px;
    height: 60px;
  }
}

/* 
─────────────────────────────────────────────────────────────────────────────
3. |ABOUT SECTION
─────────────────────────────────────────────────────────────────────────────
*/

.about {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

/* Top & Bottom faded lines */
.about::before,
.about::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(130, 53, 48, 0.1) 50%, transparent 100%);
}

.about::before {
  top: 0;
}

.about::after {
  bottom: 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ====== Image Side ====== */
.about-visual {
  position: relative;
  order: 2;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.about.in-view .about-visual {
  opacity: 1;
  transform: translateX(0);
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

@media (hover: hover) {
  .about-image-wrap:hover {
    transform: scale(1.02);
    box-shadow:
      0 8px 12px rgba(0, 0, 0, 0.06),
      0 20px 40px rgba(0, 0, 0, 0.12),
      0 32px 64px rgba(0, 0, 0, 0.08);
  }

  .about-image-wrap:hover .about-image {
    transform: scale(1.05);
  }
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(130, 53, 48, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--ease);
}

/* ====== Badge ====== */
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--c-brand);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-lg, 24px);
  box-shadow:
    0 4px 12px rgba(130, 53, 48, 0.25),
    0 12px 32px rgba(130, 53, 48, 0.2);
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: scale(0.6);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s var(--ease),
    opacity 0.4s var(--ease);
  cursor: pointer;
  overflow: hidden;
}

.about-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.about.in-view .about-badge {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

@media (hover: hover) {
  .about-badge:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow:
      0 12px 28px rgba(130, 53, 48, 0.4),
      0 20px 48px rgba(130, 53, 48, 0.3);
  }

  .about-badge:hover::before {
    left: 130%;
  }
}

.about-badge:active {
  transform: scale(1.05) translateY(-2px);
}

.about-badge__number {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  display: block;
}

.about-badge__label {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  display: block;
}

/* ====== Content Side ====== */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.about.in-view .about-content {
  opacity: 1;
  transform: translateX(0);
}

.about-content .section-eyebrow {
  margin-bottom: 16px;
}

.about-content .section-title {
  text-align: left;
  margin: 0 0 20px;
}

.about-content .section-subtitle {
  text-align: left;
  margin: 0 0 16px;
  max-width: 520px;
}

.about-content .section-subtitle:last-of-type {
  margin-bottom: 32px;
}

.about-cta {
  margin-top: 8px;
}

/* ====== RTL: Text Right, Image Left ====== */
[dir='rtl'] .about-visual {
  order: 2;
  transform: translateX(-40px);
}

[dir='rtl'] .about.in-view .about-visual {
  transform: translateX(0);
}

[dir='rtl'] .about-content {
  order: 1;
  transform: translateX(40px);
}

[dir='rtl'] .about.in-view .about-content {
  transform: translateX(0);
}

[dir='rtl'] .about-badge {
  left: auto;
  right: -20px;
}

[dir='rtl'] .about-content .section-title,
[dir='rtl'] .about-content .section-subtitle {
  text-align: right;
}

[dir='rtl'] .about-content .section-subtitle {
  line-height: 1.9;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 64px);
  }

  .about-visual,
  [dir='rtl'] .about-visual {
    order: 1;
    max-width: 560px;
    margin: 0 auto;
    transform: translateY(30px);
  }

  .about.in-view .about-visual,
  [dir='rtl'] .about.in-view .about-visual {
    transform: translateY(0);
  }

  .about-content,
  [dir='rtl'] .about-content {
    order: 2;
    align-items: center;
    transform: translateY(30px);
  }

  .about.in-view .about-content,
  [dir='rtl'] .about.in-view .about-content {
    transform: translateY(0);
  }

  .about-content .section-title,
  .about-content .section-subtitle,
  [dir='rtl'] .about-content .section-title,
  [dir='rtl'] .about-content .section-subtitle {
    text-align: center;
  }

  .about-content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta,
  [dir='rtl'] .about-cta {
    align-self: center;
  }

  .about-badge,
  [dir='rtl'] .about-badge {
    bottom: -16px;
    left: auto;
    right: 20px;
    padding: 16px 24px;
  }
}

@media (max-width: 600px) {
  .about {
    padding: clamp(48px, 8vw, 80px) 0;
  }

  .about-badge {
    padding: 12px 18px;
    bottom: -12px;
    right: 12px;
  }

  .about-badge__number {
    font-size: 1.5rem;
  }

  .about-badge__label {
    font-size: 0.6875rem;
  }
}

/* 
─────────────────────────────────────────────────────────────────────────────
4. |SERVICES
───────────────────────────────────────────────────────────────────────────── 
*/

.services {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  background: var(--c-bg);
  position: relative;
  overflow: visible;
}

.services::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2rem;
  z-index: 99;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(130, 53, 48, 0.12) 50%, transparent 100%);
}

@media (max-width: 820px) {
  .services::after {
    bottom: -1rem;
  }
}

@media (max-width: 480px) {
  .services::after {
    bottom: -0.5rem;
  }
}

.services-header {
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.services-timeline {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
  position: relative;
  isolation: isolate;
}

.services-connector-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  contain: layout style;
}

.connector-track {
  fill: none;
  stroke: rgba(130, 53, 48, 0.04);
  stroke-width: 52;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connector-glow {
  fill: none;
  stroke: rgba(184, 82, 76, 0.08);
  stroke-width: 72;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: stroke-dashoffset;
}

.connector-progress {
  fill: none;
  stroke: url(#connectorGradient);
  stroke-width: 48;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: stroke-dashoffset;
}

.connector-dot-glow {
  fill: rgba(184, 82, 76, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.connector-dot-glow.is-active {
  opacity: 1;
}

.connector-dot {
  fill: #fff;
  stroke: var(--c-brand);
  stroke-width: 5;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.connector-dot.is-active {
  opacity: 1;
}

.connector-dot.is-complete,
.connector-dot-glow.is-complete,
.connector-dot-inner.is-complete {
  animation: none !important;
  transform: none;
}

.connector-dot-inner {
  fill: var(--c-brand);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.connector-dot-inner.is-active {
  opacity: 1;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4.5vw, 60px);
  align-items: center;
  margin-bottom: clamp(44px, 6.5vw, 80px);
  direction: ltr;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item:last-child {
  margin-bottom: 0;
}
.service-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item:nth-child(even) .service-visual {
  order: 2;
}
.service-item:nth-child(even) .service-card {
  order: 1;
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.service-visual::after {
  content: '';
  position: absolute;
  background: transparent;
  border: 1px dashed rgba(130, 53, 48, 0.09);
  z-index: -1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:nth-child(2) .service-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 225'%3E%3Cellipse cx='82' cy='78' rx='54' ry='40' fill='rgba(130,53,48,0.07)' transform='rotate(-18 82 78)'/%3E%3Cellipse cx='108' cy='95' rx='44' ry='33' fill='rgba(130,53,48,0.06)' transform='rotate(12 108 95)'/%3E%3Cellipse cx='68' cy='108' rx='34' ry='26' fill='rgba(130,53,48,0.05)' transform='rotate(-30 68 108)'/%3E%3Cellipse cx='232' cy='168' rx='28' ry='22' fill='rgba(130,53,48,0.05)' transform='rotate(16 232 168)'/%3E%3Cpath d='M 252 15 A 60 50 0 0 1 298 78' stroke='rgba(130,53,48,0.09)' stroke-width='1.1' fill='none'/%3E%3Cpath d='M 22 200 Q 155 95 282 40' stroke='rgba(130,53,48,0.065)' stroke-width='1' fill='none' stroke-dasharray='5 9'/%3E%3Ccircle cx='268' cy='18' r='2.2' fill='rgba(130,53,48,0.14)'/%3E%3Ccircle cx='280' cy='18' r='1.3' fill='rgba(130,53,48,0.09)'/%3E%3Ccircle cx='14' cy='205' r='1.6' fill='rgba(130,53,48,0.10)'/%3E%3Ccircle cx='150' cy='8' r='1.4' fill='rgba(130,53,48,0.08)'/%3E%3C/svg%3E");
}
.service-item:nth-child(2) .service-visual::after {
  width: 29%;
  height: 35%;
  top: 25%;
  left: 72%;
  transform: translate(-50%, -50%) rotate(18deg);
  border-radius: 52% 48% 44% 56% / 46% 54% 46% 54%;
}

.service-item:nth-child(3) .service-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 225'%3E%3Cellipse cx='205' cy='105' rx='56' ry='38' fill='rgba(130,53,48,0.065)' transform='rotate(8 205 105)'/%3E%3Cellipse cx='228' cy='128' rx='42' ry='30' fill='rgba(130,53,48,0.06)' transform='rotate(-14 228 128)'/%3E%3Cellipse cx='185' cy='125' rx='36' ry='28' fill='rgba(130,53,48,0.05)' transform='rotate(22 185 125)'/%3E%3Cellipse cx='215' cy='85' rx='26' ry='20' fill='rgba(130,53,48,0.04)' transform='rotate(-6 215 85)'/%3E%3Cpath d='M 8 175 A 58 46 0 0 0 58 218' stroke='rgba(130,53,48,0.09)' stroke-width='1.1' fill='none'/%3E%3Cpath d='M 15 40 Q 90 135 285 195' stroke='rgba(130,53,48,0.06)' stroke-width='1' fill='none' stroke-dasharray='4 9'/%3E%3Ccircle cx='16' cy='16' r='2.2' fill='rgba(130,53,48,0.14)'/%3E%3Ccircle cx='28' cy='16' r='1.3' fill='rgba(130,53,48,0.09)'/%3E%3Ccircle cx='292' cy='210' r='1.6' fill='rgba(130,53,48,0.10)'/%3E%3Ccircle cx='8' cy='112' r='1.4' fill='rgba(130,53,48,0.08)'/%3E%3C/svg%3E");
}
.service-item:nth-child(3) .service-visual::after {
  width: 32%;
  height: 30%;
  top: 74%;
  left: 24%;
  transform: translate(-50%, -50%) rotate(-20deg);
  border-radius: 44% 56% 60% 40% / 56% 44% 56% 44%;
}

.service-item:nth-child(4) .service-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 225'%3E%3Cellipse cx='145' cy='162' rx='55' ry='36' fill='rgba(130,53,48,0.07)' transform='rotate(-6 145 162)'/%3E%3Cellipse cx='172' cy='178' rx='40' ry='30' fill='rgba(130,53,48,0.055)' transform='rotate(18 172 178)'/%3E%3Cellipse cx='118' cy='172' rx='32' ry='25' fill='rgba(130,53,48,0.045)' transform='rotate(-22 118 172)'/%3E%3Cellipse cx='245' cy='58' rx='30' ry='22' fill='rgba(130,53,48,0.055)' transform='rotate(10 245 58)'/%3E%3Cpath d='M 12 72 A 55 44 0 0 1 62 18' stroke='rgba(130,53,48,0.09)' stroke-width='1.1' fill='none'/%3E%3Cpath d='M 285 58 Q 155 78 15 195' stroke='rgba(130,53,48,0.065)' stroke-width='1' fill='none' stroke-dasharray='5 8'/%3E%3Ccircle cx='272' cy='20' r='2.2' fill='rgba(130,53,48,0.14)'/%3E%3Ccircle cx='260' cy='20' r='1.3' fill='rgba(130,53,48,0.09)'/%3E%3Ccircle cx='14' cy='208' r='1.6' fill='rgba(130,53,48,0.10)'/%3E%3Ccircle cx='292' cy='112' r='1.4' fill='rgba(130,53,48,0.08)'/%3E%3C/svg%3E");
}
.service-item:nth-child(4) .service-visual::after {
  width: 27%;
  height: 38%;
  top: 28%;
  left: 68%;
  transform: translate(-50%, -50%) rotate(24deg);
  border-radius: 56% 44% 48% 52% / 42% 58% 42% 58%;
}

.service-item:nth-child(5) .service-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 225'%3E%3Cellipse cx='78' cy='158' rx='52' ry='38' fill='rgba(130,53,48,0.07)' transform='rotate(14 78 158)'/%3E%3Cellipse cx='102' cy='175' rx='42' ry='30' fill='rgba(130,53,48,0.06)' transform='rotate(-8 102 175)'/%3E%3Cellipse cx='58' cy='175' rx='32' ry='24' fill='rgba(130,53,48,0.05)' transform='rotate(26 58 175)'/%3E%3Cellipse cx='182' cy='42' rx='34' ry='24' fill='rgba(130,53,48,0.055)' transform='rotate(-12 182 42)'/%3E%3Cpath d='M 255 208 A 56 46 0 0 0 298 155' stroke='rgba(130,53,48,0.09)' stroke-width='1.1' fill='none'/%3E%3Cpath d='M 18 18 Q 162 105 285 188' stroke='rgba(130,53,48,0.065)' stroke-width='1' fill='none' stroke-dasharray='6 8'/%3E%3Ccircle cx='150' cy='8' r='2.2' fill='rgba(130,53,48,0.14)'/%3E%3Ccircle cx='162' cy='8' r='1.3' fill='rgba(130,53,48,0.09)'/%3E%3Ccircle cx='290' cy='205' r='1.6' fill='rgba(130,53,48,0.10)'/%3E%3Ccircle cx='8' cy='80' r='1.4' fill='rgba(130,53,48,0.08)'/%3E%3C/svg%3E");
}
.service-item:nth-child(5) .service-visual::after {
  width: 33%;
  height: 32%;
  top: 30%;
  left: 72%;
  transform: translate(-50%, -50%) rotate(-16deg);
  border-radius: 48% 52% 38% 62% / 60% 40% 60% 40%;
}

.service-item:nth-child(6) .service-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 225'%3E%3Cellipse cx='222' cy='72' rx='58' ry='42' fill='rgba(130,53,48,0.07)' transform='rotate(-14 222 72)'/%3E%3Cellipse cx='248' cy='92' rx='42' ry='32' fill='rgba(130,53,48,0.055)' transform='rotate(20 248 92)'/%3E%3Cellipse cx='68' cy='172' rx='36' ry='26' fill='rgba(130,53,48,0.055)' transform='rotate(-8 68 172)'/%3E%3Cpath d='M 5 165 A 56 44 0 0 0 52 212' stroke='rgba(130,53,48,0.09)' stroke-width='1.1' fill='none'/%3E%3Cpath d='M 288 182 Q 148 108 18 32' stroke='rgba(130,53,48,0.065)' stroke-width='1' fill='none' stroke-dasharray='5 8'/%3E%3Ccircle cx='292' cy='18' r='2.2' fill='rgba(130,53,48,0.14)'/%3E%3Ccircle cx='280' cy='18' r='1.3' fill='rgba(130,53,48,0.09)'/%3E%3Ccircle cx='12' cy='205' r='1.6' fill='rgba(130,53,48,0.10)'/%3E%3Ccircle cx='150' cy='216' r='1.4' fill='rgba(130,53,48,0.08)'/%3E%3C/svg%3E");
}
.service-item:nth-child(6) .service-visual::after {
  width: 28%;
  height: 36%;
  top: 68%;
  left: 30%;
  transform: translate(-50%, -50%) rotate(12deg);
  border-radius: 40% 60% 54% 46% / 50% 50% 50% 50%;
}

.service-item:nth-child(7) .service-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 225'%3E%3Cellipse cx='88' cy='112' rx='54' ry='40' fill='rgba(130,53,48,0.065)' transform='rotate(10 88 112)'/%3E%3Cellipse cx='112' cy='132' rx='40' ry='30' fill='rgba(130,53,48,0.055)' transform='rotate(-18 112 132)'/%3E%3Cellipse cx='65' cy='130' rx='30' ry='23' fill='rgba(130,53,48,0.045)' transform='rotate(28 65 130)'/%3E%3Cellipse cx='95' cy='90' rx='24' ry='18' fill='rgba(130,53,48,0.04)' transform='rotate(-6 95 90)'/%3E%3Cpath d='M 240 14 A 62 50 0 0 1 295 72' stroke='rgba(130,53,48,0.09)' stroke-width='1.1' fill='none'/%3E%3Cpath d='M 18 205 Q 158 115 285 22' stroke='rgba(130,53,48,0.065)' stroke-width='1' fill='none' stroke-dasharray='5 8'/%3E%3Ccircle cx='258' cy='16' r='2.2' fill='rgba(130,53,48,0.14)'/%3E%3Ccircle cx='270' cy='16' r='1.3' fill='rgba(130,53,48,0.09)'/%3E%3Ccircle cx='290' cy='112' r='1.6' fill='rgba(130,53,48,0.10)'/%3E%3Ccircle cx='14' cy='208' r='1.4' fill='rgba(130,53,48,0.08)'/%3E%3C/svg%3E");
}
.service-item:nth-child(7) .service-visual::after {
  width: 31%;
  height: 34%;
  top: 26%;
  left: 74%;
  transform: translate(-50%, -50%) rotate(-22deg);
  border-radius: 62% 38% 46% 54% / 44% 56% 44% 56%;
}

.service-item:nth-child(8) .service-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 225'%3E%3Cellipse cx='150' cy='72' rx='56' ry='38' fill='rgba(130,53,48,0.07)' transform='rotate(-10 150 72)'/%3E%3Cellipse cx='175' cy='90' rx='42' ry='30' fill='rgba(130,53,48,0.055)' transform='rotate(16 175 90)'/%3E%3Cellipse cx='125' cy='88' rx='34' ry='26' fill='rgba(130,53,48,0.05)' transform='rotate(-24 125 88)'/%3E%3Cellipse cx='62' cy='168' rx='28' ry='22' fill='rgba(130,53,48,0.055)' transform='rotate(8 62 168)'/%3E%3Cpath d='M 258 208 A 55 44 0 0 0 298 158' stroke='rgba(130,53,48,0.09)' stroke-width='1.1' fill='none'/%3E%3Cpath d='M 15 188 Q 152 105 285 25' stroke='rgba(130,53,48,0.065)' stroke-width='1' fill='none' stroke-dasharray='5 8'/%3E%3Ccircle cx='150' cy='8' r='2.2' fill='rgba(130,53,48,0.14)'/%3E%3Ccircle cx='138' cy='8' r='1.3' fill='rgba(130,53,48,0.09)'/%3E%3Ccircle cx='12' cy='208' r='1.6' fill='rgba(130,53,48,0.10)'/%3E%3Ccircle cx='292' cy='60' r='1.4' fill='rgba(130,53,48,0.08)'/%3E%3C/svg%3E");
}
.service-item:nth-child(8) .service-visual::after {
  width: 30%;
  height: 33%;
  top: 72%;
  left: 68%;
  transform: translate(-50%, -50%) rotate(14deg);
  border-radius: 50% 50% 58% 42% / 46% 54% 46% 54%;
}

@media (hover: hover) {
  .service-item:hover .service-visual {
    transform: scale(1.03);
  }
  .service-item:hover .service-visual::before {
    opacity: 0.72;
  }
  .service-item:nth-child(2):hover .service-visual::after {
    transform: translate(-50%, -50%) rotate(26deg) scale(1.08);
  }
  .service-item:nth-child(3):hover .service-visual::after {
    transform: translate(-50%, -50%) rotate(-28deg) scale(1.08);
  }
  .service-item:nth-child(4):hover .service-visual::after {
    transform: translate(-50%, -50%) rotate(32deg) scale(1.08);
  }
  .service-item:nth-child(5):hover .service-visual::after {
    transform: translate(-50%, -50%) rotate(-24deg) scale(1.08);
  }
  .service-item:nth-child(6):hover .service-visual::after {
    transform: translate(-50%, -50%) rotate(20deg) scale(1.08);
  }
  .service-item:nth-child(7):hover .service-visual::after {
    transform: translate(-50%, -50%) rotate(-30deg) scale(1.08);
  }
  .service-item:nth-child(8):hover .service-visual::after {
    transform: translate(-50%, -50%) rotate(22deg) scale(1.08);
  }
}

.service-illustration {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 240px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(130, 53, 48, 0.08));
  opacity: 0;
  transform: scale(0.92);
  transition:
    filter 0.4s ease,
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item.is-visible .service-illustration {
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) {
  .service-item:hover .service-illustration {
    filter: drop-shadow(0 12px 32px rgba(130, 53, 48, 0.14));
  }
}

.service-card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--c-bg);
  border-radius: 20px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(130, 53, 48, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 4px 16px rgba(130, 53, 48, 0.04);
  transition:
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

@media (hover: hover) {
  .service-item:hover .service-card {
    border-color: rgba(130, 53, 48, 0.14);
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.03),
      0 8px 32px rgba(130, 53, 48, 0.08);
    transform: translateY(-2px);
  }
}

.service-card__number,
.service-card__title,
.service-card__desc,
.service-card__tags {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item.is-visible .service-card__number {
  opacity: 0.65;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.service-item.is-visible .service-card__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}
.service-item.is-visible .service-card__desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}
.service-item.is-visible .service-card__tags {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

[dir='rtl'] .service-card {
  direction: rtl;
  text-align: right;
}

.service-card__number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-brand);
  opacity: 0.65;
  margin-bottom: 9px;
}
.service-card__number::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--c-brand);
  opacity: 0.4;
  display: block;
  flex-shrink: 0;
}
[dir='rtl'] .service-card__number {
  flex-direction: row-reverse;
  letter-spacing: 0;
}
[dir='rtl'] .service-card__number::before {
  order: 1;
}

.service-card__title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  color: var(--c-text);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
[dir='rtl'] .service-card__title {
  letter-spacing: 0;
  line-height: 1.3;
}

.service-card__desc {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(0.865rem, 0.95vw, 0.925rem);
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
[dir='rtl'] .service-card__desc {
  line-height: 1.85;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.service-card__tags li {
  font-family: 'Cairo', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-brand);
  background: var(--c-brand-tint);
  border: 1px solid rgba(130, 53, 48, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  cursor: default;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .service-card__tags li:hover {
    background: rgba(130, 53, 48, 0.12);
    border-color: rgba(130, 53, 48, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(130, 53, 48, 0.1);
  }
}

@media (max-width: 820px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: clamp(40px, 7vw, 64px);
  }
  .service-item:nth-child(even) .service-visual,
  .service-item:nth-child(even) .service-card {
    order: unset;
  }
  .service-visual {
    aspect-ratio: 16 / 10;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  .service-illustration {
    max-width: clamp(280px, 70vw, 360px);
    max-height: clamp(220px, 55vw, 280px);
    width: 100%;
    height: auto;
  }
  .services-connector-svg {
    display: none;
  }
}
@media (max-width: 480px) {
  .service-visual {
    aspect-ratio: 4 / 3;
  }
  .service-illustration {
    max-width: clamp(220px, 75vw, 300px);
    max-height: clamp(180px, 60vw, 240px);
  }
  .service-card__title {
    font-size: 1.1rem;
  }
}

/* 
─────────────────────────────────────────────────────────────────────────────
5. |WHY
───────────────────────────────────────────────────────────────────────────── 
*/

.why-section {
  padding: clamp(32px, 4vw, 56px) 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 50%, var(--c-bg) 100%);
  position: relative;
  overflow: hidden;
}

.why-bg-shape {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(130, 53, 48, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

[dir='rtl'] .why-bg-shape {
  right: auto;
  left: -15%;
}

/* ── Header ── */
.why-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(20px, 5vw, 60px);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.why-header .section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.why-header .section-subtitle {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

/* ── Stats Row ── */
.why-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 16px);
  max-width: 900px;
  margin: 0 auto clamp(20px, 3vw, 32px);
  padding: 0 clamp(20px, 5vw, 60px);
}

.why-stat {
  flex: 1 1 180px;
  max-width: 200px;
  min-width: 160px;
  text-align: center;
  padding: clamp(12px, 1.5vw, 18px) clamp(16px, 2vw, 24px);
  background: var(--c-bg);
  border-radius: 16px;
  border: 1px solid rgba(130, 53, 48, 0.08);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.02),
    0 4px 16px rgba(130, 53, 48, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.why-stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .why-stat:hover {
    border-color: rgba(130, 53, 48, 0.15);
    box-shadow:
      0 2px 6px rgba(0, 0, 0, 0.03),
      0 12px 48px rgba(130, 53, 48, 0.08);
  }
}

.why-stat__number {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--c-brand);
  line-height: 1;
  display: inline;
}

.why-stat__plus {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--c-brand);
  opacity: 0.7;
}

.why-stat__label {
  display: block;
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 500;
  color: var(--c-text-2);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Features Grid ── */
.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
  max-width: 1100px;
  margin: 0 auto clamp(16px, 2vw, 24px);
  padding: 0 clamp(20px, 5vw, 60px);
}

.why-feature {
  padding: clamp(14px, 1.5vw, 20px) clamp(12px, 1.5vw, 18px);
  background: var(--c-bg);
  border-radius: 16px;
  border: 1px solid rgba(130, 53, 48, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 140px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.why-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .why-feature:hover {
    border-color: rgba(130, 53, 48, 0.12);
    box-shadow: 0 4px 24px rgba(130, 53, 48, 0.06);
  }
}

.why-feature__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(130, 53, 48, 0.08) 0%, rgba(184, 82, 76, 0.12) 100%);
  border-radius: 12px;
  color: var(--c-brand);
  font-size: 1.1rem;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease;
}

@media (hover: hover) {
  .why-feature:hover .why-feature__icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, rgba(130, 53, 48, 0.12) 0%, rgba(184, 82, 76, 0.18) 100%);
  }
}

.why-feature__title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-feature__desc {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(0.75rem, 0.85vw, 0.8rem);
  color: var(--c-text-2);
  line-height: 1.65;
}

[dir='rtl'] .why-feature__desc {
  line-height: 1.85;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 400px;
  }

  .why-stat {
    flex: unset;
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 16px 12px;
    min-height: 90px;
    text-align: center;
    box-sizing: border-box;
  }

  .why-stat__number,
  .why-stat__plus {
    display: inline;
    vertical-align: baseline;
  }

  .why-stat__number {
    font-size: 1.75rem;
  }

  .why-stat__plus {
    font-size: 1.1rem;
  }

  .why-stat__label {
    display: block;
    font-size: 0.6rem;
    margin-top: 6px;
  }

  .why-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 400px;
  }

  .why-feature {
    min-height: auto;
    padding: 12px 10px;
  }

  .why-feature__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .why-feature__title {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .why-feature__desc {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .why-trust__text {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
  }

  [dir='rtl'] .why-trust__text {
    flex-direction: column;
  }
}

/* 
─────────────────────────────────────────────────────────────────────────────
6. |REVIEWS
─────────────────────────────────────────────────────────────────────────────

/* ── Section shell ───────────────────────────────────────────────────────── */
.reviews {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 80px);
  background: var(--c-bg);
  position: relative;
  overflow-x: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(130, 53, 48, 0.1), transparent);
  pointer-events: none;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.reviews-header {
  padding: 0 clamp(20px, 5vw, 60px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

/* ── Slider wrapper ──────────────────────────────── */
.reviews-slider-wrap {
  position: relative; /* nav pill is absolute-to this */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  padding-bottom: 72px; /* room for the nav pill */
}

/* ── Swiper ──────────────────────────────────────────────────────────────── */
.reviews-swiper {
  overflow: visible !important; /* override Swiper's default overflow:hidden */
}

/* ── Slide sizing ────────────────────────────────────────────────────────── */
.reviews-swiper .swiper-slide {
  width: clamp(220px, 24vw, 270px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reviews-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.reviews-swiper .swiper-slide-prev,
.reviews-swiper .swiper-slide-next {
  opacity: 0.55;
  transform: scale(0.91);
  z-index: 1;
}

.reviews-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
  opacity: 0;
  pointer-events: none;
}

/* ── Card ────────────────────────────────────────────────────────────────── */
.review-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: var(--c-bg-alt);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 6px 20px rgba(130, 53, 48, 0.05);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-swiper .swiper-slide-active .review-card {
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.05),
    0 20px 56px rgba(130, 53, 48, 0.13),
    0 0 0 1.5px rgba(130, 53, 48, 0.15);
}

/* ── Video wrap ──────────────────────────────────────────────────────────── */
.review-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: linear-gradient(160deg, #f0e9e8 0%, #ddd0ce 100%);
}

.review-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
  transition: transform 0.5s ease;
  will-change: transform;
  pointer-events: none;
}

@media (hover: hover) {
  .swiper-slide-active .review-card:hover .review-video {
    transform: scale(1.03);
  }
}

/* ── Client info overlay (bottom gradient) ───────────────────────────────── */
.review-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 80px 16px 16px;
  background: linear-gradient(to top, rgba(6, 1, 1, 0.88) 0%, rgba(6, 1, 1, 0.48) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
  pointer-events: none;
}

.review-client {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}

.review-business {
  display: block;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Play / Pause button ─────────────────────────────────────────────────── */
.review-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 60px;
  height: 60px;
  border-radius: 50%;

  /* Frosted glass look */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  border: none;
  cursor: pointer;
  color: var(--c-brand);
  font-size: 1.05rem;

  /* Perfect centering via flex */
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    opacity 0.3s ease;
  will-change: transform;
}

.review-play-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  translate: 2px 0;
}

.review-play-btn.is-playing i {
  translate: 0 0;
}

.review-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  animation: reviewRipple 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes reviewRipple {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@media (hover: hover) {
  .review-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
  }
}

.review-play-btn.is-playing {
  background: rgba(10, 3, 3, 0.55);
  color: #fff;
}

.review-play-btn.is-playing i::before {
  content: '\f04c';
}

.review-video-wrap:not(:hover) .review-play-btn.is-playing {
  opacity: 0;
  pointer-events: none;
}

/* ── Mute button ─────────────────────────────────────────────────────────── */
.review-mute-btn {
  position: absolute;
  bottom: 52px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 0.75rem;
  z-index: 4;

  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease;
}

[dir='rtl'] .review-mute-btn {
  right: auto;
  left: 12px;
}

.review-mute-btn.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

@media (hover: hover) {
  .review-mute-btn:hover {
    background: rgba(0, 0, 0, 0.72);
  }
}

/* ── Progress bar  ─────────── */
.review-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-brand-light) 100%);
  z-index: 5;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Nav pill ────────────────────────────────────────────────────────────── */
.reviews-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: fit-content;
  margin: 0 auto;

  padding: 8px 18px;
  background: var(--c-bg);
  border-radius: 50px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 2px 12px rgba(0, 0, 0, 0.07),
    0 0 0 1px rgba(130, 53, 48, 0.07);
  white-space: nowrap;
}

.reviews-nav-btn {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(130, 53, 48, 0.2);
  background: transparent;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--c-brand);
  font-size: 0.75rem;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.reviews-nav-btn:hover {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: #fff;
  transform: scale(1.08);
}

.reviews-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.reviews-nav-btn:disabled:hover {
  background: transparent;
  border-color: rgba(130, 53, 48, 0.2);
  color: var(--c-brand);
  transform: none;
}

[dir='rtl'] .reviews-prev i::before {
  content: '\f054';
}
[dir='rtl'] .reviews-next i::before {
  content: '\f053';
}

/* ── Pagination (inside the pill) ────────────────────────────────────────── */
.reviews-pagination {
  display: flex !important;
  align-items: center;
  gap: 6px;
  position: static !important;
  bottom: auto !important;
  width: auto !important;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(130, 53, 48, 0.2);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  margin: 0 !important;
  transition:
    background 0.25s ease,
    width 0.25s ease,
    border-radius 0.25s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--c-brand);
  width: 22px;
  border-radius: 4px;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .reviews-swiper .swiper-slide {
    width: clamp(200px, 38vw, 250px);
  }
}

@media (max-width: 600px) {
  .reviews {
    padding: clamp(40px, 7vw, 64px) 0 clamp(36px, 5vw, 56px);
  }

  .reviews-slider-wrap {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 64px;
  }

  .reviews-swiper .swiper-slide {
    width: clamp(180px, 58vw, 230px);
  }

  .review-play-btn {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }

  .review-play-btn::before {
    inset: -6px;
  }

  .reviews-nav {
    gap: 10px;
    padding: 7px 14px;
  }

  .reviews-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .reviews-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .reviews-pagination .swiper-pagination-bullet-active {
    width: 18px;
  }

  .reviews-cta {
    margin-top: 28px;
  }
}

@media (max-width: 380px) {
  .reviews-swiper .swiper-slide {
    width: clamp(165px, 70vw, 200px);
  }

  .reviews-nav {
    gap: 8px;
    padding: 6px 10px;
  }
}
