 :root {
      --bg: #0b1020;
      --card: rgba(17, 23, 52, .55);
      --stroke: rgba(255, 255, 255, .14);
      --txt: #e7edf3;
      --muted: #b7c3d9;
      --blue: #66a3ff;
      --violet: #7c49ff;
      --teal: #3fe0c2;
      --soft: 22px;
    }

.pro-services {
  display: grid;
  gap: 20px;
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width:1080px) {
  .pro-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .pro-services {
    grid-template-columns: 1fr;
  }
}

.pro-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  transform-style: preserve-3d;
  perspective: 900px;
  background: linear-gradient(180deg, #0f162acc, #0f162ae6);
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 60px #000a, inset 0 0 50px #6aa7ff1a;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s, border-color .45s;
}

.pro-card:hover {
  border-color: #2a3a6a;
  box-shadow: 0 30px 80px #000c, inset 0 0 70px #6aa7ff26;
}

/* Animated gradient backdrop */
.pro-bg {
  position: absolute;
  inset: -20% -30%;
  z-index: 0;
  filter: blur(40px) saturate(120%);
  background:
    radial-gradient(60% 45% at 20% 20%, #6aa7ff33 0%, transparent 70%),
    radial-gradient(60% 45% at 80% 30%, #22d3ee33 0%, transparent 70%),
    radial-gradient(60% 45% at 50% 90%, #9b5cf333 0%, transparent 70%);
  animation: bgFloat 9s ease-in-out infinite alternate;
}

@keyframes bgFloat {
  0% {
    transform: translate3d(0px, 0px, 0) rotate(0.5deg)
  }

  100% {
    transform: translate3d(-16px, -10px, 0) rotate(-1deg)
  }
}

/* Subtle noise for premium texture */
.pro-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .08;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.35"/></svg>');
  mix-blend-mode: overlay;
}

/* Live gradient border */
.pro-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background: conic-gradient(from 180deg, #9b5cf3, #6a00f4, #22d3ee, #6aa7ff, #9b5cf3);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: .25;
  filter: blur(8px);
  animation: spin 12s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* Orb light */
.pro-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  inset-inline-end: -60px;
  inset-block-start: -60px;
  z-index: 0;
  background: radial-gradient(closest-side, #6aa7ff55 0%, transparent 65%);
  filter: blur(18px);
  transform: translateZ(20px);
}

/* Glossy sweep on hover */
.pro-shine {
  position: absolute;
  inset: -40% -40%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(70deg, transparent 30%, #ffffff18 45%, transparent 60%);
  transform: translateX(-60%) rotate(12deg);
  transition: transform .9s cubic-bezier(.17, .67, .24, 1);
}

.pro-card:hover .pro-shine {
  transform: translateX(20%) rotate(12deg);
}

.pro-content {
  position: relative;
  z-index: 3;
  padding: 22px;
  transform: translateZ(35px);
}

.pro-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #dbe7ff;
  background: radial-gradient(120% 140% at 30% 10%, #9cc4ff55, #6aa7ff33);
  border: 1px solid #26406a;
  box-shadow: inset 0 0 30px #6aa7ff22;
}

.pro-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .3px;
  color: #eaf0ff;
}

.pro-desc {
  margin: 10px 0 10px;
  color: var(--muted);
  line-height: 1.9;
}

.pro-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pro-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .78rem;
  color: #dfe8ff;
  background: linear-gradient(90deg, #182544, #0e1830);
  border: 1px solid #24365e;
}

.pro-cta {
  margin-top: 12px;
}

.pro-btn {
  position: relative;
  overflow: hidden;
}

/* Controlled reveal area */
.pro-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  margin-top: 6px;
  border-top: 1px dashed #ffffff22;
  transition: max-height .55s cubic-bezier(.2, .7, .2, 1), opacity .35s;
}

.pro-details ul {
  margin: 10px 0 0;
  padding: 0 18px;
}

.pro-details li {
  color: #cfe0ff;
  line-height: 1.9;
  margin: 6px 0;
}

.pro-card.open .pro-details {
  max-height: 240px;
  opacity: 1;
  padding-top: 10px;
}

/* 3D tilt + ripple */
.pro-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  inset-inline-start: var(--rx, 50%);
  inset-block-start: var(--ry, 50%);
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, #6aa7ff99 0%, #22d3ee55 40%, transparent 65%);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
}

.pro-card.ripple::after {
  animation: pro-rip .65s ease-out;
}

@keyframes pro-rip {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: .7;
  }

  60% {
    opacity: .35;
  }

  100% {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

/* motion preferences */
@media (prefers-reduced-motion: reduce) {

  .pro-card,
  .pro-shine,
  .pro-bg {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Services Cards (Technovizen Identity) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

@media (max-width:1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #0f162acc, #0f162ae6);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.2, .6, .2, 1), box-shadow .35s ease, border-color .3s ease;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 60px #000a, inset 0 0 60px #66a3ff26;
  border-color: #2a3a6a;
}

/* إطار متحرك (Gradient Border) */
.svc-border {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  border-radius: 22px;
  background:
    conic-gradient(from 180deg at 50% 50%, #9b5cf3, #6a00f4, #22d3ee, #6aa7ff, #9b5cf3);
  opacity: .18;
  filter: blur(8px);
  transition: opacity .35s ease;
}

.service-card:hover .svc-border {
  opacity: .32;
}

/* جسم الكارد */
.svc-body {
  position: relative;
  z-index: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-icon {
  color: var(--nx-soft);
  opacity: .95;
  transform: translateY(0);
  transition: transform .35s ease;
}

.service-card:hover .svc-icon {
  transform: translateY(-2px);
}

.svc-title {
  margin: 6px 0 0;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: #e9efff;
}

.svc-desc {
  margin: 6px 0 4px;
  color: var(--muted);
  line-height: 1.85;
}

.svc-cta {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* التفاصيل القابلة للفتح */
.svc-details {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.2, .7, .2, 1), opacity .3s ease;
  opacity: 0;
  margin-top: 6px;
  border-top: 1px dashed #ffffff22;
  padding-top: 0;
}

.svc-details ul {
  margin: 10px 0 4px;
  padding: 0 18px;
}

.svc-details li {
  color: #cfe0ff;
  line-height: 1.9;
  margin: 6px 0;
}

.service-card.open .svc-details {
  max-height: 240px;
  /* يكفي لثلاث نقاط */
  opacity: 1;
  padding-top: 10px;
}

/* Ripple عند الضغط */
.service-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  inset-inline-start: var(--rx, 50%);
  inset-block-start: var(--ry, 50%);
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, #6aa7ff88 0%, #22d3ee55 45%, transparent 60%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.service-card.press::after {
  animation: svc-ripple .6s ease-out;
}

@keyframes svc-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: .65;
  }

  55% {
    opacity: .35;
  }

  100% {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

/* ضغطه لطيفة */
.service-card.press {
  animation: svc-press .18s cubic-bezier(.2, .6, .2, 1);
}

@keyframes svc-press {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(1px) scale(.985);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* احترام تفضيل تقليل الحركة */
@media (prefers-reduced-motion: reduce) {

  .service-card,
  .svc-icon {
    transition: none !important;
    animation: none !important;
  }
}

/* =================== Tokens =================== */
:root {
  --bg: #0b1020;
  /* canvas */
  --ink: #eaf0ff;
  /* primary text */
  --muted: #9fb0d6;
  /* secondary */
  --panel: #0f162ad9;
  /* glass */
  --panel-soft: #121a32cc;
  --stroke: #213055;
  /* borders */
  --nx: #6aa7ff;
  /* blue */
  --nx-soft: #9cc4ff;
  /* soft blue */
  --nc: #22d3ee;
  /* cyan */
  --radius: 18px;
  --maxw: 1240px;
  --shadow: 0 10px 40px #0008, inset 0 0 60px #3b82f61a;
}

/* ===== Mobile: Hero as full background with dim overlay ===== */
@media (max-width: 640px) {
  .hero {
    padding: 64px 0 64px;
  }

  /* اخفاء الشبكات الزرقاء الخفيفة وتخفيفها */
  .hero .bg-waves {
    opacity: .15
  }

  /* صورة الخلفية نفسها ولكن كخلفية لقسم الـHero */
  .hero::after {
    content: "";
    position: absolute;
    inset: -2px;
    /* نزود 2px لإخفاء أي خط فاصل */
    background: url('../assets/flux-hero2.gif') center/cover no-repeat;
    filter: contrast(1.05) saturate(1.1);
    z-index: 0;

    /* دمج ناعم مع خلفية القسم لمنع مظهر “المقصوص” */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 68%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 68%, rgba(0, 0, 0, 0) 100%);
  }

  /* طبقة التعتيم + لمسة زجاجية خفيفة لضمان قراءة النص */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0b1020cc 0%, #0b1020aa 100%);
    backdrop-filter: blur(2px) saturate(120%);
    z-index: 0;
  }

  /* نخفي الـvisual على الموبايل حتى لا تتكرر الصورة */
  .hero-visual {
    display: none
  }

  /* نخلي النص فوق الخلفية مع كرت مطفي أنيق */
  .hero-copy {
    position: relative;
    z-index: 1;
    background: var(--panel-soft);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  /* تحسين المقروئية للسطر التعريفي */
  .subline {
    color: #e6eeff
  }
}

/* ===== Tablets المتوسطة: تخفيف حجم الصورة الجانبية فقط ===== */
@media (min-width: 641px) and (max-width: 960px) {
  .hero-visual .face {
    inline-size: min(460px, 80vw)
  }
}

/* (كان fixed ويسبّب حافة/قص على كثير من الأجهزة) */
.hero::after {
  background-attachment: scroll;
}

/* توحيد شكل زر "اطلب عرض سعر" */
.btn.primary,
.btn-gradient.cta-quote {
  background: linear-gradient(90deg, var(--nx), var(--nc));
  /* نفس التدرج الأزرق */
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  /* أصغر من السابق */
  font-size: 0.9rem;
  /* حجم خط أصغر */
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* تأثير الهوفر */
.btn.primary:hover,
.btn-gradient.cta-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ===== Secondary Gradients (Violet / Red / Mix) ===== */
.gradient-violet {
  background: linear-gradient(90deg, #9b5cf3 0%, #6a00f4 100%)
}

.gradient-red {
  background: linear-gradient(90deg, #f72585 0%, #ff004d 100%)
}

.gradient-mix {
  background: linear-gradient(90deg, #f72585 0%, #9b5cf3 50%, #6a00f4 100%)
}

.text-gradient-violet {
  background: linear-gradient(90deg, #9b5cf3 0%, #6a00f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.text-gradient-mix {
  background: linear-gradient(90deg, #f72585 0%, #9b5cf3 50%, #6a00f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid #ffffff2d;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: .55rem
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(90deg, var(--nx), var(--nc))
}

.btn-gradient {
  padding: 14px 28px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .3s ease;
  display: inline-flex;
  align-items: center;
  gap: .6rem
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35)
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Cairo", system-ui;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased
}

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

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px
}

/* =================== Header (U-ARE style) =================== */
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(140%) blur(14px);
  background: linear-gradient(180deg, #0b1020f2 0%, #0b102000 100%);
  border-bottom: 1px solid #0b102044
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.logo {
  inline-size: 44px;
  block-size: 44px;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 30% 20%, var(--nx-soft), var(--nx));
  box-shadow: 0 6px 18px #6aa7ff55, inset 0 0 40px #6aa7ff33
}

.brand .title {
  font-weight: 800;
  letter-spacing: .4px;
  line-height: 1
}

.brand .sub {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 700
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-links a {
  position: relative;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 12px;
  inset-block-end: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--nx), var(--nc));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .25s ease
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1)
}

.cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.lang {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ffffff2a;
  font-weight: 800;
  color: #0b1020
}

.menu-toggle {
  display: none;
  border: 1px solid #ffffff2d;
  padding: 10px 14px;
  border-radius: 12px
}

@media (max-width:960px) {
  .nav-links {
    display: none
  }

  .menu-toggle {
    display: inline-flex
  }

  .brand .title {
    font-size: 1.02rem
  }
}

/* Drawer */
.drawer {
  position: fixed;
  inset-inline: 0;
  inset-block-start: 76px;
  z-index: 55;
  display: none
}

.drawer.open {
  display: block
}

.drawer .panel {
  margin: 12px;
  padding: 14px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--stroke)
}

.drawer a {
  display: block;
  padding: 14px;
  border-radius: 12px;
  color: var(--ink)
}

.drawer a+a {
  border-top: 1px dashed #ffffff22
}

/* =================== Hero (U-ARE composition) =================== */
.hero {
  position: relative;
  padding: 90px 0 70px;
  border-bottom: 1px solid #0b102033;
  overflow: hidden
}

.hero .bg-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background:
    radial-gradient(1000px 500px at 80% 40%, #66a3ff22 0%, transparent 55%),
    radial-gradient(900px 520px at 10% 85%, #22d3ee2a 0%, transparent 48%),
    linear-gradient(180deg, #0b102088 0%, #0b1020 100%)
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 18px
}

/* Mega heading like reference */
.mega {
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 0.9;
  color: #b7cdfd20;
  font-size: clamp(40px, 9vw, 120px);
  text-transform: uppercase
}

.lead-title {
  margin: 4px 0 10px;
  font-size: clamp(22px, 3.8vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--nx-soft)
}

.subline {
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.8;
  max-width: 60ch
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap
}

/* Visual on the right */
.hero-visual {
  position: relative;
  isolation: isolate
}

.hero-visual .face {
  inline-size: min(520px, 90vw);
  aspect-ratio: 1/1;
  border-radius: 22px;
  background: #0c1224;
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 60px #000a, inset 0 0 60px #66a3ff22;
  overflow: hidden
}

.hero-visual .face::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/flux-hero2.gif') center/cover no-repeat;
  filter: contrast(1.05) saturate(1.1);
  opacity: .95;

  /* تلاشي حواف الـGIF داخل الكرت لاندماج أنعم */
  -webkit-mask-image: radial-gradient(130% 120% at 50% 50%, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0) 95%);
  mask-image: radial-gradient(130% 120% at 50% 50%, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0) 95%);
}

.glow {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 0;
  inline-size: 60%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(closest-side, #6aa7ff55, transparent 70%);
  filter: blur(20px);
  z-index: -1
}

/* ABOUT section styled like references (purple gradient lines) */
section {
  padding: 70px 0;
  border-top: 1px solid #0b102033
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center
}

.about-card {
  background: linear-gradient(180deg, #0f162acc, #0f162aee);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow)
}

.about-title {
  font-size: clamp(20px, 3.2vw, 30px);
  margin: 0 0 10px
}

.about-p {
  color: var(--muted);
  line-height: 1.9
}

.about-p strong {
  font-weight: 800
}

.decor {
  inline-size: 100%;
  aspect-ratio: 16/11;
  border-radius: 18px;
  background: radial-gradient(120% 120% at 30% 20%, #0d1530, #0b1020);
  border: 1px solid var(--stroke);
  position: relative;
  overflow: hidden
}

.decor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 20% 40%, #9b5cf344 0%, transparent 60%),
    radial-gradient(90% 60% at 80% 60%, #f7258533 0%, transparent 60%)
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* Grids responsive */
@media (max-width:1080px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .about-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .container {
    padding-inline: 18px
  }

  .mega {
    font-size: clamp(36px, 12vw, 60px)
  }

  .lead-title {
    text-transform: none
  }
}




/* Fix mobile landscape jitter/scroll */
/* ===== Hard Lock: يمنع أي تمدد أفقي أو اهتزاز ===== */
html,body{margin:0;padding:0;width:100%;max-width:100dvw;overflow-x:clip;overscroll-behavior:none}
body{min-height:100svh;-webkit-text-size-adjust:100%;-webkit-overflow-scrolling:auto}

/* أي أقسام بطول الشاشة */
.hero,.section{width:100dvw;min-height:100svh}

/* عناصر شائعة تسبّب التمدد */
img,video,iframe{max-width:100%;height:auto;display:block}
.nav-links{flex-wrap:wrap}
a,button{word-break:break-word}

/* لا ترانزفورم على الموبايل (يهزّ) */
@media (hover:none){
  .pro-card, .pro-card *{transform:none!important}
}

/* الهيدر ثابت بدون رجفة */
.header-sticky{transform:translateZ(0);backface-visibility:hidden}

/* منع تمدد الحاويات عرضياً */
.container,.nav,.about-grid,.panel,.slider,.pro-row{max-width:100dvw;overflow-x:hidden}







