:root {
  --ink: #182027;
  --muted: #5f6b76;
  --line: #dfe5e7;
  --paper: #fff;
  --soft: #f5f7f6;
  --red: #d71920;
  --red-dark: #a9141a;
  --teal: #00796b;
  --amber: #f4be32;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  direction: ltr;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  direction: rtl;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.topbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topbar .wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--red-dark);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 5px 10px;
  border: 1px solid #f1c7c9;
  border-radius: 8px;
  background: #fff5f5;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call b,
.call-link b {
  direction: ltr;
  font-variant-numeric: tabular-nums;
}

.phone-number {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #222;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.35)),
    linear-gradient(0deg, rgba(0,0,0,.68), rgba(0,0,0,.10) 55%, rgba(0,0,0,.22));
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding: 92px 0 54px;
}

.page-visual {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.page-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(30px, 5vw, 56px);
  overflow-wrap: anywhere;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.91);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.btn.primary {
  background: var(--red);
  color: #fff;
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.42);
  color: #fff;
}

.notice {
  margin-top: 22px;
  max-width: 760px;
  padding: 10px 14px;
  border: 1px solid rgba(244,190,50,.62);
  border-radius: 8px;
  background: rgba(244,190,50,.14);
  color: #fff;
  font-size: 14px;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: var(--soft);
}

.section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section .intro {
  max-width: 760px;
  color: var(--muted);
  margin: 10px 0 0;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.service-list,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.check-list li {
  position: relative;
  padding: 8px 22px 8px 0;
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.steps {
  counter-reset: step;
  margin-top: 24px;
}

.step {
  position: relative;
  padding-right: 48px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: 0;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.area-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.area-links.dense {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.area-links a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.area-links a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.area-links.dense a {
  padding: 7px 9px;
  font-size: 13px;
  line-height: 1.55;
}

.cta-band {
  padding: 32px 0;
  background: var(--ink);
  color: #fff;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.78);
}

.callout {
  padding: 34px 0;
  color: #fff;
}

.callout--teal { background: #006b62; }
.callout--red { background: #bf1e2e; }
.callout--ink { background: #182027; }
.callout--light { background: #e1f0ed; color: #124c45; }

.callout .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.callout h2 { font-size: clamp(22px, 3vw, 32px); }
.callout p { margin: 4px 0 0; }

.call-link {
  display: flex;
  min-width: 210px;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.call-link b { font-size: 19px; }
.callout--light .call-link { background: #124c45; color: #fff; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  padding: 36px 0;
  background: #f0f2f1;
  color: var(--muted);
  font-size: 14px;
}

.footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 24px;
}

.footer-call {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #d8dfde;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.footer-call p { margin: 3px 0 0; }

.footer-call .call-link {
  margin: 0;
  background: var(--red);
  color: #fff;
}

.footer strong {
  color: var(--ink);
}

.footer a {
  display: block;
  margin-top: 6px;
}

.placeholder {
  border-bottom: 1px dashed currentColor;
}

.page-head {
  padding: 44px 0 34px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
}

.page-head p {
  max-width: 780px;
  color: var(--muted);
  margin: 12px 0 0;
}

.text {
  max-width: 870px;
}

.text p {
  color: var(--muted);
}

@media (max-width: 820px) {
  .topbar .wrap,
  .cta-band .wrap,
  .callout .wrap,
  .footer-call {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 520px;
  }

  .hero .wrap {
    max-width: calc(100% - 24px);
  }

  .grid.cols-3,
  .grid.cols-2,
  .footer .wrap {
    grid-template-columns: 1fr;
  }

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

  .area-links.dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  header,
  main,
  footer,
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .wrap {
    width: calc(100% - 22px);
  }

  .topbar .wrap {
    overflow: hidden;
  }

  .nav {
    flex-wrap: wrap;
    overflow-x: visible;
    white-space: normal;
  }

  .nav a {
    overflow-wrap: anywhere;
  }

  .header-call,
  .call-link {
    width: 100%;
    justify-content: center;
  }

  .hero .wrap {
    padding-bottom: 34px;
  }

  .lead {
    font-size: 16px;
  }

  h1 {
    font-size: 26px;
    line-height: 1.55;
  }

  .notice {
    font-size: 13px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .area-links {
    grid-template-columns: 1fr;
  }

  .area-links.dense {
    grid-template-columns: 1fr;
  }
}

.area-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:10px;margin-top:20px}.area-list a{display:block;padding:11px 13px;border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--ink);text-decoration:none}.area-list a:hover{border-color:var(--brand);color:var(--brand)}
