:root {
  --asphalt: #071821;
  --navy: #0b2c3a;
  --steel: #134556;
  --cyan: #1aa7c4;
  --cyan-2: #7ee3ef;
  --safety: #f06a12;
  --safety-2: #ff8a3d;
  --paper: #f3f7f6;
  --mist: #e4eef0;
  --card: #ffffff;
  --ink: #123041;
  --muted: #5a7380;
  --line: #d5e3e7;
  --ok: #1e9b6d;
  --shadow: 0 18px 50px rgba(7, 24, 33, .18);
  --radius: 18px;
  --font: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
}
img { max-width: 100%; }
a { color: var(--steel); }
button, input, select, textarea { font-family: inherit; }
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  inset-inline-end: 16px;
  top: -40px;
  background: var(--safety);
  color: #fff;
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { top: 8px; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--asphalt);
  color: #b7cdd4;
  font-size: 13px;
}
.topbar .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar b { color: var(--cyan-2); font-weight: 600; }

.topbar a.topbar-phone {
  color: var(--cyan-2);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn-call { background: var(--navy); color: #fff; }
.btn-call:hover { color: #fff; opacity: .92; }
.foot-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 440px;
}
.foot .foot-cta {
  flex: 1 1 150px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 14px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}
.foot-cta svg { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.foot-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.foot-cta-label { font-size: 14px; color: #fff; }
.foot-cta-sub { font-size: 11px; font-weight: 600; opacity: .92; color: #fff; }
.foot-cta-call { background: #34C759; }
.foot-cta-call:hover { background: #2db14e; color: #fff !important; }
.foot-cta-wa { background: #128C7E; }
.foot-cta-wa:hover { background: #0e7368; color: #fff !important; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--safety));
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 22px;
}
.brand small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  display: grid;
  place-items: center;
}
.links {
  display: flex;
  gap: 22px;
  margin-inline-start: auto;
}
.links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}
.links a:hover, .links a[aria-current="page"] { color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-safety { background: var(--safety); color: #fff; }
.btn-safety:hover { background: #d85d0c; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-full { width: 100%; }

.menu-btn {
  display: none;
  margin-inline-start: auto;
  flex-shrink: 0;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  place-items: center;
  position: relative;
  z-index: 86;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}
.menu-btn:hover {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(26, 167, 196, .5);
}
.menu-btn:active {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.menu-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  background: transparent;
}
.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease, top .2s ease, background .2s ease;
}
.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  inset-inline: 0;
}
.menu-bars::before { top: -7px; }
.menu-bars::after { top: 7px; }
.menu-btn[aria-expanded="true"],
.menu-btn[aria-expanded="true"]:hover,
.menu-btn[aria-expanded="true"]:active {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.menu-btn[aria-expanded="true"] .menu-bars {
  background: transparent;
}
.menu-btn[aria-expanded="true"] .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}
.menu-btn[aria-expanded="true"] .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

.nav-overlay,
.nav-drawer {
  display: none;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 24, 33, .48);
  z-index: 70;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-drawer {
  position: fixed;
  top: 0;
  bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  inset-inline-start: 0;
  width: min(86vw, 360px);
  z-index: 80;
  background: #fff;
  box-shadow: -18px 0 50px rgba(7, 24, 33, .22);
  display: none;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2, .7, .2, 1);
}
html[dir="ltr"] .nav-drawer {
  transform: translateX(-100%);
  box-shadow: 18px 0 50px rgba(7, 24, 33, .22);
}
.nav-drawer.is-open,
.nav-overlay.is-open {
  display: flex;
}
.nav-overlay.is-open {
  display: block;
}
.nav-drawer.is-open {
  transform: translateX(0);
}
.nav-overlay[hidden],
.nav-drawer[hidden] {
  display: none !important;
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  min-height: 64px;
  padding: 12px 16px 12px 18px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--cyan), var(--safety)) 1;
}
.nav-drawer-head strong {
  font-size: 16px;
  font-weight: 800;
}
.nav-close {
  box-sizing: border-box;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  color: #fff;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-close svg {
  width: 18px;
  height: 18px;
  display: block;
}
.nav-close:hover,
.nav-close:active {
  background: rgba(26, 167, 196, .16);
  color: var(--cyan-2);
  border-color: rgba(26, 167, 196, .45);
}
.nav-close:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  background: transparent;
}
.nav-drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-kicker {
  margin: 14px 6px 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cyan);
  text-transform: none;
}
.nav-drawer-body a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  border-inline-start: 3px solid transparent;
}
.nav-drawer-body a:hover {
  background: var(--mist);
  color: var(--navy);
}
.nav-drawer-body a.is-current,
.nav-drawer-body a[aria-current="page"] {
  background: #e8f4f6;
  color: var(--navy);
  border-inline-start-color: var(--safety);
}
.nav-drawer-foot {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.nav-chip {
  flex: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 0 10px;
}
.nav-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav-chip-call {
  background: var(--navy);
  color: #fff;
}
.nav-chip-wa {
  background: #128C7E;
  color: #fff;
}
html.nav-open,
html.nav-open body {
  overflow: hidden;
}
html.nav-open .menu-btn {
  visibility: hidden;
  pointer-events: none;
}
html.admin-bar .nav-drawer,
html.admin-bar .nav-overlay,
body.admin-bar .nav-drawer,
body.admin-bar .nav-overlay {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #e8f4f6;
  background:
    radial-gradient(90% 70% at 115% 120%, rgba(26,167,196,.22), transparent 55%),
    radial-gradient(ellipse 48% 28% at 82% 48%, transparent 42%, rgba(7,24,33,.18) 43%, transparent 46%),
    linear-gradient(160deg, #071821 0%, #0b2c3a 48%, #123d4c 100%);
  padding: 72px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(126,227,239,.28);
  background: rgba(255,255,255,.05);
  color: var(--cyan-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.25;
  margin: 16px 0 14px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan-2);
}
.lede {
  color: #c5d8df;
  font-size: 18px;
  max-width: 38ch;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 18px; }
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #9fb6bf;
  font-size: 13px;
}
.checks span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--ok);
}

