/* ==========================================================================
   Sitehub 2026 — v22
   نظام تصميم موحّد. يحل محل 11 طبقة CSS متراكمة (v10 → v21).
   --------------------------------------------------------------------------
   00. Tokens          — المتغيرات
   01. Reset & Base    — الأساسيات
   02. Typography      — الخطوط
   03. Layout          — الحاويات
   04. Buttons         — الأزرار
   05. Header & Nav    — الهيدر والقائمة
   06. Hero            — القسم الرئيسي
   07. Editorial       — قسم المنهجية
   08. Services        — الخدمات
   09. Process         — طريقة العمل
   10. Works           — الأعمال
   11. Testimonials    — آراء العملاء
   12. FAQ             — الأسئلة الشائعة
   13. Pricing         — الباقات
   14. CTA             — دعوة الإجراء
   15. Blog & Archive  — المدونة
   16. Comments        — التعليقات
   17. Forms           — النماذج
   18. Pages           — الصفحات الداخلية
   19. Footer          — التذييل
   20. Utilities       — أدوات مساعدة
   21. Motion          — الحركة
   22. Responsive      — الاستجابة
   ========================================================================== */

/* ==========================================================================
   00. TOKENS
   ========================================================================== */

:root {
  /* Colors — تُحقن قيمها من الـCustomizer عبر inc/customizer-output.php */
  --sh-bg: #030304;
  --sh-bg-elevated: #0b0b0f;
  --sh-panel: #101014;
  --sh-ink: #f5f1eb;
  --sh-muted: #a5a1ac;
  --sh-dim: #8f8b97;
  --sh-accent: #b497e7;
  --sh-accent-light: #dfd3ff;
  --sh-accent-deep: #15101d;
  --sh-success: #70d99a;
  --sh-line: rgba(255, 255, 255, .12);
  --sh-line-soft: rgba(255, 255, 255, .07);
  --sh-surface: rgba(255, 255, 255, .04);

  /* Light surfaces (pricing / WooCommerce) */
  --sh-light-bg: #f5f4f3;
  --sh-light-card: #fff;
  --sh-light-ink: #19171d;
  --sh-light-muted: #6f6873;
  --sh-light-line: #e6e2e7;

  /* Typography */
  --sh-font: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
  --sh-font-display: 'DM Serif Display', 'Times New Roman', Georgia, serif;

  /* Rhythm */
  --sh-wrap: 1400px;
  --sh-gutter: 48px;
  --sh-section-y: 130px;
  --sh-radius-sm: 13px;
  --sh-radius: 26px;
  --sh-radius-lg: 34px;
  --sh-radius-pill: 999px;

  /* Motion */
  --sh-ease: cubic-bezier(.22, 1, .36, 1);
  --sh-ease-out: cubic-bezier(.16, 1, .3, 1);
  --sh-speed: .35s;

  /* Header — يُستخدم للحساب في القوالب الداخلية */
  --sh-header-h: 110px;
}

/* ==========================================================================
   01. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--sh-bg);
  color: var(--sh-ink);
  font-family: var(--sh-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
svg { max-width: 100%; }

img { height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--sh-speed) ease;
}

button,
input,
textarea,
select { font-family: inherit; }

::selection {
  background: var(--sh-accent);
  color: var(--sh-accent-deep);
}

/* Focus visible — وصولية */
:focus-visible {
  outline: 2px solid var(--sh-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   02. TYPOGRAPHY
   ========================================================================== */

.sh-serif,
[lang="en"] .sh-serif,
.sh-display {
  font-family: var(--sh-font-display);
  font-weight: 400;
  letter-spacing: .02em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.045em;
  margin: 0 0 .5em;
}

.sh-title-xl,
.sh-hero h1 {
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: 1.08;
  margin: 0;
}

.sh-title-lg {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: 1.08;
  margin: 0;
}

.sh-title-md {
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: 1.08;
  margin: 0;
}

.sh-title-xl em,
.sh-title-lg em,
.sh-title-md em,
.sh-hero h1 em,
h2 em {
  font-style: normal;
  color: var(--sh-accent);
}

.sh-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.6;
  color: var(--sh-muted);
  margin: 0 0 17px;
  text-transform: uppercase;
}

.sh-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--sh-accent);
  vertical-align: middle;
  margin-inline-end: 9px;
}

.sh-eyebrow .sh-serif {
  font-size: 19px;
  letter-spacing: .015em;
}

.sh-lead {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.9;
  color: var(--sh-dim);
}

/* ==========================================================================
   03. LAYOUT
   ========================================================================== */

.sh-wrap {
  width: min(var(--sh-wrap), calc(100% - var(--sh-gutter)));
  margin-inline: auto;
}

.sh-section {
  padding: var(--sh-section-y) 0;
  position: relative;
}

.sh-section--tight { padding: 90px 0; }

.sh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
}

.sh-section p { color: var(--sh-muted); font-size: 16px; }

/* ==========================================================================
   04. BUTTONS
   ========================================================================== */

