:root {
  --ink: #352f2a;
  --muted: #74685f;
  --paper: #fffaf2;
  --cream: #f5efe6;
  --blue: #118cf0;
  --blue-dark: #0874ca;
  --blue-soft: #e8f4ff;
  --line: rgba(53, 47, 42, 0.15);
  --shadow: 0 20px 55px rgba(63, 49, 38, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
img { display: block; width: 100%; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: auto; }

header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 250, 242, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.links { display: flex; align-items: center; gap: 20px; font-size: 0.9rem; font-weight: 600; }
.links a { text-decoration: none; }
.links a:hover { color: var(--blue-dark); }
.nav-cta { padding: 10px 17px; color: #fff; background: var(--blue); border-radius: 999px; }
.language-control {
  min-height: 40px;
  padding: 0 30px 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 600 0.82rem "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
}
#zibom-google-translate { position: fixed; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skiptranslate iframe, body > .skiptranslate { display: none !important; }
body { top: 0 !important; }
html[dir="rtl"] body { font-family: Arial, "Noto Sans Arabic", sans-serif; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] .brand, html[dir="rtl"] .button, html[dir="rtl"] .links {
  font-family: Arial, "Noto Sans Arabic", sans-serif;
}
html[dir="rtl"] .hero-grid, html[dir="rtl"] .footer-inner { direction: rtl; }
html[dir="rtl"] th, html[dir="rtl"] td { text-align: right; }
html[dir="rtl"] .card ul { padding-right: 20px; padding-left: 0; }

.hero {
  padding: 86px 0 68px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--blue-soft) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.eyebrow {
  color: var(--blue-dark);
  font-family: Montserrat, sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-family: Montserrat, sans-serif; line-height: 1.16; }
h1 { margin-bottom: 22px; font-size: clamp(2.45rem, 5vw, 4.65rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.15rem); }
h3 { font-size: 1.17rem; }
.lead { color: var(--muted); font-size: 1.08rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.button.secondary { color: var(--blue-dark); background: #fff; border-color: rgba(17, 140, 240, 0.3); }
.button.whatsapp { background: #1faf5b; border-color: #1faf5b; }
.hero-media { overflow: hidden; border: 9px solid rgba(255,255,255,.8); border-radius: 28px; box-shadow: var(--shadow); }
.hero-media img { aspect-ratio: 4 / 3; object-fit: cover; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -24px;
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.fact { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact strong { display: block; color: var(--blue-dark); font: 700 1.55rem Montserrat, sans-serif; }
.fact span { color: var(--muted); font-size: 0.88rem; }

section.content { padding: 82px 0; }
section.soft { background: var(--cream); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p, .card p, .card li, td, .note { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 12px 32px rgba(63,49,38,.07);
}
.card ul { margin-bottom: 0; padding-left: 20px; }
.image-card { overflow: hidden; padding: 0; }
.image-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.image-card div { padding: 24px; }

.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
table { width: 100%; border-collapse: collapse; min-width: 650px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { width: 27%; color: var(--ink); background: rgba(232,244,255,.55); font-family: Montserrat, sans-serif; }
tr:last-child th, tr:last-child td { border-bottom: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { padding: 24px 20px; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.step b { display: block; margin-bottom: 9px; color: var(--blue); font-size: 0.75rem; letter-spacing: 0.13em; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 0.91rem; }

.related a { display: block; height: 100%; text-decoration: none; }
.related a:hover h3 { color: var(--blue-dark); }
.mini-label { color: var(--blue-dark); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.cta-band { padding: 64px 0; color: #fff; text-align: center; background: var(--blue-dark); }
.cta-band p { max-width: 760px; margin: 18px auto 0; color: rgba(255,255,255,.82); }
.cta-band .cta-actions { justify-content: center; }
.cta-band .button.secondary { border-color: #fff; }

footer { padding: 34px 0; color: #c9c0b8; background: #2f2a26; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
footer a { color: #fff; text-decoration: none; }

@media (max-width: 900px) {
  .links a:not(.nav-cta) { display: none; }
  .links { gap: 10px; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wrap { width: calc(100% - 24px); }
  .nav-cta { display: none; }
  .hero, section.content { padding: 58px 0; }
  h1 { font-size: 2.45rem; }
  .facts, .grid-3, .steps { grid-template-columns: 1fr; }
  .facts { margin-top: 16px; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .footer-inner { flex-direction: column; }
}