.ticket {
  background: var(--card);
  color: var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.ticket::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #F06A12 0%, #1AA7C4 52%, #0B2C3A 100%);
}
.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 12px;
  border-bottom: 1px dashed var(--line);
}
.ticket-head strong { font-size: 18px; }
.stamp {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  letter-spacing: .04em;
}
.ticket form, .ticket .ok {
  padding: 18px 22px 22px;
}
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--mist);
  padding: 5px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.modes button {
  border: 0;
  background: transparent;
  min-height: 42px;
  border-radius: 9px;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}
.modes button[aria-pressed="true"] {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(18,48,65,.08);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
label span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7fbfc;
  padding: 0 14px;
  color: var(--ink);
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 5.6L8 10.4L12.8 5.6' stroke='%230B2C3A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  padding-left: 36px;
}
textarea { min-height: 92px; padding: 10px 12px; resize: vertical; }
.fine {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 10px 0 0;
}
.ok { display: none; text-align: center; padding: 48px 22px; }
.ok.show { display: block; }
.ok b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #e7f7f0;
  color: var(--ok);
}

.sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.size {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7,24,33,.06);
}
.size em {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 22px;
  color: var(--navy);
}
.size span { color: var(--muted); font-size: 13px; }

.section { padding: 84px 0; }
.center { text-align: center; }
.eyebrow {
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
}
h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.35; margin: 8px 0; }
.sub { color: var(--muted); margin: 0 auto; max-width: 46ch; }