.sh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--sh-accent);
  color: var(--sh-accent-deep);
  padding: 13px 20px;
  border: 0;
  border-radius: var(--sh-radius-sm);
  font: 700 14px var(--sh-font);
  cursor: pointer;
  transition: transform .25s var(--sh-ease), background .25s ease;
}

.sh-button:hover {
  transform: translateY(-2px);
  background: var(--sh-accent-light);
  color: var(--sh-accent-deep);
}

.sh-button--small {
  border-radius: var(--sh-radius-pill);
  padding: 12px 21px;
  font-size: 12px;
  background: var(--sh-ink);
  color: #151119;
}

.sh-button--small:hover { background: var(--sh-accent-light); }

.sh-button--ghost {
  background: transparent;
  color: var(--sh-ink);
  border: 1px solid var(--sh-line);
}

.sh-button--ghost:hover {
  background: var(--sh-surface);
  color: var(--sh-ink);
  border-color: var(--sh-accent);
}

.sh-hero-link {
  color: #e2ddeb;
  font-size: 14px;
  font-weight: 600;
}

.sh-hero-link:hover { color: var(--sh-accent); }

/* ==========================================================================
   05. HEADER & NAV
   ========================================================================== */

.sh-skip-link {
  position: absolute;
  top: -100px;
  inset-inline-start: 20px;
  z-index: 999;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  background: var(--sh-accent);
  color: var(--sh-accent-deep);
  font-weight: 700;
  transition: top .3s ease;
}

.sh-skip-link:focus { top: 0; }

.sh-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  width: 100%;
  padding: 23px 0;
  background: transparent;
  transition: padding .4s ease;
}

.sh-header .sh-wrap {
  width: min(1440px, calc(100% - 64px));
}

.sh-nav {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  width: 100%;
  min-height: 64px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--sh-radius-pill);
  background: rgba(5, 5, 7, .48);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  transition: background .4s ease;
}

.sh-header.is-scrolled .sh-nav { background: rgba(5, 5, 7, .68); }

.sh-logo {
  display: block;
  width: 132px;
  line-height: 0;
  justify-self: start;
}

.sh-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 33px;
  object-fit: contain;
  object-position: right center;
}

.sh-logo-text {
  font-family: var(--sh-font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--sh-ink);
}

.sh-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 27px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sh-menu a {
  display: block;
  padding: 8px 5px;
  border-radius: var(--sh-radius-pill);
  color: rgba(245, 241, 235, .72);
  font-size: 13px;
}

.sh-menu a:hover,
.sh-menu .current-menu-item > a,
.sh-menu .current_page_item > a { color: #fff; }

/* قوائم فرعية */
.sh-menu .sub-menu {
  position: absolute;
  z-index: 10;
  min-width: 210px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid var(--sh-line);
  border-radius: 18px;
  background: rgba(10, 9, 13, .96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.sh-menu > li { position: relative; }

.sh-menu > li:hover > .sub-menu,
.sh-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sh-menu .sub-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.sh-menu .sub-menu a:hover { background: var(--sh-surface); }

.sh-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

.sh-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: var(--sh-surface);
  cursor: pointer;
  place-items: center;
  align-content: center;
  gap: 6px;
}

.sh-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--sh-ink);
  transition: transform .3s ease;
}

.sh-header.menu-open .sh-menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.sh-header.menu-open .sh-menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* عداد سلة WooCommerce في الهيدر */
.sh-cart-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sh-line);
  border-radius: 50%;
  color: var(--sh-ink);
}

.sh-cart-link:hover { border-color: var(--sh-accent); color: var(--sh-accent); }

.sh-cart-count {
  position: absolute;
  inset-block-start: -4px;
  inset-inline-start: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: var(--sh-radius-pill);
  background: var(--sh-accent);
  color: var(--sh-accent-deep);
  font: 700 11px/19px var(--sh-font);
  text-align: center;
}

/* ==========================================================================
   06. HERO
   ========================================================================== */

.sh-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 780px;
  overflow: hidden;
  background: var(--sh-bg);
}

.sh-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 3, 4, 0) 15%, rgba(3, 3, 4, .16) 48%, var(--sh-bg) 76%);
  pointer-events: none;
}

.sh-hero-video {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 63%;
  height: 100%;
  overflow: hidden;
  background: var(--sh-bg);
}

.sh-hero-video video,
.sh-hero-video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 58%;
  transform: scale(1.05);
}

.sh-hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 4, 0) 55%, var(--sh-bg) 100%);
  pointer-events: none;
}

.sh-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 78% 48%, rgba(180, 151, 231, .08), transparent 26%);
}

.sh-hero-copy {
  position: absolute;
  z-index: 3;
  inset-block-start: 23%;
  inset-inline-end: 8%;
  width: 42%;
  max-width: 570px;
  animation: sh-hero-enter .9s var(--sh-ease) both;
}

.sh-hero-copy > p:not(.sh-eyebrow) {
  max-width: 520px;
  margin: 21px 0 28px;
  color: #cbc7d0;
  font-size: 16px;
  line-height: 2;
}

