@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&family=Poppins:wght@400;600&display=swap");

:root {
  --black: #0a0a0a;
  --panel: #161616;
  --accent: #ff5e1a;
  --accent-2: #f0451c;
  --peach: #fbd3be;
  --text: #ffffff;
  --muted: rgba(255,255,255,.9);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Poppins, system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}
h1, h2, h3, .logo { font-family: Manrope, sans-serif; font-weight: 500; letter-spacing: -.02em; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
a { color: inherit; text-decoration: none; }
header {
  position: sticky; top: 0; z-index: 40;
  background: transparent;
}
.header-in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 20px; color: #fff; }
.logo img { height: 36px; width: auto; display: block; }
footer .logo img { height: 32px; }
nav { display: flex; gap: 28px; justify-content: center; }
nav a { font-size: 18px; }
nav a.active { box-shadow: 0 1px 0 #fff; }
.header-in .btn { justify-self: end; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 18px 30px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.hero {
  padding: 72px 0 90px;
  background-image: radial-gradient(circle at 20% 10%, rgba(255,255,255,.04) 0 1px, transparent 1.5px);
  background-size: 22px 22px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5vw, 61px); line-height: 1.08; color: var(--accent); max-width: 14ch; }
.hero .sub { margin: 18px 0 28px; font-size: 26px; line-height: 1.25; color: #fff; }
.hero .sub b { font-weight: 700; }
.hero-mark {
  width: min(460px, 100%);
  margin-left: auto;
}
.hero-mark img { width: 100%; height: auto; display: block; }
.band { padding: 110px 0; }
.band h2 { color: var(--accent); font-size: clamp(32px, 4vw, 42px); text-align: center; }
.band .lede { max-width: 430px; margin: 16px auto 0; text-align: center; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.card h3 { color: var(--accent); font-size: 28px; margin-bottom: 8px; }
.card p { color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; text-align: center; }
.stats b { display: block; font-family: Manrope, sans-serif; font-size: 42px; color: var(--accent); font-weight: 500; letter-spacing: -.02em; }
.stats span { color: #fff; font-size: 14px; }
.cta-wrap { padding: 40px 0 80px; }
.cta {
  background: var(--peach);
  color: #111;
  border-radius: 16px;
  padding: 42px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta h2 { color: #111; text-align: left; font-size: 36px; }
.cta h2 span { position: relative; }
.cta h2 span::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px; height: 6px;
  background: var(--accent);
  border-radius: 4px;
  transform: rotate(-2deg);
}
form {
  max-width: 720px; margin: 28px auto 0;
  background: var(--panel); border-radius: 16px; padding: 26px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; font-size: 13px; margin: 12px 0 6px; color: var(--muted); }
input, select, textarea {
  width: 100%; background: #0a0a0a; border: 1px solid #2a2a2a; color: #fff;
  padding: 12px 14px; border-radius: 10px; font: inherit;
}
textarea { min-height: 90px; resize: vertical; }
.note { color: var(--muted); font-size: 14px; margin-top: 12px; }
.ok { background: #2a140c; border: 1px solid var(--accent); padding: 14px; border-radius: 10px; }
footer { background: var(--accent); color: #fff; padding: 48px 0 22px; }
.foot { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 24px; }
.foot strong { display: block; font-family: Manrope, sans-serif; font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.foot a, .foot p { font-size: 14px; color: #fff; }
.legal { margin-top: 28px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.45); display: flex; justify-content: space-between; font-size: 13px; }
.chat {
  position: fixed; right: 16px; bottom: 16px; width: 340px;
  background: #161616; border-radius: 16px; overflow: hidden; z-index: 50;
}
.chat-h { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: #0a0a0a; }
.chat-h strong { font-size: 13px; }
.chat-h button { background: none; border: 0; color: #fff; font-size: 18px; cursor: pointer; }
.msgs { height: 240px; overflow: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.m { max-width: 88%; padding: 10px 12px; font-size: 14px; border-radius: 12px; }
.bot { background: #2a2a2a; align-self: flex-start; }
.me { background: var(--accent); align-self: flex-end; }
.chat form { margin: 0; max-width: none; display: flex; border-radius: 0; padding: 0; background: #111; }
.chat input { border: 0; border-radius: 0; }
@media (max-width: 840px) {
  .header-in, .hero-grid, .grid-3, .stats, .row, .cta, .foot, .legal { grid-template-columns: 1fr; display: grid; }
  header nav { display: none; }
  .hero-mark { margin: 20px auto 0; }
  .chat { width: calc(100% - 20px); left: 10px; right: 10px; }
}
