:root {
  --ink: #15191f;
  --ink-2: #2c3541;
  --muted: #687381;
  --paper: #f4f0e8;
  --white: #ffffff;
  --line: rgba(21, 25, 31, .14);
  --red: #d7332f;
  --amber: #d99b32;
  --blue: #1f5f82;
  --shadow: 0 24px 60px rgba(21, 25, 31, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 52px);
  background: rgba(244, 240, 232, .94);
  box-shadow: 0 10px 30px rgba(21, 25, 31, .09);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}
.brand strong, .brand small { display: block; }
.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 14px;
  font-weight: 900;
}
.header-actions { display: inline-flex; gap: 10px; align-items: center; }
.lang, .call, .mobile-cta button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}
.call { background: var(--red); color: var(--white); border-color: var(--red); }
.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: clamp(20px, 4vw, 48px);
  padding: 122px clamp(16px, 5vw, 72px) 42px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-bg, .hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(21, 25, 31, .93), rgba(21, 25, 31, .64) 46%, rgba(21, 25, 31, .22)),
    linear-gradient(0deg, rgba(21, 25, 31, .72), transparent 50%);
}
.hero-copy, .contact-panel {
  position: relative;
  z-index: 1;
}
.kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: 0; }
h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 90px);
  line-height: .95;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1;
}
h3 { font-size: 23px; }
.hero-copy p {
  max-width: 700px;
  color: rgba(255,255,255,.84);
  font-size: clamp(17px, 2vw, 21px);
}
.hero-actions, .visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 950;
}
.btn.primary { background: var(--red); color: var(--white); }
.btn.secondary { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); color: var(--white); }
.btn.secondary.dark { border-color: var(--line); background: transparent; color: var(--ink); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 900;
}
.contact-panel {
  align-self: end;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(244, 240, 232, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-panel h2 { font-size: 34px; }
.contact-panel p { color: var(--muted); }
.phone {
  display: block;
  margin: 18px 0 10px;
  font-size: 32px;
  font-weight: 950;
}
.panel-link {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}
.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 1px;
  background: var(--line);
}
.info-strip div {
  display: grid;
  gap: 4px;
  padding: 22px clamp(16px, 4vw, 52px);
  background: var(--white);
}
.info-strip strong { font-size: 14px; }
.info-strip span { color: var(--muted); font-size: 13px; }
.section { padding: clamp(66px, 9vw, 112px) clamp(16px, 5vw, 72px); }
.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-head p, .proof-copy p, .visit p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-grid article, .score-card, .quick-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(21, 25, 31, .08);
}
.service-grid article {
  padding: 24px;
}
.service-grid article span {
  color: var(--red);
  font-weight: 950;
}
.service-grid p { color: var(--muted); }
.proof {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}
.proof .proof-copy p { color: rgba(255,255,255,.72); }
.score-card {
  display: grid;
  gap: 6px;
  padding: 28px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
}
.score-card strong {
  color: var(--amber);
  font-size: 64px;
  line-height: 1;
}
.score-card span {
  color: rgba(255,255,255,.78);
  margin-bottom: 14px;
}
.visit {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.quick-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.quick-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.quick-form input, .quick-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fffdf8;
  color: var(--ink);
}
.quick-form textarea { resize: vertical; }
.full { width: 100%; border: 0; cursor: pointer; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(16px, 5vw, 72px) 96px;
  background: var(--ink);
  color: var(--white);
}
footer strong, footer span { display: block; }
footer span, footer a { color: rgba(255,255,255,.76); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}
.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px;
  background: rgba(21, 25, 31, .94);
  color: var(--white);
  box-shadow: var(--shadow);
}
.mobile-cta a, .mobile-cta button {
  display: grid;
  min-width: 72px;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
}
.mobile-cta a:first-child { background: var(--red); color: var(--white); }
@media (max-width: 980px) {
  nav { display: none; }
  .hero, .proof, .visit { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .info-strip, .service-grid { grid-template-columns: 1fr; }
  .contact-panel { max-width: 520px; }
}
@media (max-width: 640px) {
  .topbar { grid-template-columns: 1fr auto; padding: 12px 14px; }
  .brand small, .call { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 100px 14px 30px; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .contact-panel, .quick-form { padding: 18px; }
  .phone { font-size: 28px; }
  .info-strip div, .section { padding-left: 14px; padding-right: 14px; }
  footer { display: grid; padding-bottom: 96px; }
  .footer-links { justify-content: flex-start; }
  .mobile-cta { display: grid; }
}