.sh-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sh-hero-meta {
  position: absolute;
  z-index: 3;
  inset-inline-end: 8%;
  inset-block-end: 55px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sh-hero-meta i {
  display: block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .18);
}

@keyframes sh-hero-enter {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   07. EDITORIAL — المنهجية
   ========================================================================== */

.sh-editorial {
  position: relative;
  padding: 150px 0 135px;
  background: var(--sh-bg);
  color: var(--sh-ink);
  overflow: hidden;
}

.sh-editorial::before {
  content: '';
  position: absolute;
  inset-inline-start: -360px;
  inset-block-start: -220px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 151, 231, .11), transparent 68%);
  pointer-events: none;
}

.sh-editorial-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 12%;
  align-items: start;
  padding-bottom: 66px;
  border-bottom: 1px solid var(--sh-line);
}

.sh-editorial-head > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--sh-muted);
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1.85;
}

.sh-editorial-lines > div {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  min-height: 160px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  transition: background .4s ease, padding .4s ease;
}

.sh-editorial-lines > div:hover {
  padding-inline: 24px;
  background: linear-gradient(90deg, rgba(180, 151, 231, .07), transparent 72%);
}

.sh-editorial-lines span {
  font-family: var(--sh-font-display);
  font-size: 18px;
  color: var(--sh-accent);
}

.sh-editorial-lines h2 {
  margin: 0;
  font-size: clamp(43px, 5.6vw, 82px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.065em;
}

.sh-editorial-lines > div:nth-child(even) h2 { padding-inline-end: 10%; }

/* ==========================================================================
   08. SERVICES
   ========================================================================== */

#services { padding-top: 155px; }

#services .sh-grid { align-items: start; gap: 7%; }

.sh-list {
  margin-top: 50px;
  border-top: 1px solid var(--sh-line);
}

.sh-list a {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sh-line);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  transition: padding .3s ease, color .3s ease, background .3s ease;
}

.sh-list a:hover {
  padding-inline: 18px;
  color: #d9c9f8;
  background: rgba(180, 151, 231, .045);
}

.sh-list i {
  min-width: 36px;
  margin-inline-end: 15px;
  font-family: var(--sh-font-display);
  font-size: 17px;
  font-style: normal;
  color: var(--sh-accent);
}

.sh-list b {
  margin-inline-start: auto;
  color: var(--sh-accent);
}

.sh-card {
  padding: 26px;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: linear-gradient(130deg, rgba(180, 151, 231, .17), rgba(255, 255, 255, .04));
}

#services .sh-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  border-radius: var(--sh-radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(180, 151, 231, .24), transparent 36%),
    linear-gradient(155deg, #121019, #08080b 70%);
}

.sh-chart {
  position: relative;
  height: 270px;
  margin: 24px 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255, 255, 255, .06) 40px),
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(255, 255, 255, .05) 63px);
}

.sh-chart::after {
  content: '';
  position: absolute;
  inset: 20px 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 160' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 130 C60 120 80 125 130 95 S200 145 250 88 S320 105 365 45 S430 64 500 10' fill='none' stroke='%23b497e7' stroke-width='4'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.sh-meter {
  display: grid;
  grid-template-columns: 95px 1fr 35px;
  gap: 10px;
  align-items: center;
  margin-top: 13px;
  font-size: 12px;
  color: #d3d0d8;
}

.sh-meter > span {
  height: 5px;
  border-radius: 5px;
  background: #292831;
  overflow: hidden;
}

.sh-meter > span > i {
  display: block;
  height: 100%;
  background: var(--sh-accent);
}

/* بطاقات الخدمات العامة (صفحة الخدمات / المتجر) */
.sh-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.sh-service {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-lg);
  background: var(--sh-surface);
  transition: transform .35s var(--sh-ease-out), border-color .3s ease, background .3s ease;
}

.sh-service:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 151, 231, .45);
  background: rgba(180, 151, 231, .06);
}

.sh-service > span {
  font-family: var(--sh-font-display);
  font-size: 21px;
  color: var(--sh-accent);
}

.sh-service h3 { margin: 55px 0 12px; font-size: 27px; }
.sh-service p { margin: 0; color: var(--sh-dim); line-height: 1.8; }

.sh-service-price {
  margin-top: auto;
  padding-top: 20px;
  color: var(--sh-accent-light);
  font-size: 18px;
  font-weight: 600;
}

/* ==========================================================================
   09. PROCESS
   ========================================================================== */

.sh-process {
  position: relative;
  overflow: hidden;
  background: #18181b;
}

.sh-process::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.sh-process .sh-wrap { position: relative; }

.sh-step {
  display: flex;
  gap: 18px;
  margin-top: 13px;
  padding: 18px;
  border: 1px solid var(--sh-line);
  border-radius: 20px;
  background: var(--sh-surface);
}

.sh-step b {
  font-family: var(--sh-font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--sh-accent);
}

.sh-step strong { display: block; }
.sh-step span { font-size: 13px; color: var(--sh-muted); }

