:root {
  --ink: #111;
  --muted: #5b5b5b;
  --line: #e6e6e6;
  --bg: #fff;
  --tap: 48px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.45;
  min-height: 100dvh;
}
a { color: #1a4f9c; }
.top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.brand { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.05rem; }
.contacts { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.95rem; }
.contacts a { min-height: var(--tap); display: inline-flex; align-items: center; }
.layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 28px;
  padding: 28px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.kicker { text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: #1a4f9c; margin: 0 0 8px; font-weight: 700; }
h1 { font-size: 1.85rem; margin: 0 0 8px; line-height: 1.15; }
.lead { color: var(--muted); margin: 0 0 22px; }
.field { display: block; margin: 0 0 16px; }
.field span { display: block; font-weight: 600; margin-bottom: 6px; }
select {
  width: 100%;
  min-height: var(--tap);
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  background: #fff;
  appearance: auto;
}
.order, .quote {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.order { background: #111; color: #fff; margin-top: 8px; }
.quote { border: 1.5px solid #1a4f9c; color: #1a4f9c; margin-top: 10px; }
.hint { color: var(--muted); font-size: .9rem; margin: 12px 0 0; }
.preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #f4f4f4;
}
.caption { margin: 10px 0 0; color: var(--muted); }
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 20px 28px;
}
.trust strong { display: block; }
.trust span { color: var(--muted); font-size: .92rem; }
footer {
  border-top: 1px solid var(--line);
  padding: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .layout { grid-template-columns: 1fr; padding: 18px 16px 8px; }
  .preview { order: -1; }
  h1 { font-size: 1.6rem; }
  .trust { grid-template-columns: 1fr; padding-bottom: 18px; }
  .contacts { width: 100%; }
}
