:root {
  --red: #C9181F;
  --red-hover: #E01E26;
  --white: #FFFFFF;
  --offwhite: #F8F7F4;
  --border: #E2E0D8;
  --ink: #0D0D0B;
  --ink2: #2A2A24;
  --muted: #6A6858;
  --btn-shadow: 0 6px 20px rgba(201, 24, 31, 0.35);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--offwhite);
  color: var(--ink);
  font-family: Nunito, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; }

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo {
  height: 46px;
  width: auto;
  display: block;
  background: linear-gradient(90deg, #0b5713 0%, #3d9a4a 100%);
  border-radius: 8px;
  padding: 4px 8px;
}
.brand em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.phone {
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.meter { height: 6px; background: #E7E3D6; }
.meter span { display: block; height: 100%; background: var(--red); }

.step { width: min(640px, calc(100% - 32px)); margin: 28px auto 40px; }
.kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 0.95;
  margin: 0 0 8px;
}
.fine { color: var(--muted); margin: 0 0 18px; }

.choice, .btn {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}
.choice b { display: block; font-size: 18px; }
.choice span { display: block; margin-top: 4px; color: var(--muted); font-weight: 600; font-size: 14px; }
.choice:hover { border-color: var(--red); }
.btn {
  background: var(--red);
  color: var(--white);
  text-align: center;
  border: 0;
  box-shadow: var(--btn-shadow);
  padding: 16px 18px;
}
.btn:hover { background: var(--red-hover); }

label { display: block; font-weight: 800; margin: 14px 0 6px; }
input[type="text"], input[type="tel"], input[type="email"], input:not([type]) {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
}
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--ink2); }
.check input { width: auto; margin-top: 4px; }
.error { color: var(--red); font-weight: 800; min-height: 1.2em; }
.summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.summary div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.summary span { color: var(--muted); font-weight: 700; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 14px;
}
.trust {
  width: min(640px, calc(100% - 32px));
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gallery {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.gallery figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.gallery img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery figcaption { padding: 10px 12px 12px; font-weight: 800; font-size: 14px; }