.sh-code {
  direction: ltr;
  text-align: left;
  min-height: 310px;
  padding: 36px;
  border: 1px solid var(--sh-line);
  border-radius: 24px;
  background: #0c0c0f;
  transform: rotate(-2deg);
  font: 14px/2.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #ddd7e7;
}

.sh-code b { color: #c5a2ff; }
.sh-code em { color: #b5e5c4; font-style: normal; }

/* ==========================================================================
   10. WORKS
   ========================================================================== */

#works { padding-top: 160px; }

.sh-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

#works .sh-work-grid {
  grid-template-columns: 1.18fr .82fr;
  gap: 22px;
  counter-reset: sh-project;
}

.sh-project {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 20px;
  border: 1px solid var(--sh-line);
  border-radius: 25px;
  background: radial-gradient(circle at 70% 0, #2b2339, #0d0d0f 64%);
}

.sh-project:nth-child(2) { background: linear-gradient(135deg, #15111b, #0a0a0d); }
.sh-project:nth-child(3) { background: linear-gradient(135deg, #201a2b, #08080a); }

#works .sh-project {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border-radius: var(--sh-radius-lg);
  overflow: hidden;
  isolation: isolate;
  counter-increment: sh-project;
  transition: transform .45s var(--sh-ease-out), border-color .3s ease;
}

#works .sh-project::before {
  content: "0" counter(sh-project);
  position: absolute;
  inset-inline-start: 28px;
  inset-block-start: 4px;
  z-index: -1;
  font-family: var(--sh-font-display);
  font-size: 180px;
  line-height: 1;
  color: rgba(255, 255, 255, .035);
}

#works .sh-project:hover {
  transform: translateY(-9px);
  border-color: rgba(180, 151, 231, .48);
}

#works .sh-project:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 360px;
  background:
    radial-gradient(circle at 24% 30%, rgba(180, 151, 231, .22), transparent 23%),
    linear-gradient(115deg, #18131f, #08080a 72%);
}

.sh-project small { color: var(--sh-muted); font-size: 12px; letter-spacing: .08em; }
.sh-project h3 { margin: 5px 0; }

#works .sh-project h3 {
  max-width: 460px;
  margin-top: 18px;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.sh-project b {
  margin-top: auto;
  color: var(--sh-success);
  font-size: 15px;
  font-weight: 600;
}

.sh-project-thumb {
  position: absolute;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .38;
}

/* ==========================================================================
   11. TESTIMONIALS
   ========================================================================== */

.sh-testimonials {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background: var(--sh-bg);
}

.sh-testimonials::before {
  content: '';
  position: absolute;
  inset-inline-end: -280px;
  inset-block-start: 10%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 151, 231, .1), transparent 68%);
  pointer-events: none;
}

.sh-testimonials .sh-wrap { position: relative; }

.sh-testimonial-viewport {
  margin-top: 60px;
  overflow: hidden;
}

.sh-testimonial-track {
  display: flex;
  align-items: stretch;
  transition: transform .6s var(--sh-ease);
}

.sh-testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  padding-inline-end: 4px;
}

.sh-testimonial-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 46px;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-lg);
  background: linear-gradient(150deg, rgba(180, 151, 231, .1), rgba(255, 255, 255, .025));
}

.sh-testimonial-quote {
  margin: 0 0 34px;
  color: var(--sh-ink);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -.02em;
}

.sh-testimonial-quote::before {
  content: '”';
  display: block;
  margin-bottom: 8px;
  font-family: var(--sh-font-display);
  font-size: 70px;
  line-height: .5;
  color: var(--sh-accent);
}

.sh-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.sh-testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--sh-line);
  object-fit: cover;
  flex-shrink: 0;
}

.sh-testimonial-avatar--placeholder {
  display: grid;
  place-items: center;
  background: rgba(180, 151, 231, .16);
  color: var(--sh-accent);
  font-family: var(--sh-font-display);
  font-size: 22px;
}

.sh-testimonial-name {
  display: block;
  font-weight: 600;
  color: var(--sh-ink);
}

.sh-testimonial-role {
  display: block;
  font-size: 13px;
  color: var(--sh-muted);
}

.sh-testimonial-stars {
  margin-bottom: 20px;
  color: var(--sh-accent);
  font-size: 15px;
  letter-spacing: 3px;
}

.sh-slider-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.sh-slider-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--sh-line);
  border-radius: 50%;
  background: transparent;
  color: var(--sh-ink);
  font-size: 16px;
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease, opacity .3s ease;
}

.sh-slider-btn:hover:not(:disabled) {
  border-color: var(--sh-accent);
  background: rgba(180, 151, 231, .1);
}

.sh-slider-btn:disabled { opacity: .3; cursor: default; }

.sh-slider-dots {
  display: flex;
  gap: 8px;
  margin-inline-start: auto;
}

.sh-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}

.sh-slider-dot.is-active {
  width: 26px;
  border-radius: var(--sh-radius-pill);
  background: var(--sh-accent);
}

