/* =========================================================
   شركة جودة الميثاق للتجارة العامة
   الألوان مأخوذة من شعار الشركة: كحلي + ذهبي
   ========================================================= */

:root {
  /* ---- هوية الشركة ---- */
  --navy:        #12294a;
  --navy-deep:   #0b1830;
  --navy-soft:   #1c3a63;
  --gold:        #e4a11b;
  --gold-deep:   #c4870d;
  --gold-tint:   #fdf3dd;

  /* ---- محايدات مائلة للكحلي ---- */
  --ink:         #16203a;
  --ink-soft:    #4a5670;
  --ink-faint:   #8592ab;
  --bg:          #ffffff;
  --paper:       #f7f5f1;
  --surface:     #ffffff;
  --line:        #e4e2dd;
  --line-soft:   #f0eee9;

  --radius:      14px;
  --radius-sm:   9px;
  --shadow:      0 1px 2px rgba(18,41,74,.05), 0 10px 28px rgba(18,41,74,.07);
  --shadow-lg:   0 18px 50px rgba(18,41,74,.16);
  --container:   1180px;
  --header-h:    76px;

  --header-bg:   rgba(255,255,255,.92);
  --footer-link: #b9c4d6;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --navy:      #6f9fdc;
    --navy-soft: #8fb6e8;
    --gold-tint: rgba(228,161,27,.14);
    --ink:       #e8edf6;
    --ink-soft:  #a4b2c8;
    --ink-faint: #6f7f98;
    --bg:        #0a1220;
    --paper:     #0f1a2c;
    --surface:   #121e33;
    --line:      #21304a;
    --line-soft: #1a2740;
    --header-bg: rgba(10,18,32,.92);
    --shadow:    0 1px 2px rgba(0,0,0,.35), 0 10px 28px rgba(0,0,0,.4);
    --shadow-lg: 0 18px 50px rgba(0,0,0,.55);
  }
}
:root[data-theme="dark"] {
  --navy:      #6f9fdc;
  --navy-soft: #8fb6e8;
  --gold-tint: rgba(228,161,27,.14);
  --ink:       #e8edf6;
  --ink-soft:  #a4b2c8;
  --ink-faint: #6f7f98;
  --bg:        #0a1220;
  --paper:     #0f1a2c;
  --surface:   #121e33;
  --line:      #21304a;
  --line-soft: #1a2740;
  --header-bg: rgba(10,18,32,.92);
  --shadow:    0 1px 2px rgba(0,0,0,.35), 0 10px 28px rgba(0,0,0,.4);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.55);
}

/* ---------- إعادة ضبط ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; }

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

.skip {
  position: absolute; inset-inline-start: -9999px; top: 8px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 8px;
}
.skip:focus { inset-inline-start: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

/* ---------- الطباعة ---------- */
h1, h2, h3 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  line-height: 1.28;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.35rem); font-weight: 800; letter-spacing: -.01em; }
h3 { font-size: 1.12rem; font-weight: 700; }

p { max-width: 68ch; }

.eyebrow {
  font-family: 'Barlow Condensed', 'Cairo', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 46px; height: 3px;
  background: var(--gold);
  margin-top: 8px;
  border-radius: 2px;
}

.lead { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- الأزرار ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform .16s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #17233c; }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-sm { padding: 9px 18px; font-size: .93rem; }
.btn-block { width: 100%; }

/* ---------- الشريط العلوي ---------- */
.site-header {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  height: var(--header-h);
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow); }

.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 18px;
}

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand-logo {
  width: 52px; height: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 6px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text b { font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 1.08rem; }
.brand-text small { font-size: .76rem; color: var(--ink-faint); }

.nav { display: flex; gap: 2px; margin-inline-start: auto; }
.nav a {
  padding: 8px 13px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: .96rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .18s, background .18s;
}
.nav a:hover, .nav a.active { color: var(--navy); background: var(--gold-tint); }

.header-cta { flex: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-inline-start: auto; }
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- الواجهة ---------- */
.hero {
  position: relative;
  padding-block: calc(var(--header-h) + 74px) 0;
  background: var(--navy-deep);
  color: #fff;
}
/* القصّ على طبقة الصورة فقط — لئلا يُقصّ شريط الأرقام البارز أسفل الواجهة */
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 78%;
  opacity: .42;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(255deg, rgba(11,24,48,.55) 0%, rgba(11,24,48,.88) 48%, rgba(11,24,48,.97) 100%),
    linear-gradient(180deg, rgba(11,24,48,.55), transparent 30%, rgba(11,24,48,.92)),
    radial-gradient(60% 55% at 20% 30%, rgba(228,161,27,.16), transparent 70%);
}
.hero-inner { position: relative; padding-bottom: 66px; }

