/* RE:START Global Styles */

:root {
  --bg: #0d0d0f;
  --bg-2: #141416;
  --panel: #1a1a1d;
  --line: #26262a;
  --line-2: #34343a;
  --text: #f5f5f0;
  --text-dim: #8a8a90;
  --red: #e63946;
  --red-2: #c52936;
  --yellow: #f5c518;
  --green: #2ecc71;
  --font-d: 'Archivo Black', sans-serif;
  --font-b: 'Manrope', sans-serif;
  --font-m: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Grain overlay */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: .06; mix-blend-mode: overlay;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Секції та контент сторінок міст ===== */

.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 20px;
  }
  .section-grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* На мобільному — відступи */
@media (max-width: 600px) {
  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-inner h1 {
    font-size: clamp(40px, 14vw, 60px);
  }
  .hero-sub {
    font-size: 1.1rem !important;
    max-width: 100% !important;
  }
  .hero-actions {
    margin-bottom: 16px;
  }
}

/* Сітка послуг (services-grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover {
  background: var(--panel);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: var(--font-d);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.service-card .price {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--red);
  letter-spacing: .08em;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  font-weight: 600;
}

@media (max-width: 600px) {
  .service-card {
    padding: 20px 16px;
  }
  .service-card h3 {
    font-size: 15px;
  }
}

/* Таблиця цін */
.price-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.price-table th {
  background: var(--panel);
  color: var(--text);
  font-family: var(--font-d);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.price-table tr:hover td {
  background: var(--panel);
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .price-table {
    font-size: 11px;
  }
  .price-table th,
  .price-table td {
    padding: 8px 8px;
  }
  .price-table-wrapper {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}
.faq-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .faq-item {
    padding: 18px 16px;
  }
  .faq-item h3 {
    font-size: 14px;
  }
  .faq-item p {
    font-size: 12px;
  }
  .faq-grid {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    border-left: none;
    border-right: none;
  }
}

/* Навігаційний хедер фіксований + відступи */
.city-hero {
  padding-top: 80px;
}

/* Підписи */
.section-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .section-desc {
    font-size: 13px;
  }
  .section-title {
    font-size: 1.4rem !important;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-d);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
  border-radius: 14px;
  transition: all .3s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--red-2);
  transform: scale(1.03);
}
.btn-large {
  padding: 18px 44px;
  font-size: 22px;
}

.btn-note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
}

/* Emergency CTA box */
.cta-box {
  text-align: center;
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
}
.cta-box h2 {
  font-family: var(--font-d);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-box p {
  color: var(--text-dim);
  margin-bottom: 24px;
  font-size: 16px;
}
.cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 600px) {
  .cta-box { padding: 40px 16px; }
  .cta-box h2 { font-size: 22px; }
  .btn-large {
    padding: 14px 28px;
    font-size: 17px;
  }
}

/* Вирівнювання тексту */
.text-center {
  text-align: center;
}

/* Зони виїзду */
.zones-box {
  background: rgba(255,255,255,0.03);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 600px) {
  .zones-box {
    padding: 1.25rem;
    border-radius: 16px;
  }
  .zones-box h3 {
    font-size: 1rem;
  }
  .zone-tag {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
}

.zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-tag {
  background: rgba(227,30,36,0.15);
  color: #ff4d4d;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
}

.zone-tag.neutral {
  background: rgba(255,255,255,0.06);
  color: #aaa;
  font-weight: 400;
}

/* Red underline accent */
.underline.red {
  color: var(--red);
}

.stroke {
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
}

.text-white {
  color: #fff;
}