/* ==========================================================================
   12. FAQ
   ========================================================================== */

.sh-faq {
  padding: 140px 0;
  background: var(--sh-bg);
}

.sh-faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8%;
  align-items: start;
}

.sh-faq-list {
  border-top: 1px solid var(--sh-line);
}

.sh-faq-item { border-bottom: 1px solid var(--sh-line); }

.sh-faq-question {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: var(--sh-ink);
  font-family: inherit;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  text-align: start;
  cursor: pointer;
  transition: color .3s ease, padding .3s ease;
}

.sh-faq-question:hover {
  color: #d9c9f8;
  padding-inline: 10px;
}

.sh-faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-inline-start: auto;
  border: 1px solid var(--sh-line);
  border-radius: 50%;
  transition: border-color .3s ease, transform .4s var(--sh-ease);
}

.sh-faq-icon::before,
.sh-faq-icon::after {
  content: '';
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 12px;
  height: 1px;
  background: var(--sh-accent);
  transform: translate(50%, -50%);
  transition: transform .4s var(--sh-ease), opacity .3s ease;
}

.sh-faq-icon::after { transform: translate(50%, -50%) rotate(90deg); }

.sh-faq-item.is-open .sh-faq-icon {
  border-color: var(--sh-accent);
  transform: rotate(180deg);
}

.sh-faq-item.is-open .sh-faq-icon::after { opacity: 0; }

.sh-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--sh-ease);
}

.sh-faq-item.is-open .sh-faq-answer { grid-template-rows: 1fr; }

.sh-faq-answer > div { overflow: hidden; }

.sh-faq-answer p {
  margin: 0 0 26px;
  color: var(--sh-muted);
  font-size: 16px;
  line-height: 1.9;
}

/* ==========================================================================
   13. PRICING
   ========================================================================== */

.sh-pricing {
  background: var(--sh-light-bg);
  color: var(--sh-light-ink);
}

.sh-pricing .sh-eyebrow,
.sh-pricing p { color: var(--sh-light-muted); }

.sh-pricing h2 { color: var(--sh-light-ink); }

.sh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.sh-price {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 20px;
  border: 1px solid var(--sh-light-line);
  border-radius: var(--sh-radius);
  background: var(--sh-light-card);
  transition: transform .35s var(--sh-ease-out), box-shadow .35s ease;
}

.sh-price:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(25, 23, 29, .12);
}

.sh-price--featured {
  border-color: var(--sh-accent);
  box-shadow: 0 20px 50px rgba(180, 151, 231, .22);
}

.sh-price-badge {
  position: absolute;
  inset-block-start: -12px;
  inset-inline-end: 20px;
  padding: 5px 14px;
  border-radius: var(--sh-radius-pill);
  background: var(--sh-accent);
  color: var(--sh-accent-deep);
  font-size: 11px;
  font-weight: 700;
}

.sh-price small { color: var(--sh-light-muted); }
.sh-price h3 { margin: 5px 0; font-size: 23px; }

.sh-price-features {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--sh-light-muted);
}

.sh-price-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--sh-light-line);
}

.sh-price-features li::before {
  content: '✓';
  margin-inline-end: 9px;
  color: var(--sh-accent);
  font-weight: 700;
}

.sh-price strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 22px;
  font-weight: 600;
}

.sh-price-vat {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--sh-light-muted);
}

.sh-price .sh-price-cta {
  margin-top: 15px;
  padding: 12px;
  border: 0;
  border-radius: 11px;
  background: var(--sh-light-ink);
  color: #fff;
  font: 600 13px var(--sh-font);
  text-align: center;
  cursor: pointer;
  transition: background .25s ease;
}

.sh-price .sh-price-cta:hover { background: var(--sh-accent); color: var(--sh-accent-deep); }

/* ==========================================================================
   14. CTA
   ========================================================================== */

.sh-cta { padding: 90px 0 130px; background: var(--sh-bg); }

.sh-cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 510px;
  padding: 40px;
  border: 1px solid var(--sh-line);
  border-radius: 36px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 110%, rgba(180, 151, 231, .25), transparent 42%),
    #08080b;
}

.sh-cta-inner .sh-button { margin-top: 40px; }

/* ==========================================================================
   15. BLOG & ARCHIVE
   ========================================================================== */

.sh-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.sh-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: var(--sh-surface);
  transition: transform .35s var(--sh-ease-out), border-color .3s ease;
}

.sh-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 151, 231, .45);
}

.sh-post-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sh-panel);
}

.sh-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--sh-ease);
}

.sh-post-card:hover .sh-post-thumb img { transform: scale(1.05); }

.sh-post-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.sh-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--sh-muted);
  font-size: 12px;
}

.sh-post-meta a:hover { color: var(--sh-accent); }

.sh-post-card h2,
.sh-post-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -.02em;
}

.sh-post-card h2 a:hover,
.sh-post-card h3 a:hover { color: var(--sh-accent); }

