@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn[wght].woff2") format("woff2-variations"),
       url("../fonts/Vazirmatn[wght].woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF, U+200C-200F, U+2010-2027, U+0020-007E;
}

:root {
  --bg: #f3f5f8;
  --surface: #fff;
  --text: #0f172a;
  --muted: #4a5a70;
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-soft: #fee2e2;
  --dark: #0b1220;
  --dark-2: #162033;
  --line: #e6ebf2;
  --success: #128c4b;
  --wa: #128c4b;
  --tg: #229ed9;
  --bale: #00a651;
  --rb: #cd1c18;
  --radius: 1.25rem;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --header: 4.25rem;
  --container: 70rem;
  --font: Vazirmatn, Tahoma, ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  hanging-punctuation: none;
  scroll-padding-top: calc(var(--header) + 0.75rem);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html:focus-within { scroll-behavior: smooth; }

::selection {
  background: #fecaca;
  color: #7f1d1d;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 1.0125rem;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.35; margin: 0 0 0.65rem; }
h1 { font-weight: 900; letter-spacing: -0.02em; }
h2 { font-weight: 800; }
h3 { font-weight: 800; font-size: 1.05rem; }

:focus-visible {
  outline: 3px solid #fca5a5;
  outline-offset: 3px;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  font-weight: 800;
}
.skip:focus { top: 0.75rem; }

.container {
  width: min(var(--container), calc(100% - 1.5rem));
  margin-inline: auto;
}

.section { padding: 4rem 0; }
.section-head { margin-bottom: 1.6rem; }
.section-title { font-size: clamp(1.4rem, 3.4vw, 2rem); margin-bottom: 0.4rem; }
.section-lead { color: var(--muted); margin: 0; max-width: 42rem; }

.topbar {
  background: var(--dark);
  color: #e2e8f0;
  font-size: 0.86rem;
  text-align: center;
  padding: 0.45rem 0.8rem;
  padding-top: calc(0.45rem + env(safe-area-inset-top, 0px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  min-width: 0;
}
.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}
.brand .mark { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.45rem 0.7rem;
  border-radius: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--text); background: #f1f5f9; }
}

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.55rem 1.05rem;
  border-radius: 0.9rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-call,
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.28);
}
@media (hover: hover) {
  .nav-call:hover,
  .btn-primary:hover { background: var(--primary-dark); }
}
.btn-light {
  background: #fff;
  color: var(--dark);
}
@media (hover: hover) {
  .btn-light:hover { background: #f8fafc; }
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}
.btn-wa { background: var(--success); color: #fff; }
.btn, .nav-call, summary, .chip, .loc-btn { touch-action: manipulation; }
.btn .fa-solid,
.btn .fa-brands,
.nav-call .fa-solid,
.mobile-bar .fa-solid,
.mobile-bar .fa-brands {
  font-size: 1.05rem;
  width: 1.15em;
  flex-shrink: 0;
}

.hero {
  background:
    radial-gradient(1200px 420px at 10% 0%, rgba(220, 38, 38, 0.18), transparent 50%),
    linear-gradient(160deg, #0b1220 0%, #162033 52%, #0f172a 100%);
  color: #fff;
  padding: 2.6rem 0 3.4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem 2rem;
  align-items: center;
}
.hero-visual {
  position: relative;
  min-height: 16rem;
}
.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.35));
}
.hero-copy { max-width: 38rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
}
.badge .pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 1.8s ease-out infinite;
}
.badge .fa-solid {
  font-size: 0.78rem;
  width: auto;
  color: #fca5a5;
}