.since {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.since span { font-size: 1.25em; }

.hero h1 { color: #fff; margin-bottom: 20px; max-width: 17ch; }
.hero-sub { color: #cfd9e8; font-size: 1.14rem; max-width: 56ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(50%);
  margin-top: -1px;
}
.facts li {
  padding: 22px 24px;
  border-inline-start: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 2px;
}
.facts li:first-child { border-inline-start: 0; }
.facts b {
  font-family: 'Cairo', sans-serif;
  font-size: 1.75rem; font-weight: 900; line-height: 1.15;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.facts span { font-size: .86rem; color: var(--ink-faint); line-height: 1.5; }

/* ---------- الأقسام ---------- */
.section { padding-block: 92px; }
#about { padding-block: calc(92px + 62px) 92px; }
.section-paper { background: var(--paper); }
.section-head { margin-bottom: 44px; max-width: 64ch; }

/* ---------- من نحن ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
}
.about-grid p + p { margin-top: 14px; color: var(--ink-soft); }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.pillars li {
  padding-inline-start: 16px;
  border-inline-start: 3px solid var(--gold);
  display: flex; flex-direction: column;
}
.pillars b { font-family: 'Cairo', sans-serif; font-size: 1rem; }
.pillars span { font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }

.about-figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.about-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-figure figcaption {
  padding: 12px 18px;
  font-size: .88rem;
  color: var(--ink-faint);
}

/* ---------- أقسام الإطارات ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.cat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cat-img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat:hover .cat-img img { transform: scale(1.05); }

.cat-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-deep);
  line-height: 1;
}
.cat-body p { color: var(--ink-soft); font-size: .95rem; }

.cat-cta {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  justify-content: center;
}
.cat-cta .cat-body { gap: 12px; padding: 34px 26px; }
.cat-cta h3 { color: #fff; }
.cat-cta p { color: #c3d0e4; font-size: .96rem; }
.cat-cta .btn { align-self: flex-start; margin-top: 6px; }

/* ---------- الماركات ---------- */
.section-navy { background: var(--navy-deep); color: #fff; }
.section-navy h2 { color: #fff; }
.section-navy .lead { color: #b9c7dc; }
.section-navy .eyebrow { color: var(--gold); }

.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .brands { grid-template-columns: repeat(2, 1fr); } }
.brands li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: center;
  padding: 26px 16px;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  transition: background .22s, border-color .22s, color .22s;
}
.brands li:hover { background: rgba(228,161,27,.14); border-color: var(--gold); color: var(--gold); }

/* ---------- شبكة التوزيع ---------- */
.net-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.tags li {
  padding: 8px 16px;
  background: var(--gold-tint);
  color: var(--navy);
  border: 1px solid rgba(228,161,27,.35);
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 500;
}

.vm { display: grid; gap: 18px; }
.vm-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.vm-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.vm-card p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- المعرض ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.shot {
  position: relative;
  display: block;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease;
}
.shot img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s ease; }
.shot:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.shot:hover img { transform: scale(1.06); }
.shot span {
  position: absolute;
  inset-block-end: 0; inset-inline: 0;
  padding: 22px 14px 10px;
  font-size: .88rem; font-weight: 500;
  color: #fff;
  text-align: start;
  background: linear-gradient(180deg, transparent, rgba(11,24,48,.85));
}

/* ---------- عارض الصور ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,13,26,.94);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 60px 16px 70px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  grid-column: 2;
  max-width: 100%; max-height: 100%;
  margin: auto;
  object-fit: contain;
  border-radius: 8px;
}
.lb-close {
  position: absolute; inset-block-start: 14px; inset-inline-end: 18px;
  width: 44px; height: 44px;
  font-size: 1.4rem; color: #fff;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-nav {
  width: 50px; height: 50px;
  font-size: 2.2rem; line-height: 1;
  color: #fff;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  flex: none;
}
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-prev { grid-column: 3; }   /* RTL: السابق يمين */
.lb-next { grid-column: 1; }
.lb-cap {
  position: absolute; inset-block-end: 22px; inset-inline: 0;
  text-align: center; color: #dbe3f0; font-size: .95rem;
}

/* ---------- التواصل ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-list { margin-top: 28px; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--gold-tint);
  border: 1px solid rgba(228,161,27,.3);
  border-radius: 11px;
  font-size: 1.05rem;
}
.contact-list > li > div { display: flex; flex-direction: column; }
.contact-list b {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.contact-list a { font-weight: 500; width: fit-content; }
.contact-list a:hover { color: var(--gold-deep); text-decoration: underline; }

.form {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .92rem; font-weight: 500; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  resize: vertical;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(228,161,27,.2);
}
.field.invalid input, .field.invalid textarea { border-color: #d33; box-shadow: 0 0 0 3px rgba(221,51,51,.14); }

.btn-wa { background: #25d366; color: #0a2e18; gap: 9px; }
.btn-wa:hover { background: #1eb855; color: #fff; }

.form-alt { margin-top: 12px; text-align: center; font-size: .92rem; color: var(--ink-faint); }
.form-alt a { color: var(--navy); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.form-alt a:hover { color: var(--gold-deep); }

.form-note { margin-top: 10px; font-size: .92rem; text-align: center; min-height: 1.5em; }
.form-note.ok  { color: #157a4a; }
.form-note.err { color: #c62828; }

/* ---------- التذييل ---------- */
.site-footer { background: var(--navy-deep); color: var(--footer-link); padding-top: 58px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 42px;
}
.footer-brand img { background: #fff; border-radius: 8px; padding: 5px 8px; margin-bottom: 14px; }
.footer-brand b { display: block; color: #fff; font-family: 'Cairo', sans-serif; font-size: 1.05rem; }
.footer-brand p { font-size: .92rem; margin-top: 4px; }
.footer-brand .muted { color: #8fa0ba; margin-top: 10px; }

.footer-col { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer-col b { color: #fff; margin-bottom: 4px; }
.footer-col a:hover { color: var(--gold); }
.footer-col span { font-size: .92rem; }

.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 20px;
  font-size: .87rem;
  text-align: center;
  color: #8fa0ba;
}

/* ---------- سطر اعتماد المنفّذ (دجلة كود) ---------- */
.credit-bar {
  background: rgba(0,0,0,.28);
  border-top: 1px solid rgba(255,255,255,.07);
}
.credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding-block: 14px;
  font-size: .84rem;
  color: #7f90ab;
}
.credit-label { letter-spacing: .01em; }

.credit-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  transition: background .2s ease;
}
.credit-brand:hover { background: rgba(255,255,255,.06); }

.dc {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
}
.credit-name {
  display: flex; flex-direction: column; line-height: 1.15;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.02rem; font-weight: 600; letter-spacing: .04em;
  color: #cfe1f5;
}
.credit-name small {
  font-family: 'Tajawal', sans-serif;
  font-size: .68rem; font-weight: 400; letter-spacing: 0;
  color: #7f90ab;
}
.credit-brand:hover .credit-name { color: #8fc2f0; }

.credit-tel {
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  padding-inline-start: 14px;
  border-inline-start: 1px solid rgba(255,255,255,.12);
}
.credit-tel:hover { color: #8fc2f0; }

@media (max-width: 520px) {
  .credit { flex-direction: column; gap: 6px; padding-block: 16px; text-align: center; }
  .credit-tel { padding-inline-start: 0; border-inline-start: 0; }
}

/* ---------- زر واتساب ---------- */
.wa-float {
  position: fixed;
  inset-block-end: 22px; inset-inline-start: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============ لوحي ============ */
@media (max-width: 1080px) {
  .nav a { padding: 8px 9px; font-size: .92rem; }
  .header-cta { display: none; }
}

@media (max-width: 900px) {
  .about-grid, .net-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .facts { grid-template-columns: repeat(2, 1fr); transform: translateY(46px); }
  .facts li:nth-child(3) { border-inline-start: 0; }
  .facts li:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  #about { padding-block: calc(92px + 58px) 80px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============ الجوال ============ */
@media (max-width: 720px) {
  .section { padding-block: 62px; }
  #about { padding-block: calc(62px + 54px) 62px; }
  .hero { padding-block: calc(var(--header-h) + 48px) 0; }
  .hero-inner { padding-bottom: 54px; }

  .nav {
    position: fixed;
    inset-block-start: var(--header-h);
    inset-inline: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 6px 22px 18px;
    transform: translateY(-135%);
    transition: transform .3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 6px; border-radius: 0; border-bottom: 1px solid var(--line-soft); }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }

  .hero-actions .btn { width: 100%; }
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .facts { grid-template-columns: 1fr; transform: translateY(40px); }
  .facts li { border-inline-start: 0; border-bottom: 1px solid var(--line-soft); padding: 16px 20px; }
  .facts li:last-child { border-bottom: 0; }
  .facts b { font-size: 1.5rem; }

  .gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .form { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .wa-float { inset-block-end: 16px; inset-inline-start: 16px; }

  .lightbox { padding: 56px 8px 64px; gap: 4px; }
  .lb-nav { width: 42px; height: 42px; font-size: 1.8rem; }
}