.sh-post-card p {
  margin: 0 0 18px;
  color: var(--sh-muted);
  font-size: 14px;
  line-height: 1.8;
}

.sh-post-more {
  margin-top: auto;
  color: var(--sh-accent);
  font-size: 13px;
  font-weight: 600;
}

/* المقال المفرد */
.sh-single {
  padding: calc(var(--sh-header-h) + 70px) 0 90px;
}

.sh-single-head {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}

.sh-single-head h1 {
  font-size: clamp(34px, 4.5vw, 62px);
  letter-spacing: -.05em;
  margin: 0 0 22px;
}

.sh-single-head .sh-post-meta { justify-content: center; }

.sh-single-thumb {
  width: min(1100px, 100%);
  margin: 55px auto 0;
  border-radius: var(--sh-radius-lg);
  overflow: hidden;
}

.sh-single-thumb img { display: block; width: 100%; }

.sh-entry {
  width: min(760px, 100%);
  margin: 55px auto 0;
  font-size: 17px;
  line-height: 2;
  color: #d6d2dc;
}

.sh-entry > * + * { margin-top: 1.4em; }
.sh-entry h2 { margin-top: 1.8em; font-size: 32px; color: var(--sh-ink); }
.sh-entry h3 { margin-top: 1.6em; font-size: 25px; color: var(--sh-ink); }
.sh-entry a { color: var(--sh-accent); text-decoration: underline; text-underline-offset: 4px; }
.sh-entry ul,
.sh-entry ol { padding-inline-start: 22px; }
.sh-entry li + li { margin-top: .5em; }
.sh-entry img { border-radius: 18px; }

.sh-entry blockquote {
  margin-inline: 0;
  padding: 4px 26px;
  border-inline-start: 2px solid var(--sh-accent);
  color: var(--sh-ink);
  font-size: 21px;
  line-height: 1.8;
}

.sh-entry code {
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--sh-panel);
  font-size: .9em;
}

.sh-entry pre {
  direction: ltr;
  text-align: left;
  padding: 22px;
  border: 1px solid var(--sh-line);
  border-radius: 16px;
  background: #0c0c0f;
  overflow-x: auto;
}

.sh-entry table {
  width: 100%;
  border-collapse: collapse;
}

.sh-entry th,
.sh-entry td {
  padding: 12px;
  border: 1px solid var(--sh-line);
  text-align: start;
}

.sh-entry th { background: var(--sh-surface); }

.sh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  width: min(760px, 100%);
  margin: 45px auto 0;
}

.sh-tags a {
  padding: 7px 15px;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-pill);
  font-size: 12px;
  color: var(--sh-muted);
}

.sh-tags a:hover { border-color: var(--sh-accent); color: var(--sh-accent); }

.sh-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(900px, 100%);
  margin: 60px auto 0;
}

.sh-post-nav a {
  padding: 22px;
  border: 1px solid var(--sh-line);
  border-radius: 20px;
  background: var(--sh-surface);
  transition: border-color .3s ease;
}

.sh-post-nav a:hover { border-color: var(--sh-accent); }
.sh-post-nav span { display: block; margin-bottom: 6px; color: var(--sh-muted); font-size: 12px; }
.sh-post-nav strong { font-size: 16px; font-weight: 500; }
.sh-post-nav .is-next { text-align: end; }

/* ترقيم الصفحات */
.sh-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 70px;
}

.sh-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-pill);
  color: var(--sh-muted);
  font-size: 14px;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}

.sh-pagination .page-numbers:hover,
.sh-pagination .page-numbers.current {
  border-color: var(--sh-accent);
  background: rgba(180, 151, 231, .12);
  color: var(--sh-ink);
}

.sh-pagination .dots { border-color: transparent; }

/* ==========================================================================
   16. COMMENTS
   ========================================================================== */

.sh-comments {
  width: min(760px, 100%);
  margin: 80px auto 0;
  padding-top: 50px;
  border-top: 1px solid var(--sh-line);
}

.sh-comments h2 { font-size: 26px; margin-bottom: 30px; }

.sh-comments .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sh-comments .comment-list ol.children {
  margin: 20px 0 0;
  padding-inline-start: 28px;
  list-style: none;
}

.sh-comments article {
  padding: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--sh-line);
  border-radius: 20px;
  background: var(--sh-surface);
}

.sh-comments .comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sh-comments .comment-meta img { border-radius: 50%; }
.sh-comments .comment-metadata { font-size: 12px; color: var(--sh-muted); }
.sh-comments .fn { font-style: normal; font-weight: 600; }
.sh-comments .reply a { font-size: 13px; color: var(--sh-accent); }

/* ==========================================================================
   17. FORMS
   ========================================================================== */

.sh-form {
  display: grid;
  gap: 18px;
}

.sh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sh-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sh-ink);
}

.sh-field .required { color: var(--sh-accent); }

.sh-field input,
.sh-field textarea,
.sh-field select,
.sh-search-form input[type="search"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--sh-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  color: var(--sh-ink);
  font-size: 15px;
  transition: border-color .3s ease, background .3s ease;
}