h1 { font-size: clamp(1.85rem, 5.4vw, 3.15rem); margin: 0.85rem 0 0.7rem; }
.hero-lead {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.hero .slogan {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #bbf7d0;
  font-weight: 800;
  font-size: 1.02rem;
  margin: 0 0 1.2rem;
  line-height: 1.7;
}
.hero .slogan .fa-solid {
  color: #4ade80;
  margin-top: 0.28rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.25rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-meta b { color: #fff; display: block; font-size: 1rem; }
.hero-meta .fa-solid {
  color: #fca5a5;
  margin-inline-end: 0.35rem;
}

.quick { margin-top: -1.6rem; position: relative; z-index: 3; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.quick-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 0.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 800;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
a.quick-card { cursor: pointer; }
@media (hover: hover) {
  .quick-card:hover {
    border-color: #fecaca;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}
.quick-card .fa-solid,
.quick-card .fa-brands {
  display: block;
  margin: 0 auto 0.45rem;
  font-size: 1.35rem;
  color: var(--primary);
}
.quick-card small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
}
.loc-mini {
  display: flex;
  justify-content: center;
  gap: 0.22rem;
  margin: 0 auto 0.5rem;
}
.loc-mini span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}
.dot-wa { background: var(--wa); }
.dot-tg { background: var(--tg); }
.dot-bale { background: var(--bale); }
.dot-rb { background: var(--rb); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}
.icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
.icon .fa-solid { font-size: 1.2rem; width: auto; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.coverage { background: #fff; border-block: 1px solid var(--line); }
.coverage-groups { display: grid; gap: 1.35rem; }
.coverage-group h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}
@media (hover: hover) {
  .chip:hover { background: #fff; border-color: #cbd5e1; }
}

.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 22rem;
  background: #dbe4ee;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 22rem;
  border: 0;
  display: block;
}
.map-card {
  position: absolute;
  inset-inline-start: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 1.1rem;
  padding: 0.95rem 1rem;
  width: min(20rem, calc(100% - 2rem));
  box-shadow: var(--shadow);
}
.map-card strong { display: block; }
.map-card p { margin: 0.2rem 0 0.7rem; color: var(--muted); font-size: 0.88rem; }
.map-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.map-actions .btn { min-height: 2.5rem; padding: 0.4rem 0.75rem; font-size: 0.85rem; }

.loc-send { margin-top: 1rem; }
.loc-send-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  font-weight: 800;
  font-size: 0.9rem;
}
.loc-send-label .fa-solid { color: var(--primary); }
.loc-send-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}
.loc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.7rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.9rem;
  font-weight: 800;
  font-size: 0.82rem;
  color: #fff;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.loc-btn .fa-brands {
  font-size: 1.05rem;
  width: 1.15em;
  flex-shrink: 0;
  color: #fff;
}
.loc-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.loc-wa {
  background: var(--wa);
  box-shadow: 0 8px 18px rgba(18, 140, 75, 0.26);
}
.loc-tg {
  background: var(--tg);
  box-shadow: 0 8px 18px rgba(34, 158, 217, 0.26);
}
.loc-bale {
  background: var(--bale);
  box-shadow: 0 8px 18px rgba(0, 166, 81, 0.26);
}
.loc-rb {
  background: var(--rb);
  box-shadow: 0 8px 18px rgba(205, 28, 24, 0.26);
}
@media (hover: hover) {
  .loc-btn:hover { transform: translateY(-3px); }
  .loc-wa:hover { background: #0f7a41; }
  .loc-tg:hover { background: #1b8fc6; }
  .loc-bale:hover { background: #009247; }
  .loc-rb:hover { background: #b41814; }
}
.loc-send-on-dark {
  margin-top: 0.9rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
}
.loc-send-on-dark .loc-send-label {
  color: #e2e8f0;
  margin-bottom: 0.7rem;
}
.loc-send-on-dark .loc-send-label .fa-solid { color: #fecaca; }
.hero .loc-send { max-width: 28rem; }
.contact .loc-send {
  max-width: 28rem;
  margin-inline: auto;
}
.map-gbtn {
  width: 100%;
  min-height: 2.45rem;
  font-size: 0.85rem;
}
.map-loc {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
}
.map-loc .loc-send-label { margin-bottom: 0.75rem; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.feature .icon { margin: 0; flex-shrink: 0; }
.feature span { color: var(--muted); font-size: 0.9rem; }

.price-box {
  background: linear-gradient(180deg, #fff7ed, #fff);
  border: 1px solid #fed7aa;
  border-radius: 1.35rem;
  padding: 1.4rem 1.35rem;
}
.price-box p { margin: 0; color: #7c2d12; }

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  margin: 0.55rem 0;
  padding: 0 1rem;
}
summary {
  cursor: pointer;
  font-weight: 800;
  padding: 1rem 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1;
}
details[open] { border-color: #fecaca; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 0 0 1rem; }

.contact {
  background: radial-gradient(800px 280px at 100% 0%, rgba(220, 38, 38, 0.22), transparent 45%), var(--dark);
  color: #fff;
  border-radius: 1.75rem;
  padding: 2.4rem 1.5rem;
  text-align: center;
}
.contact p { color: #cbd5e1; }
.contact .slogan {
  color: #bbf7d0;
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}
.phones { display: grid; gap: 0.2rem; margin: 0.6rem 0 1.1rem; justify-items: center; }
.contact .phone-person {
  margin: 0 0 0.15rem;
  color: #fecaca;
  font-weight: 800;
  font-size: 0.95rem;
}
.phone-person .fa-solid {
  margin-inline-end: 0.3rem;
  font-size: 0.82rem;
}
.phone {
  direction: ltr;
  font-size: clamp(1.4rem, 4.5vw, 2.05rem);
  font-weight: 900;
  unicode-bidi: isolate;
}
.phone-alt {
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  font-weight: 800;
  color: #94a3b8;
}
.phone:hover { color: #fecaca; }
.contact .hero-actions { justify-content: center; }

.share {
  margin-top: 1.15rem;
}
.share-title {
  margin: 0 0 0.7rem;
  font-weight: 800;
  font-size: 0.9rem;
}
.share-title .fa-solid {
  margin-inline-end: 0.3rem;
  color: var(--primary);
}
.share-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.75rem;
}
.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  min-width: 3.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: inherit;
  touch-action: manipulation;
}
.share-ico {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.share-ico .fa-brands {
  font-size: 1.2rem;
  width: auto;
  color: #fff;
}
.share-ico svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.share-ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7); }
.share-tg { background: var(--tg); }
.share-wa { background: var(--wa); }
.share-bale { background: var(--bale); }
.share-rb { background: var(--rb); }
@media (hover: hover) {
  .share-btn:hover .share-ico {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
  }
}
.contact .share {
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact .share-title { color: #e2e8f0; }
.contact .share-title .fa-solid { color: #fecaca; }
.contact .share-btn { color: #cbd5e1; }
.share-toast {
  position: fixed;
  inset-inline: 1rem;
  bottom: calc(5.4rem + env(safe-area-inset-bottom, 0px));
  margin-inline: auto;
  width: max-content;
  max-width: calc(100% - 2rem);
  z-index: 80;
  background: var(--dark);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.4rem);
  text-align: center;
  pointer-events: none;
}
.share-toast.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.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;
}

.site-footer {
  padding: 2.2rem 0 2.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.site-footer .copy { margin-top: 0.2rem; }
.site-footer .credit {
  margin-top: 0.55rem;
  font-size: 0.8rem;
}
.site-footer .credit a {
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid #cbd5e1;
}
@media (hover: hover) {
  .site-footer .credit a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
}

.mobile-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 0.55rem max(0.7rem, env(safe-area-inset-left)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.7rem, env(safe-area-inset-right));
  box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.1);
}
.mobile-bar .btn {
  flex: 1 1 auto;
  min-width: 0;
  padding-inline: 0.7rem;
}
.mobile-bar .loc-ico {
  flex: 0 0 2.7rem;
  width: 2.7rem;
  min-width: 2.7rem;
  min-height: 2.7rem;
  padding: 0;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.16);
}
.mobile-bar .loc-ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

.not-found {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}
.not-found h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.not-found .icon { margin-inline: auto; }
.not-found .section-lead { margin: 0 auto 1.2rem; }
.not-found .hero-actions { justify-content: center; }
.price-box .section-title .fa-solid {
  color: #ea580c;
  margin-inline-end: 0.4rem;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@media (max-width: 1100px) {
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.86rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 0; }
  .cards,
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .mobile-bar { display: flex; }
  .site-footer { padding-bottom: calc(6.5rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 1.15rem, 42rem); }
  .section { padding: 2.6rem 0; }
  .hero { padding: 1.5rem 0 2.4rem; }
  .quick { margin-top: -1rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .nav-call { font-size: 0.88rem; padding-inline: 0.8rem; }
  .hero-actions .btn { flex: 1 1 12rem; }
  .map-card { position: static; width: auto; border-radius: 0; }
  .map-wrap iframe { height: 16.5rem; }
  .contact { padding: 1.8rem 1.05rem; border-radius: 1.35rem; }
  .loc-send-list { grid-template-columns: 1fr 1fr; }
  .hero .loc-send,
  .contact .loc-send { max-width: none; }
}

@media (max-width: 480px) {
  body { font-size: 0.96rem; }
  .brand b { font-size: 0.92rem; }
  .brand small { display: none; }
  .cards,
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr; }
  .quick-card { padding: 0.8rem 0.45rem; font-size: 0.86rem; }
  .hero-actions .btn { flex-basis: 100%; }
  .phones { gap: 0.2rem; }
  .loc-btn { font-size: 0.78rem; }
  .mobile-bar { gap: 0.35rem; padding-inline: 0.5rem; }
  .mobile-bar .loc-ico {
    flex-basis: 2.55rem;
    width: 2.55rem;
    min-width: 2.55rem;
    min-height: 2.55rem;
  }
}

@media (min-width: 721px) {
  .contact { padding: 2.7rem 2rem; }
}

@media (min-width: 901px) {
  .site-footer { padding: 2.5rem 0 2.7rem; }
  .share-toast { bottom: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .badge .pulse { animation: none; }
  .card,
  .quick-card,
  .share-ico,
  .btn,
  .nav-call,
  .loc-btn { transition: none; }
}

@media print {
  .topbar, .site-header, .mobile-bar, .hero-actions, .loc-send, .share, .share-toast, .map-wrap iframe { display: none !important; }
  body { background: #fff; color: #000; }
  a[href^="tel"]::after { content: " " attr(href); }
}
