/* Shared styles for static SEO landing pages — on-brand, lightweight, fast. */
:root {
  --red: #dc2626;
  --green: #22c55e;
  --dark: #111827;
  --light: #f9fafb;
  --gray: #4b5563;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); }
.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid #eee;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { font-size: 1.25rem; font-weight: 800; color: var(--red); text-decoration: none; }
.header-call {
  background: var(--red); color: #fff; text-decoration: none;
  padding: 9px 16px; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  white-space: nowrap;
}

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--gray); padding: 14px 0; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }

/* Hero */
.hero { padding: 10px 0 28px; }
.hero h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 14px; }
.hero .lead { font-size: 1.15rem; color: var(--gray); margin-bottom: 22px; }
.hero-img {
  width: 100%; max-height: 380px; object-fit: cover;
  border-radius: 14px; margin: 8px 0 22px;
}

/* CTA buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 6px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px; font-weight: 700;
  text-decoration: none; font-size: 1.05rem;
}
.btn-call { background: var(--red); color: #fff; }
.btn-tg { background: var(--green); color: #fff; }
.cta-note { font-size: 0.9rem; color: var(--gray); margin-top: 6px; }

/* Content */
main section { padding: 22px 0; }
h2 { font-size: 1.5rem; margin: 8px 0 12px; }
h3 { font-size: 1.15rem; margin: 16px 0 8px; }
p { margin-bottom: 14px; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 7px; }
.lang-block {
  background: var(--light); border-left: 4px solid var(--red);
  padding: 18px 20px; border-radius: 10px; margin: 18px 0;
}

/* Related services */
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; margin-top: 8px;
}
.related-grid a {
  display: block; background: var(--light); border: 1px solid #eee;
  border-radius: 10px; padding: 14px 16px; text-decoration: none;
  color: var(--dark); font-weight: 600;
}
.related-grid a:hover { border-color: var(--red); }

/* FAQ */
.faq details {
  border: 1px solid #e5e7eb; border-radius: 10px;
  padding: 14px 16px; margin-bottom: 10px;
}
.faq summary { font-weight: 700; cursor: pointer; }
.faq p { margin: 10px 0 0; color: var(--gray); }

/* Final CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--dark), var(--red));
  color: #fff; border-radius: 16px; padding: 30px 24px; text-align: center;
  margin: 26px 0;
}
.cta-band h2 { color: #fff; }
.cta-band .phone {
  display: inline-block; font-size: 1.8rem; font-weight: 800;
  color: #fff; text-decoration: none; margin: 8px 0;
}
.cta-band .cta-row { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--dark); color: #cbd5e1; padding: 30px 0; margin-top: 20px;
  font-size: 0.9rem;
}
.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; margin: 12px 0; }

@media (min-width: 640px) {
  .hero h1 { font-size: 2.5rem; }
}