.cards-4, .cards-3, .cards-3b {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-3b { grid-template-columns: 1.1fr .9fr .9fr; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { margin: 12px 0 8px; font-size: 18px; }
.card p { color: var(--muted); margin: 0; }
.ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e7f6f9;
  color: var(--steel);
  display: grid;
  place-items: center;
}
.card a.more {
  display: inline-block;
  margin-top: 14px;
  color: var(--steel);
  font-weight: 800;
  text-decoration: none;
}

.ops {
  background: var(--mist);
}
.ops-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.board {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.row {
  display: grid;
  grid-template-columns: 70px 1fr 80px auto;
  gap: 8px;
  align-items: center;
  padding: 12px 4px;
  border-top: 1px solid var(--mist);
  font-size: 14px;
}
.row:first-of-type { border-top: 0; }
.row b { font-family: var(--mono); color: var(--navy); }
.tag-ok, .tag-wait {
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 10px;
  text-align: center;
}
.tag-ok { background: #e7f7f0; color: var(--ok); }
.tag-wait { background: #fff4ec; color: var(--safety); }
.bullets { list-style: none; padding: 0; }
.bullets li { margin: 10px 0; }
.bullets li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-left: 8px;
}

.zones article {
  min-height: 150px;
}
.zones h3 { margin-top: 0; }
.zones p { font-size: 14px; }

.how {
  background: var(--navy);
  color: #e8f4f6;
}
.how .eyebrow { color: var(--cyan-2); }
.how .sub { color: #b7cdd4; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  text-align: center;
}
.steps b {
  font-family: var(--mono);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  color: var(--cyan-2);
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 10px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.crumb a { color: var(--muted); text-decoration: none; }
.prose { max-width: 74ch; }
.prose h2 { margin-top: 32px; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.prose th, .prose td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  text-align: right;
}

.site-footer {
  background: var(--asphalt);
  color: #a9bdc6;
  padding: 48px 0 20px;
}
.foot {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.foot a { color: #a9bdc6; text-decoration: none; display: block; margin: 7px 0; }
.foot h4 { color: #fff; margin: 0 0 10px; }
.copy {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px;
  padding-top: 14px;
  font-size: 13px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-wa { background: #128C7E; color: #fff; }
.btn-wa:hover { background: #0e7368; color: #fff; }

.dock {
  display: none;
  position: fixed;
  inset-inline: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dock a {
  flex: 1;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 10px 6px 9px;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1.2;
  min-height: 62px;
}
.dock svg { width: 20px; height: 20px; display: block; }
.dock-call { background: #34C759; color: #fff; }
.dock-call:hover { background: #2DB84E; color: #fff; }
.dock-wa { background: #128C7E; }
.dock-cta { background: var(--safety); }
.dock a.is-pending { opacity: .9; }

.err { color: #b42318; font-size: 13px; min-height: 18px; }

@media (max-width: 980px) {
  .links, .nav .btn, .header-cta { display: none !important; }
  .menu-btn { display: grid; }
  .nav { min-height: 64px; gap: 12px; }
  .brand { font-size: 20px; gap: 8px; }
  .mark { width: 38px; height: 38px; }
  .hero-grid, .ops-grid, .cards-4, .cards-3, .cards-3b, .steps, .sizes, .foot, .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero { padding: 48px 0 64px; }
  .dock { display: flex; }
  body { padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-drawer, .menu-bars, .menu-bars::before, .menu-bars::after {
    transition: none;
  }
}
@media (min-width: 981px) {
  .menu-btn, .nav-drawer, .nav-overlay { display: none !important; }
  .links { margin-inline-start: auto; }
}


html[dir="ltr"] body {
  font-family: "IBM Plex Sans", "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
}
.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 2px;
  min-width: 28px;
  text-align: center;
}
.lang-switch a.is-active {
  color: var(--navy);
}
.lang-switch-sep { color: var(--line); }
.lang-switch-drawer {
  margin: 8px 4px 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.lang-switch-drawer a { color: #c5d8df; }
.lang-switch-drawer a.is-active { color: #fff; }
.nav-drawer-foot .lang-switch-drawer {
  border-top: 1px solid var(--line);
  margin: 4px 0 0;
  padding: 10px 8px 0;
}
.nav-drawer-foot .lang-switch-drawer a { color: var(--muted); }
.nav-drawer-foot .lang-switch-drawer a.is-active { color: var(--navy); }
html[dir="ltr"] .prose th,
html[dir="ltr"] .prose td { text-align: left; }
@media (max-width: 980px) {
  .lang-switch-header {
    margin-inline-start: auto;
    order: 2;
  }
  .menu-btn { order: 3; margin-inline-start: 0; }
  .brand { order: 1; }
}
