:root {
  --bg: #16181d;
  --card: #22252c;
  --ink: #f2efe8;
  --muted: #9a958c;
  --line: #32363f;
  --red: #d3121f;
  --ok: #5ec98b;
  --danger: #ff7a7a;
  --text: #f2efe8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", "Noto Sans", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
}
.wrap { width: min(980px, calc(100% - 32px)); margin: 0 auto; padding-bottom: 64px; }
.top { display:flex; justify-content:space-between; align-items:center; padding: 20px 0 4px; }
.brand { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero { padding: 18px 0 0; }
.hero-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.eyebrow { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
h1 { font-size: clamp(28px, 4.6vw, 44px); line-height: 1.1; margin: 0 0 12px; letter-spacing: -.03em; }
.lead { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.hero-photo { width:100%; border-radius: 18px; display:block; object-fit:cover; max-height: 280px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
label {
  display:block; font-size: 12px; color: var(--muted); margin: 12px 0 6px;
}
input, textarea {
  width:100%; background:#16181d; color:var(--ink); border:1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; font: inherit;
}
textarea { min-height: 88px; resize: vertical; }
button.cta {
  display:inline-flex; align-items:center; justify-content:center; width:100%;
  margin-top:16px; background:var(--red); color:#fff; border:0; border-radius:999px;
  padding:14px 18px; font:inherit; font-weight:700; cursor:pointer;
}
button.cta:disabled { opacity:.6; }
.note { color: var(--muted); font-size: 12px; margin-top: 10px; }
.ok { color: var(--ok); }
.err { color: var(--danger); }
.hidden { display:none !important; }
.trust { color: var(--muted); font-size: 13px; margin-top: 14px; }
.section { margin-top: 36px; }
.section h2 { font-size: 20px; margin: 0 0 14px; font-weight: 650; }
.videos {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.faq details { border-bottom: 1px solid var(--line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 650; }
.faq p { color: var(--muted); margin: 8px 0 0; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .videos { grid-template-columns: repeat(2, 1fr); }
}