.sh-field input::placeholder,
.sh-field textarea::placeholder { color: #6d6a75; }

.sh-field input:focus,
.sh-field textarea:focus,
.sh-field select:focus {
  outline: none;
  border-color: var(--sh-accent);
  background: rgba(180, 151, 231, .05);
}

.sh-field textarea { min-height: 150px; resize: vertical; }

.sh-field select option { background: var(--sh-panel); color: var(--sh-ink); }

.sh-form-note { margin: 0; font-size: 12px; color: var(--sh-muted); }

.sh-form-message {
  display: none;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 14px;
}

.sh-form-message.is-visible { display: block; }
.sh-form-message.is-success { background: rgba(112, 217, 154, .12); border: 1px solid rgba(112, 217, 154, .35); color: var(--sh-success); }
.sh-form-message.is-error { background: rgba(231, 111, 111, .12); border: 1px solid rgba(231, 111, 111, .35); color: #e76f6f; }

.sh-form button[type="submit"].is-loading {
  opacity: .6;
  pointer-events: none;
}

/* شرف الحقل الخادع لمكافحة السبام */
.sh-hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.sh-search-form {
  position: relative;
  display: flex;
  gap: 10px;
}

.sh-search-form button {
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-accent);
  color: var(--sh-accent-deep);
  font-weight: 700;
  cursor: pointer;
}

/* زر واتساب العائم */
.sh-whatsapp {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-start: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .32);
  transition: transform .3s var(--sh-ease);
}

.sh-whatsapp:hover { transform: scale(1.08); }
.sh-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

/* ==========================================================================
   18. INNER PAGES
   ========================================================================== */

.sh-page-hero {
  padding: calc(var(--sh-header-h) + 70px) 0 90px;
  background: radial-gradient(circle at 75% 15%, rgba(180, 151, 231, .18), transparent 30%);
}

.sh-page-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.06em;
  margin: 0;
}

.sh-page-hero p:not(.sh-eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--sh-muted);
  font-size: 17px;
  line-height: 1.9;
}

.sh-page-content {
  padding: 75px 0;
  min-height: 40vh;
}

.sh-breadcrumbs {
  margin-bottom: 26px;
  font-size: 12px;
  color: var(--sh-muted);
}

.sh-breadcrumbs a:hover { color: var(--sh-accent); }
.sh-breadcrumbs span[aria-hidden] { margin-inline: 8px; opacity: .5; }

/* 404 */
.sh-404 {
  display: grid;
  place-items: center;
  min-height: 78vh;
  padding: calc(var(--sh-header-h) + 40px) 0 90px;
  text-align: center;
}

.sh-404-code {
  font-family: var(--sh-font-display);
  font-size: clamp(110px, 20vw, 260px);
  line-height: .9;
  color: var(--sh-accent);
  opacity: .22;
}

.sh-404 h1 { margin: 20px 0 14px; font-size: clamp(30px, 4vw, 48px); }
.sh-404 p { max-width: 460px; margin: 0 auto 34px; color: var(--sh-muted); }

/* ==========================================================================
   19. FOOTER
   ========================================================================== */

.sh-footer {
  padding: 70px 0 40px;
  border-top: 1px solid var(--sh-line);
  color: var(--sh-muted);
}

.sh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.sh-footer .sh-logo { margin-bottom: 18px; }

.sh-footer p {
  max-width: 330px;
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.sh-footer h3 {
  margin: 0 0 16px;
  color: var(--sh-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.sh-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.sh-footer li + li { margin-top: 10px; }
.sh-footer li a:hover { color: var(--sh-accent); }

.sh-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.sh-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sh-line);
  border-radius: 50%;
  transition: border-color .3s ease, color .3s ease;
}

.sh-social a:hover { border-color: var(--sh-accent); color: var(--sh-accent); }
.sh-social svg { width: 16px; height: 16px; fill: currentColor; }

.sh-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 55px;
  padding-top: 26px;
  border-top: 1px solid var(--sh-line-soft);
  font-size: 12px;
}

.sh-payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .75;
}

.sh-payment-icons img { height: 22px; width: auto; }

/* ==========================================================================
   20. UTILITIES
   ========================================================================== */

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sh-center { text-align: center; }
.sh-mx-auto { margin-inline: auto; }
.sh-mt-0 { margin-top: 0; }

.alignwide { width: min(1200px, 100%); margin-inline: auto; }
.alignfull { width: 100vw; margin-inline: calc(50% - 50vw); max-width: none; }
.aligncenter { display: block; margin-inline: auto; }

/* ==========================================================================
   21. MOTION
   ========================================================================== */

.sd-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--sh-ease), transform .8s var(--sh-ease);
}

