/* ==========================================================================
   شركة الإخلاص للتوريدات العمومية — Main stylesheet
   Palette lifted from the company logo: royal blue + orange + white
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --blue-950: #070E38;
  --blue-900: #0B1550;
  --blue-800: #121F72;
  --blue: #1B2A9E;
  --blue-600: #2C3CC2;
  --blue-300: #8892E0;
  --blue-100: #DDE2F8;
  --blue-50: #EEF1FC;

  --orange: #F5851F;
  --orange-600: #DC6E0B;
  --orange-300: #FBB96F;
  --orange-50: #FFF4E8;

  --ink: #131735;
  --muted: #5A6183;
  --line: #E2E7F5;
  --white: #FFFFFF;
  --bg-soft: #F5F7FD;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(11, 21, 80, .06);
  --shadow: 0 10px 30px rgba(11, 21, 80, .08);
  --shadow-lg: 0 24px 60px rgba(11, 21, 80, .16);

  --header-h: 74px;
  --container: 1200px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Tajawal", "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: "Cairo", "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 .6em;
  color: var(--blue-900);
  letter-spacing: 0;
}

h1 { font-size: clamp(1.85rem, 1.1rem + 3vw, 3.15rem); }
h2 { font-size: clamp(1.5rem, 1rem + 2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, .95rem + .8vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange); }

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

ul, ol { margin: 0 0 1.1em; padding-inline-start: 1.35em; }
li { margin-bottom: .4em; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 50%;
  top: -100px;
  transform: translateX(50%);
  z-index: 2000;
  background: var(--orange);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 52px);
  text-align: center;
}
.section-head.start { text-align: start; margin-inline: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-50);
  color: var(--orange-600);
  border: 1px solid #FBDCBB;
  font-weight: 700;
  font-size: .82rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  line-height: 1.6;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}
.eyebrow--light {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.lead { font-size: 1.1rem; color: var(--muted); }

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

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: "Cairo", "Tajawal", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.4;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(245, 133, 31, .32); }
.btn-primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 12px 28px rgba(245, 133, 31, .4); }

.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(27, 42, 158, .28); }
.btn-blue:hover { background: var(--blue-800); color: #fff; }

.btn-outline { border-color: var(--blue-100); background: #fff; color: var(--blue); }
.btn-outline:hover { border-color: var(--blue); background: var(--blue-50); color: var(--blue); }

.btn-light { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .5); color: #fff; backdrop-filter: blur(6px); }
.btn-light:hover { background: #fff; color: var(--blue-900); border-color: #fff; }

.btn-wa { background: #1FA855; color: #fff; box-shadow: 0 8px 22px rgba(31, 168, 85, .28); }
.btn-wa:hover { background: #17914a; color: #fff; }

.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 5. Top bar ---------- */
.topbar {
  background: var(--blue-950);
  color: #C9D0F2;
  font-size: .85rem;
  line-height: 1.6;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  padding-block: 6px;
}
.topbar-list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: #C9D0F2; }
.topbar-item svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.topbar-item:hover { color: #fff; }
.topbar-slogan {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* ---------- 6. Header / navigation ---------- */
/* No backdrop-filter / transform / filter here on purpose: any of them would
   make the header the containing block for its position:fixed descendants,
   which would trap the mobile nav panel inside the 66px header strip. */
.site-header {
  position: sticky;
  top: 0;
  /* Above .nav-overlay (940): the nav panel lives inside this header, so the
     header's stacking context decides whether the panel is dimmed or not. */
  z-index: 960;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(11, 21, 80, .1); }

.nav-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 52px; height: 52px; object-fit: contain; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--blue-900);
}
.brand-sub { font-size: .74rem; color: var(--muted); font-weight: 500; }

