:root {
      --ww-blue: #2d62ff;
      --ww-blue-dark: #1b3bbf;
      --ww-blue-light: #e8eeff;
      --ww-soft-gray: #f3f6fa; /* اللون الثالث الهادئ */
      --ww-text-main: #111827;
      --ww-text-muted: #6b7280;
      --ww-bg: #ffffff;
      --ww-radius: 18px;
      --ww-shadow-soft: 0 14px 30px rgba(15,23,42,0.10);
      --ww-shadow-strong: 0 18px 45px rgba(15,23,42,0.18);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--ww-bg);
      color: var(--ww-text-main);
      line-height: 1.6;
    }

    .lang-switcher {
      position: fixed;
      top: 16px;
      right: 16px;
      z-index: 60;
      display: inline-flex;
      background: #ffffff;
      border: 1px solid rgba(148,163,184,0.5);
      border-radius: 999px;
      box-shadow: 0 12px 30px rgba(15,23,42,0.18);
      overflow: hidden;
    }

    .lang-btn {
      padding: 8px 12px;
      border: none;
      background: transparent;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--ww-text-muted);
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .lang-btn.is-active {
      background: linear-gradient(130deg, var(--ww-blue), var(--ww-blue-dark));
      color: #ffffff;
    }

    body.lang-ar {
      direction: rtl;
    }

    body.lang-ar .hero,
    body.lang-ar .section {
      text-align: right;
    }

    body.lang-ar .section-header.center,
    body.lang-ar .hero .section-header.center {
      text-align: center;
    }

    body.lang-ar .hero-actions,
    body.lang-ar .canvas-actions,
    body.lang-ar .why-grid,
    body.lang-ar .services-grid,
    body.lang-ar .impact-grid,
    body.lang-ar .process-grid {
      justify-content: flex-start;
    }

    body.lang-ar .case-card,
    body.lang-ar .canvas-inner,
    body.lang-ar .genai-summary-item {
      direction: rtl;
    }

    body.lang-ar .chat-widget {
      right: auto;
      left: 18px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ================= HEADER ================= */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,0.92);
      border-bottom: 1px solid rgba(148,163,184,0.35);
    }

    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 10px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .header-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .header-logo {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #ffffff, var(--ww-blue));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 800;
      font-size: 1.1rem;
      box-shadow: 0 10px 26px rgba(45,98,255,0.5);
    }

    .header-title {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .header-title span:first-child {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 700;
      color: var(--ww-blue-dark);
    }

    .header-title span:last-child {
      font-size: 0.78rem;
      color: var(--ww-text-muted);
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .header-nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      list-style: none;
      font-size: 0.88rem;
    }

    .header-nav-links a {
      position: relative;
      padding: 4px 0;
      font-weight: 500;
      color: #111827;
    }

    .header-nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--ww-blue), var(--ww-blue-dark));
      transition: width 0.18s ease;
    }

    .header-nav-links a:hover::after {
      width: 100%;
    }

    .header-cta {
      padding: 8px 16px;
      border-radius: 999px;
      background: linear-gradient(130deg, var(--ww-blue), var(--ww-blue-dark));
      color: #ffffff;
      font-size: 0.86rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 14px 32px rgba(45,98,255,0.55);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .header-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 42px rgba(45,98,255,0.65);
    }

    .nav-toggle {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.7);
      background: rgba(255,255,255,0.98);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: #111827;
      position: relative;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: #111827;
    }

    .nav-toggle span::before { top: -5px; }
    .nav-toggle span::after  { top: 5px; }

    /* ================= UTILITIES ================= */

    .section {
      padding: 80px 6%;
    }

    .section-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-header {
      margin-bottom: 32px;
    }

    .section-header.center {
      text-align: center;
    }

    .section-kicker {
      font-size: 1.2rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ww-blue-dark);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .section-subtitle {
      font-size: 0.96rem;
      color: var(--ww-text-muted);
      max-width: 620px;
    }

    .section-header.center .section-subtitle {
      margin-left: auto;
      margin-right: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 22px;
      border-radius: 999px;
      border: none;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    }

    .btn-primary {
      background: linear-gradient(130deg, var(--ww-blue), var(--ww-blue-dark));
      color: #ffffff;
      box-shadow: 0 14px 32px rgba(45,98,255,0.55);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 42px rgba(45,98,255,0.7);
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--ww-blue-dark);
      border: 1px solid rgba(148,163,184,0.6);
    }

    .btn-secondary:hover {
      background: var(--ww-soft-gray);
    }

    .card {
      background: #ffffff;
      border-radius: var(--ww-radius);
      padding: 20px 20px 18px;
      border: 1px solid rgba(148,163,184,0.25);
      box-shadow: var(--ww-shadow-soft);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: var(--ww-shadow-strong);
      border-color: rgba(45,98,255,0.7);
    }

    /* ================= HERO ================= */

    .hero {
      padding: 110px 6% 80px;
      background:
        radial-gradient(circle at top right, rgba(45,98,255,0.14), transparent 55%),
        radial-gradient(circle at bottom left, rgba(45,98,255,0.08), transparent 60%),
        #ffffff;
    }

    .hero-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 48px;
      align-items: center;
    }

    .hero-eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ww-blue-dark);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .hero-title {
      font-size: 3rem;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .hero-title span {
      color: var(--ww-blue-dark);
    }

    .hero-subtitle {
      font-size: 1.02rem;
      color: var(--ww-text-muted);
      max-width: 520px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 0; /* remove extra gap since we removed hero-meta */
    }

    .hero-visual {
      position: relative;
      min-height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-orbit {
      position: absolute;
      border-radius: 999px;
      border: 1px solid rgba(45,98,255,0.4);
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.96), rgba(45,98,255,0.12));
      box-shadow: 0 18px 45px rgba(45,98,255,0.5);
      animation: orbitFloat 9s ease-in-out infinite alternate; /* FIXED */
    }

    .hero-orbit-1 { width: 260px; height: 260px; }
    .hero-orbit-2 { width: 190px; height: 190px; animation-delay: 0.9s; }
    .hero-orbit-3 { width: 120px; height: 120px; animation-delay: 1.6s; }

    .hero-chip {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(148,163,184,0.5);
      box-shadow: 0 10px 26px rgba(15,23,42,0.16);
      font-size: 0.8rem;
      color: var(--ww-text-muted);
      max-width: 200px;
    }

    .hero-chip-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--ww-blue-dark);
    }

    /* positions of chips around the circle */
    .hero-chip-1 {
      top: 18%;
      right: 0;
      transform: translateX(20%);
    }

    .hero-chip-2 {
      bottom: 14%;
      right: 8%;
    }
    .hero-chip-3 {
      bottom: 30%;
      left: 20%;
    }
    .hero-chip-4 {
      top: 20%;
      left: 15%;
    }
    @keyframes orbitFloat {
      0% { transform: translate3d(0,0,0) scale(0.97); }
      50% { transform: translate3d(-4px,-6px,0) scale(1.02); }
      100% { transform: translate3d(3px,4px,0) scale(0.99); }
    }

    /* ================= WHY WE WILL ================= */

    .section-why {
      background: var(--ww-soft-gray);
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(148,163,184,0.25);
      border-bottom: 1px solid rgba(148,163,184,0.25);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .why-card h3 {
      font-size: 1.02rem;
      margin-bottom: 6px;
    }

    .why-card p {
      font-size: 0.9rem;
      color: var(--ww-text-muted);
    }

    /* ================= SERVICES ================= */

    .section-services {
      background: #ffffff;
    }

    .section-genai {
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
      border-top: 1px solid rgba(148,163,184,0.18);
      border-bottom: 1px solid rgba(148,163,184,0.18);
    }

    .genai-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
      gap: 28px;
      align-items: stretch;
    }

    .genai-feature-card,
    .genai-summary-card {
      border-radius: 28px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      padding: 34px;
    }

    .genai-feature-card h3,
    .genai-summary-card h3 {
      font-size: clamp(1.5rem, 2.8vw, 2.15rem);
      line-height: 1.15;
      margin-bottom: 18px;
      color: #1f2937;
    }

    .genai-feature-card h3 {
      max-width: 14ch;
    }

    .genai-feature-card p {
      font-size: 1rem;
      color: #64748b;
      margin-bottom: 22px;
      max-width: 34ch;
    }

    .genai-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .genai-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      color: #64748b;
      font-weight: 500;
      background: rgba(255, 255, 255, 0.82);
    }

    .genai-chip::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, #16a34a, #2563eb);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    }

    .genai-summary-card h3 {
      font-size: 1.35rem;
      margin-bottom: 10px;
      color: #0f172a;
    }

    .genai-summary-list {
      display: grid;
    }

    .genai-summary-item {
      display: grid;
      grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1fr);
      gap: 18px;
      padding: 18px 0;
      border-top: 1px solid rgba(203, 213, 225, 0.7);
      color: #64748b;
      font-size: 1rem;
    }

    .genai-summary-item:first-child {
      border-top: 0;
      padding-top: 12px;
    }

    .genai-summary-item strong {
      color: #2d62ff;
      font-size: 1.05rem;
    }

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

    .service-card h3 {
      font-size: 0.98rem;
      margin-bottom: 6px;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--ww-text-muted);
    }

    /* ================= QUALITY CANVAS ================= */

    .section-canvas {
      background: #ffffff;
    }

    .canvas-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

    .canvas-list {
      list-style: none;
      margin: 18px 0 22px;
      font-size: 0.9rem;
      color: var(--ww-text-muted);
    }

    .canvas-list li {
      margin-bottom: 6px;
      position: relative;
      padding-left: 18px;
    }

    .canvas-list li::before {
      content: "•";
      position: absolute;
      left: 4px;
      top: 0;
      color: var(--ww-blue-dark);
    }

    .canvas-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .canvas-card {
      border-radius: var(--ww-radius);
      padding: 18px 18px 16px;
      background: var(--ww-soft-gray);
      border: 1px solid rgba(148,163,184,0.45);
      box-shadow: var(--ww-shadow-soft);
      font-size: 0.9rem;
    }

    .canvas-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
    }

    .canvas-cell {
      background: #ffffff;
      border-radius: 14px;
      padding: 10px;
      border: 1px solid rgba(148,163,184,0.4);
    }

    .canvas-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ww-blue-dark);
      margin-bottom: 4px;
    }

    .canvas-note {
      font-size: 0.82rem;
      color: var(--ww-text-muted);
    }

    /* ================= IMPACT ================= */

    .section-impact {
      background: var(--ww-soft-gray);
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .impact-card {
      border-radius: var(--ww-radius);
      border: 1px solid rgba(148,163,184,0.3);
      background: #ffffff;
      box-shadow: var(--ww-shadow-soft);
      padding: 18px 18px 16px;
      font-size: 0.9rem;
    }

    .impact-value {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 4px;
    }

    .impact-number {
      font-size: 1.8rem;
      font-weight: 700;
    }

    .impact-symbol {
      font-size: 1.4rem;
      color: #e11d48;
      font-weight: 600;
    }

    .impact-symbol.up {
      color: #16a34a;
    }

    .impact-label {
      font-size: 0.92rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .impact-note {
      font-size: 0.86rem;
      color: var(--ww-text-muted);
    }

    /* ================= HOW WE WORK ================= */

    .section-process {
      background: #ffffff;
      border-top: 1px solid rgba(148,163,184,0.25);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }

    .process-step {
      background: var(--ww-soft-gray);
      border-radius: var(--ww-radius);
      padding: 18px 16px 16px;
      border: 1px solid rgba(148,163,184,0.3);
      box-shadow: var(--ww-shadow-soft);
      font-size: 0.9rem;
    }

    .step-badge {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: rgba(45,98,255,0.08);
      color: var(--ww-blue-dark);
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .process-step h3 {
      font-size: 0.98rem;
      margin-bottom: 4px;
    }

    .process-step p {
      font-size: 0.86rem;
      color: var(--ww-text-muted);
    }

        /* ================= TEAM ================= */

        .section-team {
      background: #ffffff;
    }

    .team-shell {
      position: relative;
      padding: 22px 46px;
      border-radius: var(--ww-radius);
      background: linear-gradient(135deg, var(--ww-soft-gray), #ffffff);
      box-shadow: var(--ww-shadow-soft);
      overflow: hidden;
    }

    .team-scroller {
      overflow: hidden;
    }

    .team-row {
      display: flex;
      gap: 16px;
      padding: 8px 4px;
    }

    .team-card {
  flex: 0 0 auto;
  width: 190px;
  position: relative;
  padding: 12px 8px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: default;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-card::after {
  /* ظل بسيط تحت الدائرة */
  content: "";
  position: absolute;
  bottom: 6px;
  left: 15%;
  width: 70%;
  height: 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  filter: blur(4px);
  z-index: -1;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

    .team-tagline {
      font-size: 0.78rem;
      color: var(--ww-blue-dark);
      font-weight: 500;
    }
    .team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, var(--ww-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 12px 28px rgba(45, 98, 255, 0.55);
  flex-shrink: 0;
  overflow: hidden; /* لو حبيت تحط صورة حقيقية لاحقاً */
}
.team-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.team-role {
  font-size: 0.78rem;
  color: var(--ww-text-muted);
  max-width: 150px;
}


    .team-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.6);
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--ww-blue-dark);
      box-shadow: 0 8px 22px rgba(15,23,42,0.18);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .team-nav:hover {
      transform: translateY(-50%) scale(1.06);
      box-shadow: 0 12px 30px rgba(15,23,42,0.25);
      background: #ffffff;
    }

    .team-nav-prev { left: 10px; }
    .team-nav-next { right: 10px; }

    /* ================= SUCCESS STORIES ================= */

    .section-success {
      background: #ffffff;
    }

    .success-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
    }

    .case-card {
      display: grid;
      grid-template-columns: 0.9fr 3.1fr;
      gap: 20px;
      background: #ffffff;
      border-radius: 20px;
      padding: 22px 22px 24px;
      border: 1px solid rgba(148, 163, 184, 0.28);
      box-shadow: 0 18px 50px rgba(15,23,42,0.06);
      position: relative;
      overflow: hidden;
    }

    .case-side {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .case-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .case-line {
      width: 2px;
      height: 38px;
      background: linear-gradient(to bottom, rgba(148,163,184,0.5), rgba(148,163,184,0.1));
    }

    .case-node {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #e5edff;
      border: 2px solid rgba(74,123,255,0.45);
    }

    .case-node.primary {
      background: #fff7cc;
      border-color: rgba(250,204,21,0.8);
    }

    .case-icon {
      font-size: 1.4rem;
    }

    .case-node.avatar {
      background: #ffffff;
    }

    .avatar-circle {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: #f5f7fc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ww-blue-dark);
      font-weight: 700;
    }

    .case-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }

    .case-badge {
      font-size: 0.8rem;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: #f9fafb;
      color: var(--ww-text-main);
    }

    .case-badge.main {
      border-color: rgba(250,204,21,0.9);
      background: #fffceb;
    }

    .case-badge.alt {
      border-color: rgba(148, 163, 184, 0.7);
    }

    .case-content {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .case-title {
      font-size: 1.08rem;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .case-block h4 {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ww-blue-dark);
      margin-bottom: 4px;
    }

    .case-block p {
      font-size: 0.94rem;
      color: var(--ww-text-muted);
      line-height: 1.7;
    }

    .quote {
      position: relative;
      padding-left: 0;
    }

    .quote-mark {
      color: rgba(148,163,184,0.9);
      font-size: 1.3rem;
      margin-right: 2px;
    }

    .quote-mark.end {
      margin-left: 2px;
    }

    .text-brand {
      color: var(--ww-blue-dark);
      font-weight: 600;
    }

    .success-cta {
      margin-top: 30px;
      padding: 20px 22px;
      border-radius: 18px;
      background: linear-gradient(120deg, rgba(74,123,255,0.12), rgba(74,123,255,0.04));
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      font-size: 0.95rem;
    }

    /* ================= CLIENTS ================= */

    .section-clients {
      background: var(--ww-soft-gray);
    }

    .clients-shell {
      position: relative;
      padding: 22px 46px;
      border-radius: var(--ww-radius);
      background: linear-gradient(135deg, var(--ww-soft-gray), #ffffff);
      box-shadow: var(--ww-shadow-soft);
      overflow: hidden;
    }

    .clients-scroller {
      overflow: hidden;
    }

    .clients-row {
      display: flex;
      gap: 16px;
      padding: 8px 4px;
    }

    .client-logo {
      flex: 0 0 auto;
      min-width: 150px;
      max-width: 190px;
      border-radius: var(--ww-radius);
      background: #ffffff;
      border: 1px solid rgba(148,163,184,0.35);
      box-shadow: 0 12px 30px rgba(15,23,42,0.12);
      padding: 12px 12px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .client-logo img {
      max-height: 60px;
      object-fit: contain;
      filter: grayscale(50%);
      opacity: 0.85;
      transition: filter 0.18s ease, opacity 0.18s ease;
    }

    .client-logo span {
      font-size: 0.78rem;
      color: var(--ww-text-muted);
      font-weight: 500;
    }

    .client-logo:hover {
      transform: translateY(-3px);
      box-shadow: var(--ww-shadow-strong);
      border-color: rgba(45,98,255,0.8);
      background: #ffffff;
    }

    .client-logo:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    .client-logo:hover span {
      color: var(--ww-blue-dark);
    }

    .clients-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.6);
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      color: var(--ww-blue-dark);
      box-shadow: 0 10px 24px rgba(15,23,42,0.18);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .clients-nav:hover {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 14px 32px rgba(15,23,42,0.25);
      background: #ffffff;
    }

    .clients-nav-prev { left: 10px; }
    .clients-nav-next { right: 10px; }

    /* ======= READ ============== */
/* KNOWLEDGE / BLOG TOPICS SECTION */

.section-knowledge {
  background: #ffffff;
  border-top: 1px solid rgba(148,163,184,0.25);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.knowledge-card {
  position: relative;
  border-radius: var(--ww-radius);
  padding: 18px 18px 16px;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.3);
  box-shadow: var(--ww-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
              background 0.18s ease;
}

.knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ww-shadow-strong);
  border-color: rgba(45,98,255,0.8);
  background: linear-gradient(135deg, #ffffff, var(--ww-soft-gray));
}

.knowledge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ww-blue-dark);
  background: rgba(45,98,255,0.06);
}

.knowledge-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
}

.knowledge-card p {
  font-size: 0.9rem;
  color: var(--ww-text-muted);
  flex: 1;
}

.knowledge-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ww-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.knowledge-link span {
  font-size: 0.9rem;
}

/* Responsive */

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

@media (max-width: 640px) {
  .knowledge-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

    /* ================= CONTACT ================= */

    .section-contact {
      background: #ffffff;
      border-top: 1px solid rgba(148,163,184,0.25);
    }

    .contact-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-inner form {
      margin-top: 22px;
      display: grid;
      gap: 10px;
      text-align: left;
    }

    .contact-inner input,
    .contact-inner textarea {
      border-radius: 10px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 10px 12px;
      font-family: inherit;
      font-size: 0.95rem;
    }

    .contact-inner textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-inner button {
      border: none;
      margin-top: 4px;
      justify-content: center;
    }

    /* ================= FOOTER ================= */

   
    

    /* ================= CHAT WIDGET ================= */

    .chat-widget {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 60;
      font-size: 0.9rem;
    }

    .chat-toggle {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, var(--ww-blue), var(--ww-blue-dark));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      box-shadow: 0 18px 42px rgba(45,98,255,0.75);
      cursor: pointer;
    }

    .chat-panel {
      position: absolute;
      bottom: 66px;
      right: 0;
      width: 270px;
      border-radius: var(--ww-radius);
      background: #ffffff;
      border: 1px solid rgba(148,163,184,0.5);
      box-shadow: var(--ww-shadow-strong);
      padding: 14px 14px 12px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.lang-ar .chat-panel {
      right: auto;
      left: 0;
    }

    .chat-panel.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .chat-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .chat-panel-title {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .chat-panel-sub {
      font-size: 0.78rem;
      color: var(--ww-text-muted);
    }

    .chat-close {
      border: none;
      background: transparent;
      font-size: 1.1rem;
      cursor: pointer;
      color: var(--ww-text-muted);
    }

    .chat-panel textarea {
      width: 100%;
      min-height: 80px;
      max-height: 150px;
      border-radius: 10px;
      border: 1px solid rgba(148,163,184,0.7);
      padding: 8px 9px;
      font-family: inherit;
      font-size: 0.86rem;
      resize: vertical;
      margin-bottom: 8px;
    }

    .chat-actions {
      display: flex;
      gap: 8px;
    }

    .chat-btn {
      flex: 1;
      padding: 7px 8px;
      border-radius: 999px;
      border: none;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .chat-btn-wa {
      background: #22c55e;
      color: #ffffff;
    }

    .chat-btn-email {
      background: var(--ww-soft-gray);
      color: var(--ww-blue-dark);
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 960px) {
      .header-inner {
        padding-inline: 6%;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .header-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 56px;
        padding: 10px 6% 12px;
        background: rgba(248,250,252,0.98);
        border-bottom: 1px solid rgba(148,163,184,0.35);
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease, transform 0.15s ease;
      }

      .header-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .header-nav-links {
        flex-direction: column;
        width: 100%;
      }

      .header-cta {
        align-self: stretch;
        justify-content: center;
      }

      .hero-inner,
      .canvas-inner,
      .genai-layout {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 100px;
      }

      .hero-title {
        font-size: 2.4rem;
      }

      .hero-visual {
        min-height: 240px;
        margin-top: 4px;
      }

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

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

      .genai-feature-card,
      .genai-summary-card {
        padding: 24px;
      }

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

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

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

      .case-side {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
      }

      .case-timeline {
        flex-direction: row;
      }

      .case-line {
        width: 40px;
        height: 2px;
      }

      .clients-shell {
        padding-inline: 40px;
      }
    }

    @media (max-width: 640px) {
      .section,
      .hero {
        padding-inline: 6%;
      }

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

      .clients-shell {
        padding-inline: 32px;
      }

      .clients-nav {
        width: 30px;
        height: 30px;
      }

      .chat-widget {
        right: 14px;
        bottom: 14px;
      }

      .chat-panel {
        width: 250px;
      }
    }