.sd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sd-reveal { opacity: 1; transform: none; transition: none; }
  .sh-hero-copy { animation: none; }
  .sh-testimonial-track { transition: none; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   22. RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .sh-footer-grid { grid-template-columns: 1fr 1fr; }
  .sh-post-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-service-grid,
  .sh-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-faq-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 800px) {
  :root {
    --sh-gutter: 32px;
    --sh-section-y: 85px;
    --sh-header-h: 84px;
  }

  body.sh-menu-open { overflow: hidden; }

  /* Header */
  .sh-header { padding: 14px 0; }
  .sh-header .sh-wrap { width: calc(100% - 28px); }
  .sh-nav {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
    min-height: 58px;
    padding: 6px 9px;
    background: rgba(5, 5, 7, .56);
  }
  .sh-logo { width: 112px; }
  .sh-logo img { max-height: 29px; }
  .sh-nav-actions { grid-column: 2; }
  .sh-menu-toggle { display: grid; }

  .sh-menu {
    display: none;
    position: fixed;
    inset: 76px 14px auto;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--sh-line);
    border-radius: 22px;
    background: rgba(8, 7, 11, .96);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  }

  .sh-header.menu-open .sh-menu { display: flex; }
  .sh-menu li { width: 100%; }
  .sh-menu a {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-bottom: 1px solid var(--sh-line-soft);
    font-size: 15px;
  }
  .sh-menu li:last-child > a { border-bottom: 0; }
  .sh-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .sh-button--small { padding: 10px 15px; font-size: 12px; white-space: nowrap; }

  /* Hero */
  .sh-hero { height: auto; min-height: 820px; }
  .sh-hero::after {
    background: linear-gradient(180deg, rgba(3, 3, 4, .1), rgba(3, 3, 4, .8) 60%, var(--sh-bg));
  }
  .sh-hero-video { inset: 40% 0 0; width: 100%; height: 60%; }
  .sh-hero-video video,
  .sh-hero-video img { object-fit: cover; transform: none; }
  .sh-hero-video::after {
    background: linear-gradient(180deg, var(--sh-bg) 0%, rgba(3, 3, 4, .05) 32%, var(--sh-bg) 100%);
  }
  .sh-hero-copy { inset-block-start: 16%; inset-inline-end: 8%; width: 84%; }
  .sh-hero h1 { font-size: 48px; }
  .sh-hero-actions { gap: 14px; flex-wrap: wrap; }
  .sh-hero-meta { display: none; }

  /* Editorial */
  .sh-editorial { padding: 95px 0 80px; }
  .sh-editorial-head { grid-template-columns: 1fr; gap: 22px; padding-bottom: 42px; }
  .sh-editorial-lines > div { grid-template-columns: 48px 1fr; min-height: 118px; }
  .sh-editorial-lines > div:hover { padding-inline: 0; background: transparent; }
  .sh-editorial-lines h2 { font-size: 38px; }
  .sh-editorial-lines > div:nth-child(even) h2 { padding-inline-end: 0; }

  /* Sections */
  #services,
  #works { padding-top: 95px; }
  .sh-grid { grid-template-columns: 1fr; gap: 25px; }
  #services .sh-card { min-height: 430px; }
  #services .sh-list { margin-top: 34px; }
  .sh-code { transform: none; }

  #works .sh-work-grid,
  .sh-work-grid { grid-template-columns: 1fr; gap: 18px; }
  #works .sh-project,
  #works .sh-project:nth-child(3) {
    grid-column: auto;
    min-height: 390px;
    padding: 25px;
    border-radius: 25px;
  }
  #works .sh-project::before { font-size: 120px; }

  .sh-testimonials { padding: 90px 0; }
  .sh-testimonial-inner { padding: 28px; border-radius: var(--sh-radius); }
  .sh-testimonial-viewport { margin-top: 40px; }

  .sh-faq { padding: 90px 0; }
  .sh-faq-question { padding: 20px 0; }
  .sh-faq-question:hover { padding-inline: 0; }

  .sh-service-grid,
  .sh-pricing-grid,
  .sh-post-grid { grid-template-columns: 1fr; gap: 18px; }

  .sh-cta { padding: 40px 0 80px; }
  .sh-cta-inner { min-height: 430px; padding: 25px; border-radius: 28px; }

  /* Blog */
  .sh-single { padding-top: calc(var(--sh-header-h) + 46px); }
  .sh-single-thumb { margin-top: 36px; border-radius: 20px; }
  .sh-entry { margin-top: 36px; font-size: 16px; }
  .sh-post-nav { grid-template-columns: 1fr; }
  .sh-comments .comment-list ol.children { padding-inline-start: 14px; }

  /* Forms */
  .sh-form-row { grid-template-columns: 1fr; }

  /* Pages */
  .sh-page-hero { padding: calc(var(--sh-header-h) + 46px) 0 60px; }
  .sh-page-content { padding: 55px 0; }

  /* Footer */
  .sh-footer { padding: 55px 0 32px; }
  .sh-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .sh-footer-bottom { margin-top: 38px; }

  .sh-whatsapp { inset-block-end: 18px; inset-inline-start: 18px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .sh-nav { grid-template-columns: 116px minmax(0, 1fr); }
  .sh-logo { width: 108px; }
  .sh-nav-actions .sh-button--small { display: none; }
}
