/* ================================================
   style.css — Wusul Main Styles
   ================================================ */

/* ── Base ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ws-font-body);
  color: var(--ws-text-body);
  background: var(--ws-bg-page);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  /* padding-top لأن الـ navbar فيكسد */
  padding-top: 10px;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════
   FIX 1 — NAVBAR: floating + rounded corners
   ══════════════════════════════════════════════ */
.ws-navbar {
  background: var(--ws-bg-white);
  top: 1rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  margin: 0 auto 1rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 18px 70px rgba(15, 23, 42, 0.08);
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: var(--ws-ease);
  max-width: 1240px;
}
.ws-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-nav {
  display: flex;
  align-items: left;
  gap: 0.4rem;
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
  }
}
/* FIX 3 — Logo image */
.ws-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ══════════════════════════════════════════════
   FIX 2 — NAV LINKS: gradient color on hover
   ══════════════════════════════════════════════ */
.ws-nav-link {
  font-family: var(--ws-font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ws-text-nav) !important;
  padding: 0.4rem 0.9rem !important;
  position: relative;
  transition: var(--ws-ease);
}

.ws-nav-link:hover,
.ws-nav-link.active {
  background: linear-gradient(90deg, #0ca7f2 0%, #16184c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-weight: 500;
}

.ws-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
   
.ws-btn-primary:hover {
  background: var(--ws-primary-hover);
  border-color: var(--ws-primary-hover);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
  color: #fff !important;
  text-decoration: none;
}

/* FIX 5 — Our Services: transparent */
.ws-btn-outline {
  background: transparent;
  color: var(--ws-text-dark) !important;
  border: 1.5px solid #d1d5db;
  border-radius: 15px;
  font-family: var(--ws-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
  transition: var(--ws-ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  height: 48px;
  width: 300px;

}
.ws-btn-outline:hover {
  border-color: var(--ws-primary);
  color: var(--ws-primary) !important;
  transform: translateY(-1px);
  text-decoration: none;
}

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.ws-hero {
  background: var(--ws-bg-page);
  padding: 3.5rem 0 3rem;
}

.ws-badge-pill {
  display: inline-block;
  background: var(--ws-primary-light);
  border: 1px solid var(--ws-primary-border);
  color: var(--ws-primary);
  font-family: var(--ws-font-body);
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1.4rem;
  font-weight: 590;
  
}
.ws-hero-h1{
  font-family: var(--ws-font-display);
  font-weight: bold;
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  color: var(--ws-text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
    line-height: 1.2;
  white-space: nowrap;

}
/* FIX 4 — Headline on one line */
.ws-hero-h2 {
  font-family: var(--ws-font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--ws-text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  text-align: center;
}
.ws-hero-h1--blue {
  color: var(--ws-primary);
  margin-bottom: 1.2rem;
}

.ws-hero-desc {
  font-family: var(--ws-font-body);
  font-size: 0.95rem;
  color: var(--ws-text-body);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.ws-hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ws-hero-btns .btn  {
text-align: center;
}
.ws-btn-primary {
    background: var(--ws-primary);
    color: #fff !important;
    border-radius: 15px;
    font-family: var(--ws-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.3rem;
    box-shadow: var(--ws-shadow-btn);
    transition: var(--ws-ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 300px;
}
.ws-book-btn{
     background: var(--ws-primary);
    color: #fff !important;
    border-radius: 15px;
    font-family: var(--ws-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.3rem;
    box-shadow: var(--ws-shadow-btn);
    transition: var(--ws-ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 220px;
}
/* ══════════════════════════════════════════════
   FIX 6 — STAT CARDS: blue background
   ══════════════════════════════════════════════ */
.ws-stats {
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
}

.ws-stat {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 1.4rem 0.75rem 1.2rem;
  text-align: center;
  transition: var(--ws-ease);
  border: 1px solid #BDD0F9;
  height: 160px;
}
.ws-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}


.ws-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
/* أيقونات تصير بيضاء */
.ws-stat svg path,
.ws-stat svg circle {
  stroke: #0ca7f2;
}

.ws-stat-num {
  font-family: var(--ws-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #0ca7f2;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ws-stat-lbl {
  font-family: var(--ws-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════
   FIX 7 — TRUSTED BY: image placeholder
   ══════════════════════════════════════════════ */
.ws-trusted {
  padding-top: 2rem;
  border-top: 1px solid var(--ws-border);
}

.ws-trusted-title {
  font-family: var(--ws-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ws-primary);
  margin-bottom: 1.2rem;
}

.ws-trusted-img {
  max-width: 620px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.ws-trusted-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ws-trusted-placeholder span {
  display: flex;
  align-items: center;
}

.ws-trusted-placeholder img {
  height: 32px; /* غيّر الحجم حسب اللوجوهات */
  width: auto;
  opacity: 0.75;
  filter: grayscale(1);
  transition: all 0.2s ease;
}

.ws-trusted-placeholder img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ── RESPONSIVE ─────────────────────────────── */

/* Tablet وما دون: navbar عادي */
@media (max-width: 991px) {
  .ws-navbar {
    margin: 0;
    border-radius: 0;
    position: sticky;
    top: 0;
  }
  body {
    padding-top: 0;
  }
}

/* موبايل */
@media (max-width: 767px) {
  .ws-hero-h1 {
    white-space: normal;
    font-size: 1.4rem;
  }
  .ws-hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .ws-hero-btns .btn {
    width: 200px;
  }
}

@media (max-width: 576px) {
  .ws-hero {
    padding: 2rem 0 2rem;
  }
  .ws-stat {
    padding: 1rem 0.4rem;
  }
  .ws-stat-num {
    font-size: 1.2rem;
  }
  .ws-stat-lbl {
    font-size: 0.68rem;
  }
}
/* ================================================
   METHODOLOGY SECTION
   ================================================ */

.ws-method {
  background: var(--ws-bg-page);
  padding: 5rem 0 4.5rem;
}

/* Header */
.ws-method__header {
  margin-bottom: 3rem;
}

.ws-method__title {
  font-family: var(--ws-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  color: var(--ws-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.ws-method__sub {
  font-family: var(--ws-font-body);
  font-size: 1rem;
  color: var(--ws-text-body);
  line-height: 1.6;
}

/* Grid — 3 columns على desktop */
.ws-method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

/* Card wrapper — يحتوي الرقم + الكارت + السهم */
.ws-mwrap {
  position: relative;
  min-height: 240px;
}

/* الرقم الكبير في الخلفية */
.ws-mnum {
  position: absolute;
  top: -15px;
  right: 14px;
  font-family: var(--ws-font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 7rem;
  color: #5c6b73;
  opacity: 0.35;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* الكارت — بالشكل المقطوع */
.ws-mcard {
  position: relative;
  z-index: 2;
  background: #ffffff;
  clip-path: url(#ws-card-shape);
  -webkit-clip-path: url(#ws-card-shape);
  padding: 32px 28px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 100%;
  min-height: 240px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  transition: var(--ws-ease);
}

.ws-mcard:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

/* الأيقونة */
.ws-micon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-primary);
  margin-bottom: 1rem;
}

.ws-micon svg {
  width: 34px;
  height: 34px;
}

/* عنوان الكارت */
.ws-mcard__title {
  font-family: var(--ws-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ws-text-dark);
  margin-bottom: 0.6rem;
}

/* نص الكارت */
.ws-mcard__body {
  font-family: var(--ws-font-body);
  font-size: 0.875rem;
  color: var(--ws-text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

/* السهم بين الكارتات */
.ws-marrow {
  position: absolute;
  top: 33%;
  left: 100%;
  width: 40px;
  height: 40px;
  z-index: 3;
  transform: translateX(-6px);
  color: #2563eb;
}

/* Responsive */
@media (max-width: 1024px) {
  .ws-method__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ws-marrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .ws-method__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ws-method {
    padding: 3rem 0 2.5rem;
  }
  .ws-mnum {
    font-size: 5rem;
  }
}


/* ================================================
   CTA SECTION
   ================================================ */

.ws-cta {
  background: var(--ws-bg-page);
  padding: 4rem 0;

}

/* الكارت الرئيسي */
.ws-cta__card {
  border-radius: 28px;
  background: linear-gradient(90deg, #0CA7F2 0%, #0CA7F2 45%, #16184C 100%);
  padding: 3.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  
}

/* Grid pattern على اليمين */
.ws-cta__grid-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

/* Content row */
.ws-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* اليسار */
.ws-cta__left {
  flex: 1;
}

.ws-cta__title {
  font-family: var(--ws-font-display);
  font-weight: bold;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #08111e;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.ws-cta__desc {
  font-family: var(--ws-font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 0;
}

/* اليمين — الزر */
.ws-cta__right {
  flex-shrink: 0;
}

.ws-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #4f88ff;
  color: #ffffff !important;
  border: none;
  border-radius: 999px;
  font-family: var(--ws-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.85rem;
  box-shadow: 0 18px 40px rgba(17, 66, 192, 0.22);
  transition: var(--ws-ease);
  text-decoration: none;
  white-space: nowrap;
}

.ws-cta__btn:hover {
  background: #629cff;
  transform: translateY(-2px);
  color: #ffffff !important;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
  .ws-cta__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .ws-cta__card {
    padding: 2rem 1.5rem;
  }
  .ws-cta__grid-overlay {
    width: 100%;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .ws-cta {
    padding: 3rem 0;
  }
}
/* ================================================
   FOOTER

   ================================================ */

.ws-footer {
  background: #0d1117;
  padding: 3.5rem 0 0;
}

/* ── Top row ──────────────────────────────────── */
.ws-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Brand */
.ws-footer__logo img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.ws-footer__tagline {
  font-family: var(--ws-font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 0;
}

/* Columns */
.ws-footer__heading {
  font-family: var(--ws-font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.ws-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-footer__links li {
  margin-bottom: 0.6rem;
}

.ws-footer__links a {
  font-family: var(--ws-font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--ws-ease);
}

.ws-footer__links a:hover {
  color: #0ca7f2;
}

/* ── Middle row ───────────────────────────────── */
.ws-footer__middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

/* Design Impact box */
.ws-footer__impact {
  margin-left: auto;
  max-width: 420px;
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.ws-footer__impact p {
  font-family: var(--ws-font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 0;
  
}

.ws-footer__impact-label {
  color: #0ca7f2;
  font-weight: 600;
}

/* Social */
.ws-footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem; 
  
}

.ws-footer__social-label {
  font-family: var(--ws-font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.ws-footer__social-icons {
  display: flex;
  gap: 0.6rem;
}

.ws-footer__social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--ws-ease);
}

.ws-footer__social-icons a svg {
  width: 15px;
  height: 15px;
}

.ws-footer__social-icons a:hover {
  background: #0ca7f2;
  border-color: #0ca7f2;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Divider ──────────────────────────────────── */
.ws-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Bottom ───────────────────────────────────── */
.ws-footer__bottom {
  padding: 1.2rem 0;
}

.ws-footer__bottom p {
  font-family: var(--ws-font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
  .ws-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .ws-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .ws-footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ws-footer__middle {
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    
  }
  .ws-footer__middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
 
}
  .ws-footer__social {
    align-items: center;
  }

}

 /* ── Services – split layout ── */
  .services-section {  padding: 80px 0 0; }
  .services-section .section-title {
    font-family: var(--ff-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    color: var(--dark);
    margin-bottom: 64px;
  }
  .services-section .section-title span { color: var(--blue); }

  /* Each service block */
  .svc-block {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 540px;
    position: relative;
    overflow: visible;
  }
  .svc-block.reverse { grid-template-columns: 45% 55%; }

  /* Left: light grey background with floating laptop */
  .svc-visual {
    background: #D4D8E0;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 0 0;
    overflow: visible;
  }
  .svc-block.reverse .svc-visual { order: 2; }

  /* Laptop mockup container */
  .laptop-wrap {
    position: relative;
    width: 90%;
    max-width: 560px;
    z-index: 2;
    transform: perspective(1200px) rotateY(4deg) rotateX(2deg);
    filter: drop-shadow(0 40px 60px rgba(0,0,0,.35));
    transition: transform .5s ease;
  }
  .svc-block:hover .laptop-wrap {
    transform: perspective(1200px) rotateY(2deg) rotateX(1deg) translateY(-6px);
  }
  .svc-block.reverse .laptop-wrap {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  }
  .svc-block.reverse:hover .laptop-wrap {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-6px);
  }

  /* SVG laptop shell */
  .laptop-shell {
    width: 100%;
    border-radius: 14px 14px 0 0;
    background: #1a1a2e;
    padding: 16px 16px 0;
    border: 2px solid #2d2d4e;
    border-bottom: none;
  }
  .laptop-screen {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #0d1117;
    aspect-ratio: 16/10;
    position: relative;
  }
  .laptop-base {
    height: 18px;
    background: linear-gradient(180deg, #2a2a4a 0%, #1a1a2e 100%);
    border-radius: 0 0 6px 6px;
    border: 2px solid #2d2d4e;
    border-top: none;
  }
  .laptop-foot {
    height: 8px;
    background: #141428;
    border-radius: 0 0 4px 4px;
    width: 60%;
    margin: 0 auto;
  }

  /* Screen content inside laptop */
  .screen-ui {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0f1535 0%, #1a0a3e 50%, #0a1628 100%);
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 8px;
    font-size: 0;
  }
  .ui-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    border-radius: 5px;
    padding: 6px 10px;
  }
  .ui-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .ui-topbar-text {
    flex: 1;
    height: 7px;
    background: rgba(255,255,255,.15);
    border-radius: 3px;
    font-size: 0;
  }
  .ui-pricing-heading {
    text-align: center;
    padding: 8px 0 4px;
  }
  .ui-ph-title {
    height: 9px;
    width: 55%;
    background: rgba(255,255,255,.8);
    border-radius: 4px;
    margin: 0 auto 5px;
  }
  .ui-ph-sub {
    height: 6px;
    width: 75%;
    background: rgba(255,255,255,.3);
    border-radius: 3px;
    margin: 0 auto;
  }
  .ui-cards-row {
    display: flex;
    gap: 8px;
    flex: 1;
    min-height: 0;
  }
  .ui-plan {
    flex: 1;
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .ui-plan.starter { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
  .ui-plan.growth  { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
  .ui-plan.scale   { background: linear-gradient(135deg, #5b21b6, #7c3aed); border: 1px solid #8b5cf6; }
  .ui-plan-label { height: 6px; width: 60%; background: rgba(255,255,255,.5); border-radius: 3px; }
  .ui-plan-price { height: 12px; width: 40%; background: rgba(255,255,255,.9); border-radius: 3px; }
  .ui-plan-line { height: 5px; background: rgba(255,255,255,.2); border-radius: 2px; }
  .ui-plan-line.short { width: 70%; }
  .ui-footer-bar {
    display: flex;
    gap: 8px;
    margin-top: 4px;
  }
  .ui-footer-pill {
    flex: 1;
    height: 20px;
    border-radius: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
  }
  .ui-faq-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 4px;
  }
  .ui-faq-item {
    height: 16px;
    background: rgba(255,255,255,.06);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,.1);
  }

  /* Right: dark content panel */
  .svc-content {
    background: #C8CDD8;
    display: flex;
    align-items: center;
    padding: 56px 52px;
  }
  .svc-block.reverse .svc-content { order: 1; }
  .svc-content-inner { max-width: 440px; }
  .svc-num {
    font-family: var(--ff-head);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #5B6070;
    margin-bottom: 12px;
    display: block;
  }
  .svc-title {
    font-family: var(--ff-head);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0A0F1E;
    margin-bottom: 20px;
  }
  .svc-title .highlight { font-size: 18px; color: var(--blue); }
  .svc-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: #2D3348;
    margin-bottom: 18px;
    line-height: 1.6;
    text-align: center;
  }
  .svc-desc {
    font-size: .9rem;
    color: #4A5168;
    line-height: 1.8;
    text-align: center;
  }

  /* Mobile: stack vertically */
  @media (max-width: 900px) {
    .svc-block,
    .svc-block.reverse { grid-template-columns: 1fr; min-height: auto; }
    .svc-block.reverse .svc-visual,
    .svc-block.reverse .svc-content { order: unset; }
    .svc-visual { padding: 40px 24px 0; min-height: 280px; }
    .laptop-wrap { width: 80%; max-width: 380px; margin: 0 auto; }
    .svc-content { padding: 40px 28px; }
    .svc-content-inner { max-width: 100%; }
    .svc-tagline, .svc-desc { text-align: left; }
  }
  @media (max-width: 480px) {
    .laptop-wrap { width: 95%; }
    .svc-visual { min-height: 220px; }
  }

 /* ── Testimonials ── */
  .testimonials {
    background: var(--ws-bg-page);
        margin-top: 60px;
    padding: 60px 0 80px;
  }
  .testimonials-header {
    max-width: 780px;
    margin: 0 auto;
  }
  .testimonials-title {
    margin: 0;
    color: var(--ws-primary);
    font-family: var(--ws-font-display);
    font-weight: 800;
    font-size: clamp(1.5rem,2vw, 2rem);
    line-height: 1.05;
  }
  .testimonials-subtext {
    margin: 1rem auto 0;
    color: var(--muted);
    font-family: var(--ws-font-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 44px;
  }
  .testimonial-card {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    transition: var(--transition);
  }
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  }
  .testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 24px;
  }
  .testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .testimonial-stars .star {
    font-size: 1.5rem;
    line-height: 1;
    color: #FBBF24;
  }
  .testimonial-stars .star::before {
    content: "★";
    display: block;
  }
  .testimonial-stars .star.empty {
    color: #CBD5E1;
  }
  .testimonial-score {
    color: #0F172A;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    padding-left: 10px;
    padding-top: 5px;
    
  }
  .testimonial-card-copy {
    padding: 0 24px 18px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .testimonial-card-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--ws-primary);
    padding: 24px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 30px;
    margin-top: auto;
    border-radius: 30px;
  }
  .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
  }
  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .testimonial-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 4px;
  }
  .testimonial-role {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
  }
  @media (max-width: 980px) {
    .testimonials-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }


/* ── FAQ ── */
  .faq-section {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.2fr);
    gap: 38px;
    align-items: start;
    margin-top: 44px;
  }
  .faq-left .faq-title {
    margin: 100px 0 12px;
    color: var(--ws-primary);
    font-family: var(--ws-font-display);
    font-weight: 600;
    line-height: 1.05;
    font-size: 38px;
    letter-spacing: -0.05em;
    max-width: 460px;
  }
  .faq-left .faq-desc {
    margin: 1.2rem 0 0;
    color: var(--muted);
    font-family: var(--ws-font-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
  }
  .faq-right {
    display: grid;
    gap: 16px;
  }
  .faq-list {
    display: grid;
    gap: 14px;
  }
  .faq-item {
    background: #ffffff;
    border: 1px solid #E5E7F2;
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  }
  .faq-item.open {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  }
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    gap: 16px;
  }
  .faq-q span:first-child {
    display: block;
    flex: 1;
  }
  .faq-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(56, 149, 255, 0.08);
    color: var(--blue);
    font-size: 1.2rem;
    transition: transform .3s ease;
    flex-shrink: 0;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    padding: 0 24px;
  }
  .faq-item.open .faq-a {
    max-height: 360px;
    padding: 0 24px 20px;
  }
  .faq-left p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
  }
  @media (max-width: 900px) {
    .faq-section {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 640px) {
    .faq-q {
      flex-direction: column;
      align-items: flex-start;
    }
    .faq-icon {
      margin-top: 12px;
    }
  }


  /* ================================================
   ABOUT US SECTION
   ================================================ */

.ws-about {
  background: var(--ws-bg-page);
  padding: 5rem 0;
}

/* الكارت الرئيسي بالـ gradient */
.ws-about__card {
  background: linear-gradient(110deg, #16184c 0%, #0ca7f2 100%);
  border-radius: 24px;
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* اليسار — النص */
.ws-about__left {
  flex: 0 0 280px;
  max-width: 280px;
  height: 200px;
}

.ws-about__title {
  font-family: var(--ws-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2563eb;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.ws-about__desc {
  font-family: var(--ws-font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

/* اليمين — الـ grid */
.ws-about__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* الكارتات الداخلية */
.ws-acard {
  background: #111827;
  border-radius: 14px;
  padding: 1.2rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: var(--ws-ease);
  backdrop-filter: blur(4px);
}

.ws-acard:hover {
  background: rgba(13, 17, 40, 0.9);
  transform: translateY(-2px);
}

/* الأيقونة */
.ws-acard__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d3dffb;
  color: #000;
  border-radius: 50px;
}

.ws-acard__icon svg {
  width: 26px;
  height: 26px;
}

/* النص */
.ws-acard__body {
  flex: 1;
}

.ws-acard__title {
  font-family: var(--ws-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.ws-acard__desc {
  font-family: var(--ws-font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .ws-about__card {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .ws-about__left {
    flex: unset;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ws-about__grid {
    grid-template-columns: 1fr;
  }
  .ws-about {
    padding: 3rem 0;
  }
}


/* ================================================
   TECH STACK SECTION

   ================================================ */

.ws-tech {
  background: var(--ws-bg-page);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.ws-tech .container {
  overflow: hidden;
}
/* Header */
.ws-tech__header {
  margin-bottom: 3rem;
}

.ws-tech__badge {
  display: inline-block;
  background: var(--ws-primary-light);
  border: 1px solid var(--ws-primary-border);
  color: var(--ws-primary);
  font-family: var(--ws-font-body);
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.1rem;
}

.ws-tech__title {
  font-family: var(--ws-font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ws-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.ws-tech__sub {
  font-family: var(--ws-font-body);
  font-size: 0.95rem;
  color: var(--ws-text-body);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Marquee wrapper ──────────────────────────── */
.ws-marquee {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-bottom: 1rem;
  /* fade على الحافتين */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  position: relative;
}

/* الـ track يحمل الأيقونات كلها في سطر */
.ws-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation-play-state: running;
}

.ws-marquee.loaded .ws-marquee__track {
  animation-play-state: running;
}

/* Row 1 — يتحرك يسار */
.ws-marquee--left .ws-marquee__track {
  animation: ws-scroll-left 28s linear infinite;
}

/* Row 2 — يتحرك يمين */
.ws-marquee--right .ws-marquee__track {
  animation: ws-scroll-right 28s linear infinite;
}

/* يوقف عند hover */
.ws-marquee:hover .ws-marquee__track {
  animation-play-state: paused;
}

/* ── Keyframes ────────────────────────────────── */
@keyframes ws-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes ws-scroll-right {
  0% {
    transform: translateX(calc(-50% - 0.5rem));
  }
  100% {
    transform: translateX(0);
  }
}

/* ── Icon card ────────────────────────────────── */
.ws-ticon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ws-ease);
  margin-right: 1rem;
}

.ws-ticon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.ws-ticon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 576px) {
  .ws-ticon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }
  .ws-ticon img {
    width: 30px;
    height: 30px;
  }
  .ws-tech {
    padding: 3rem 0 2.5rem;
  }
  .ws-tech__title{
    font-size: 17px;
  }
}