.nav-menu { margin-inline-start: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: block;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--blue-900);
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav-link:hover { background: var(--blue-50); color: var(--blue); }
.nav-link.is-active { background: var(--blue); color: #fff; }
.nav-link.is-active:hover { background: var(--blue-800); color: #fff; }

.nav-cta { flex: none; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  flex: none;
  margin-inline-start: auto;
  position: relative;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.nav-toggle:hover { background: var(--blue-50); border-color: var(--blue-100); }
.nav-toggle .bar {
  display: block;
  position: absolute;
  inset-inline-start: 50%;
  width: 22px;
  height: 2.5px;
  margin-inline-start: -11px;
  border-radius: 2px;
  background: var(--blue-900);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle .bar:nth-child(1) { top: 15px; }
.nav-toggle .bar:nth-child(2) { top: 21.5px; }
.nav-toggle .bar:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] { background: var(--blue); border-color: var(--blue); }
.nav-toggle[aria-expanded="true"] .bar { background: #fff; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { top: 21.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { top: 21.5px; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 14, 56, .55);
  opacity: 0;
  visibility: hidden;
  z-index: 940;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
  backdrop-filter: blur(2px);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- 7. Hero (home) ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-950);
  isolation: isolate;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.2s var(--ease), transform 7s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to left, rgba(7, 14, 56, .34) 0%, rgba(7, 14, 56, .82) 55%, rgba(7, 14, 56, .95) 100%),
    linear-gradient(to top, rgba(7, 14, 56, .7), transparent 55%);
}
.hero-inner { padding-block: clamp(70px, 10vw, 120px); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .45em; text-shadow: 0 2px 20px rgba(0, 0, 0, .3); }
.hero h1 .accent { color: var(--orange); }
.hero-text {
  color: #D6DBF4;
  font-size: clamp(1rem, .95rem + .35vw, 1.16rem);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}
.hero-dot {
  width: 34px;
  height: 5px;
  border-radius: 4px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.hero-dot.is-active { background: var(--orange); width: 52px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 15px;
  font-size: .84rem;
  font-weight: 600;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

/* ---------- 8. Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(125deg, var(--blue-950) 0%, var(--blue) 65%, var(--blue-600) 100%);
  color: #fff;
  padding: clamp(48px, 7vw, 84px) 0 clamp(44px, 6vw, 72px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset-block-start: -140px;
  inset-inline-end: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 133, 31, .34), transparent 68%);
  z-index: -1;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset-block-end: -180px;
  inset-inline-start: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 70%);
  z-index: -1;
}
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: #C6CDF0; max-width: 640px; margin-bottom: 0; }

.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 0; margin: 0 0 18px; font-size: .88rem; }
.breadcrumb li { margin: 0; color: #A8B2E4; display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "‹"; color: #6B78C0; }
.breadcrumb a { color: #C6CDF0; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb [aria-current] { color: var(--orange); font-weight: 700; }

/* ---------- 9. Stats ---------- */
.stats-band {
  background: var(--blue-900);
  color: #fff;
  padding: clamp(30px, 4vw, 44px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.stat { text-align: center; padding: 6px 10px; border-inline-start: 1px solid rgba(255, 255, 255, .13); }
.stat:first-child { border-inline-start: 0; }
.stat-num {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem);
  color: var(--orange);
  line-height: 1.2;
  display: block;
}
.stat-label { font-size: .92rem; color: #BCC4EC; line-height: 1.6; }

/* ---------- 10. Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 0; }

.card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue);
  margin-bottom: 20px;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  flex: none;
}
.card-icon svg { width: 30px; height: 30px; }
.card:hover .card-icon { background: var(--orange); color: #fff; transform: rotate(-6deg) scale(1.06); }

.card-link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .92rem;
  font-family: "Cairo", sans-serif;
  color: var(--blue);
}
.card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(-5px); }

/* numbered service card */
.card--num { position: relative; overflow: hidden; }
.card--num::after {
  content: attr(data-num);
  position: absolute;
  inset-block-start: 6px;
  inset-inline-end: 14px;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 4.2rem;
  color: var(--blue-50);
  line-height: 1;
  pointer-events: none;
  transition: color .3s var(--ease);
}
.card--num:hover::after { color: var(--orange-50); }
.card--num > * { position: relative; z-index: 1; }

/* feature (why us) */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 100%;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-check {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: grid;
  place-items: center;
  flex: none;
}
.feature-check svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.05rem; margin-bottom: .3em; }
.feature p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- 11. Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-media::before {
  content: "";
  position: absolute;
  inset-block-start: -18px;
  inset-inline-start: -18px;
  width: 130px; height: 130px;
  border: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split-badge {
  position: absolute;
  inset-block-end: -22px;
  inset-inline-end: -14px;
  background: var(--blue);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 190px;
}
.split-badge strong {
  font-family: "Cairo", sans-serif;
  font-size: 1.7rem;
  display: block;
  color: var(--orange);
  line-height: 1.2;
}
.split-badge span { font-size: .82rem; color: #C9D0F2; line-height: 1.5; display: block; }

.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li {
  position: relative;
  padding-inline-start: 32px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .55em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC6E0B' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

/* ---------- 12. Products / shop ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-900);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.chip:hover { border-color: var(--blue-300); background: var(--blue-50); }
.chip[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }

.shop-search {
  max-width: 460px;
  margin: 0 auto 34px;
  position: relative;
}
.shop-search input {
  width: 100%;
  padding: 14px 48px 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: .98rem;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.shop-search input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 42, 158, .1);
}
.shop-search svg {
  position: absolute;
  inset-inline-start: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--muted);
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.product.is-hidden { display: none; }

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue-50);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product:hover .product-media img { transform: scale(1.07); }
.product-tag {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  background: rgba(11, 21, 80, .86);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.1rem; margin-bottom: .4em; }
.product-body p { color: var(--muted); font-size: .93rem; margin-bottom: 14px; }
.product-specs { list-style: none; padding: 0; margin: 0 0 16px; }
.product-specs li {
  font-size: .89rem;
  color: var(--muted);
  padding-inline-start: 18px;
  position: relative;
  margin-bottom: 5px;
}
.product-specs li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .72em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.brands { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 18px; }
.brand-chip {
  background: var(--blue-50);
  color: var(--blue-800);
  border: 1px solid var(--blue-100);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  letter-spacing: .2px;
}
.product .btn { margin-top: auto; }

.empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty-state.is-visible { display: block; }
.empty-state svg { width: 56px; height: 56px; color: var(--blue-300); margin: 0 auto 16px; }

/* ---------- 13. Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--blue-50);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(to top, rgba(7, 14, 56, .9), transparent);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  text-align: start;
  line-height: 1.5;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(4, 8, 32, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { margin: 0; max-width: 1100px; width: 100%; text-align: center; }
.lightbox img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox figcaption { color: #D6DBF4; margin-top: 16px; font-size: .95rem; }
.lightbox-count { color: #8790C4; font-size: .85rem; margin-top: 4px; }
.lb-btn {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lb-btn:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.06); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { inset-block-start: 20px; inset-inline-end: 20px; }
.lb-prev { inset-inline-end: 20px; top: 50%; margin-top: -25px; }
.lb-next { inset-inline-start: 20px; top: 50%; margin-top: -25px; }

/* ---------- 14. Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step { text-align: center; position: relative; }
.step::after {
  content: "";
  position: absolute;
  top: 34px;
  inset-inline-end: -12px;
  width: calc(100% - 68px);
  height: 2px;
  background: repeating-linear-gradient(to left, var(--blue-100) 0 8px, transparent 8px 16px);
  transform: translateX(50%);
  z-index: 0;
}
.step:last-child::after { display: none; }
.step-num {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-100);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  transition: all .3s var(--ease);
}
.step:hover .step-num { background: var(--orange); border-color: var(--orange); color: #fff; transform: scale(1.07); }
.step h3 { font-size: 1.05rem; margin-bottom: .35em; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- 15. CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--blue-900), var(--blue) 60%, var(--blue-600));
  color: #fff;
  padding: clamp(48px, 6vw, 76px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset-block-start: -160px;
  inset-inline-start: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 133, 31, .3), transparent 70%);
  z-index: -1;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C6CDF0; max-width: 620px; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-slogan {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  color: var(--orange);
  margin-bottom: .2em;
}

/* ---------- 16. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
}
.info-ico svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1rem; margin-bottom: .25em; }
.info-card p, .info-card a { font-size: .95rem; color: var(--muted); margin: 0; }
.info-card a { display: block; direction: ltr; text-align: start; unicode-bidi: embed; }
.info-card a:hover { color: var(--orange); }

.phone-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  margin: 0;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
  flex-wrap: wrap;
}
.phone-row:hover { border-color: var(--blue-300); background: var(--blue-50); }
.phone-num {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  direction: ltr;
  color: var(--blue-900);
  font-size: 1.02rem;
  letter-spacing: .5px;
}
.phone-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.icon-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.icon-btn.wa:hover { background: #1FA855; border-color: #1FA855; }
.icon-btn svg { width: 18px; height: 18px; }
.badge-main {
  background: var(--orange-50);
  color: var(--orange-600);
  border: 1px solid #FBDCBB;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 7px;
  color: var(--blue-900);
}
.field .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .97rem;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 42, 158, .1);
}
.field input[type="tel"] { direction: ltr; text-align: start; }
.field-error {
  display: none;
  color: #D93025;
  font-size: .84rem;
  margin-top: 6px;
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #D93025; }
.field.has-error .field-error { display: block; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 14px; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #E8F6EE;
  border: 1px solid #B7E3C9;
  color: #17734A;
  font-size: .94rem;
}
.form-status.is-visible { display: block; }

/* Explicit width + height, no aspect-ratio: `aspect-ratio` together with
   `min-height` lets the box derive its WIDTH from the min height, which
   blew past the viewport on phones. */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--blue-50);
  position: relative;
  width: 100%;
  height: clamp(320px, 46vw, 520px);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 17. Footer ---------- */
.site-footer {
  position: relative;
  background: var(--blue-950);
  color: #A9B2DC;
  padding-block: clamp(48px, 6vw, 72px) 104px;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 3vw, 44px);
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 38px; height: 3px;
  border-radius: 2px;
  background: var(--orange);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 58px; height: 58px; object-fit: contain; }
.footer-brand strong { color: #fff; font-family: "Cairo", sans-serif; font-size: 1.08rem; display: block; line-height: 1.4; }
.footer-brand span { color: var(--orange); font-size: .85rem; font-weight: 700; }
.footer-col p { color: #A9B2DC; font-size: .93rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #A9B2DC; font-size: .94rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: "‹"; color: var(--orange); font-size: 1.1rem; line-height: 1; }
.footer-links a:hover { color: #fff; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange); flex: none; margin-top: 5px; }
.footer-contact a, .footer-contact span { color: #A9B2DC; font-size: .93rem; line-height: 1.7; }
.footer-contact a { direction: ltr; unicode-bidi: embed; display: block; text-align: start; width: fit-content; }
.footer-contact a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  display: grid;
  place-items: center;
  transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 26px;
  text-align: center;
}
.footer-bottom p { margin: 0 0 6px; font-size: .89rem; color: #8B95C7; }
.powered {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  letter-spacing: .4px;
  direction: ltr;
}
.powered span { color: var(--orange); }

/* ---------- 18. Developer widget (footer, bottom-left) ---------- */
.dev-widget {
  position: absolute;
  inset-block-end: 24px;
  inset-inline-start: auto;
  left: 24px;
  z-index: 20;
  font-family: "Cairo", "Tajawal", sans-serif;
  direction: ltr;
}

.dev-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #101A4E;
  border: 1px solid #26317A;
  border-radius: 12px;
  padding: 9px 15px;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background-color .25s var(--ease);
}
.dev-btn:hover { border-color: var(--orange); transform: translateY(-2px); background: #14205C; }
.dev-btn .dev-label { color: #7C86BE; font-size: .8rem; font-weight: 500; }
.dev-btn .dev-name { color: #fff; font-size: .92rem; font-weight: 800; font-style: italic; white-space: nowrap; }
.dev-btn .dev-code { color: var(--orange); font-size: .95rem; font-weight: 800; letter-spacing: -1px; }

.dev-card {
  position: absolute;
  inset-block-end: calc(100% + 12px);
  left: 0;
  width: 290px;
  max-width: calc(100vw - 40px);
  background: #0B1240;
  border: 1px solid #26317A;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.97);
  transform-origin: bottom left;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
}
.dev-widget.is-open .dev-card { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dev-widget.is-open .dev-btn { border-color: var(--orange); }

.dev-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.dev-card-top h5 { margin: 0 0 4px; color: #fff; font-size: 1.05rem; font-weight: 800; line-height: 1.3; }
.dev-card-top p { margin: 0; color: var(--orange); font-size: .68rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.dev-avatar {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  flex: none;
  letter-spacing: .5px;
}
.dev-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px;
  border: 1px solid #26317A;
  border-radius: 11px;
  background: #0F1749;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  transition: all .22s var(--ease);
}
.dev-wa:hover { background: #1FA855; border-color: #1FA855; color: #fff; }
.dev-wa svg { width: 19px; height: 19px; flex: none; }
.dev-phone {
  margin: 10px 0 0;
  text-align: center;
  color: #7C86BE;
  font-size: .84rem;
  letter-spacing: .6px;
}

/* ---------- 19. Floating WhatsApp ----------
   Physical `right` on purpose: the dev widget owns the bottom-left corner,
   and a logical inset would flip this button onto it in RTL. */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 800;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1FA855;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(31, 168, 85, .45);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.wa-float:hover { transform: scale(1.09); background: #17914a; color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #1FA855;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ---------- 20. Scroll reveal ----------
   Scoped to .js so the content is always visible when JS is off or fails. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-link { padding: 9px 11px; font-size: .9rem; }
  .brand-sub { display: none; }
}

@media (max-width: 991px) {
  :root { --header-h: 66px; }

  .topbar { display: none; }

  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    /* Leave room for the toggle button (20px padding + 46px button + gap)
       so the open panel never sits on top of it. */
    width: min(330px, calc(100% - 92px));
    background: #fff;
    z-index: 950;
    padding: 22px 20px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -12px 0 40px rgba(11, 21, 80, .18);
    margin-inline-start: 0;
    display: flex;
    flex-direction: column;
  }
  .nav-menu.is-open { transform: translateX(0); }

  .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .nav-panel-head .brand-name { font-size: .98rem; }
  .nav-close {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--blue-900);
    display: grid;
    place-items: center;
    cursor: pointer;
    flex: none;
    transition: all .2s var(--ease);
  }
  .nav-close:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
  .nav-close svg { width: 20px; height: 20px; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-link::after {
    content: "‹";
    color: var(--blue-300);
    font-size: 1.2rem;
    line-height: 1;
  }
  .nav-link.is-active::after { color: rgba(255, 255, 255, .7); }

  .nav-panel-foot { margin-top: auto; padding-top: 22px; display: grid; gap: 10px; }
  .nav-panel-foot .btn { width: 100%; }
  .nav-panel-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--muted);
    font-size: .9rem;
    padding-top: 6px;
  }
  .nav-panel-phone svg { width: 16px; height: 16px; color: var(--orange); }
  .nav-panel-phone strong { direction: ltr; color: var(--blue-900); font-family: "Cairo", sans-serif; }

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

  .split { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .split-media { max-width: 560px; margin-inline: auto; width: 100%; }
  .split-media::before { display: none; }
  .split-badge { inset-inline-end: 12px; inset-block-end: -18px; }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
  .step::after { display: none; }

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

  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 12px; }
  .stat:nth-child(odd) { border-inline-start: 0; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 992px) {
  .nav-panel-head, .nav-panel-foot, .nav-overlay { display: none !important; }
}

@media (max-width: 767px) {
  body { font-size: 16px; line-height: 1.8; }

  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: .95rem; }

  .hero { min-height: 0; }
  .hero-inner { padding-block: 72px 62px; }
  .hero-text { font-size: 1rem; }
  .btn-group .btn { flex: 1 1 auto; min-width: 0; }

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

  .card { padding: 24px 20px; }
  .card--num::after { font-size: 3.4rem; }

  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; padding-bottom: 32px; }
  .footer-col h4 { margin-bottom: 16px; }
  .site-footer { padding-block-end: 112px; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .gallery-cap { opacity: 1; transform: none; font-size: .78rem; padding: 24px 10px 10px; }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }

  .lb-prev, .lb-next { width: 42px; height: 42px; margin-top: 0; top: auto; inset-block-end: 22px; }
  .lb-prev { inset-inline-end: calc(50% - 56px); }
  .lb-next { inset-inline-start: calc(50% - 56px); }
  .lightbox img { max-height: 62vh; }
  .lightbox figcaption { font-size: .88rem; }

  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }

  .filter-bar { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; margin-inline: -20px; padding-inline: 20px; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }

  .phone-row { justify-content: space-between; }
}

@media (max-width: 479px) {
  .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .stats-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .stat { border-inline-start: 0; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .btn { padding: 12px 20px; font-size: .93rem; }
  .btn-group { gap: 10px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .dev-widget { left: 16px; inset-block-end: 18px; }
  .dev-btn { padding: 8px 12px; gap: 7px; }
  .dev-btn .dev-name { font-size: .85rem; }
  .split-badge { position: static; max-width: none; margin-top: 18px; }
}

/* ---------- 22. Motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero-slide { transform: none; }
}

@media print {
  .site-header, .site-footer, .wa-float, .dev-widget, .nav-overlay, .lightbox { display: none !important; }
  body { color: #000; }
}
