:root {
  --bg: #0a0c10;
  --bg2: #12161d;
  --card: #161b24;
  --text: #eef2f7;
  --muted: #8b95a7;
  --accent: #e8a54b;
  --accent2: #5ec8ff;
  --ok: #6bcf8e;
  --line: rgba(232, 165, 75, 0.28);
  --radius: 16px;
  --font: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 90% -5%, rgba(232,165,75,.14), transparent 55%),
    radial-gradient(700px 380px at 5% 30%, rgba(94,200,255,.07), transparent 50%),
    var(--bg);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.demo-banner {
  text-align: center;
  font-size: 12px;
  letter-spacing: .03em;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--accent) 16%, #141820);
  color: #f0d9b0;
  border-bottom: 1px solid var(--line);
}

.top {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 64px;
}
.logo { font-weight: 750; letter-spacing: .06em; color: var(--accent); }
.logo span { color: var(--text); font-weight: 600; }
.nav { display: flex; gap: 16px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.nav a:hover { color: var(--text); }
.station-switch {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.station-switch a {
  font-size: 12px; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1); color: var(--muted);
}
.station-switch a.is-on {
  border-color: var(--accent); color: var(--text);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; border: 0;
  background: var(--accent); color: #1a140a; font-weight: 700;
  cursor: pointer; font: inherit;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn-social {
  background: var(--card); color: var(--text);
  border: 1px solid rgba(255,255,255,.1);
}

.hero { padding: 52px 0 36px; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr .9fr; gap: 28px; align-items: center;
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin: 0 0 12px; }
h1 { font-size: clamp(32px, 4.8vw, 52px); line-height: 1.08; margin: 0 0 14px; font-weight: 750; }
.lead { color: var(--muted); font-size: 17px; max-width: 48ch; margin: 0 0 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }

.hero-panel {
  background: linear-gradient(160deg, #1c222c, #10141a);
  border: 1px solid var(--line); border-radius: 20px; padding: 18px;
}
.hero-panel h3 { margin: 0 0 10px; font-size: 15px; color: var(--accent); }
.slot {
  padding: 11px 12px; border-radius: 12px; margin-bottom: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); font-size: 14px;
}

.section { padding: 52px 0; }
.section.alt { background: color-mix(in srgb, var(--bg2) 88%, transparent); border-block: 1px solid rgba(255,255,255,.04); }
h2 { margin: 0 0 8px; font-size: 28px; }
.section-lead { color: var(--muted); margin: 0 0 26px; max-width: 60ch; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card {
  background: var(--card); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 18px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.price {
  margin-top: 14px; font-size: 20px; font-weight: 700; color: var(--accent);
  display: flex; justify-content: space-between; gap: 8px; align-items: baseline;
}
.price span { font-size: 12px; color: var(--muted); font-weight: 500; }

.adv-num {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent);
  font-weight: 700; margin-bottom: 10px; font-size: 14px;
}

.faq details {
  background: var(--card); border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 8px;
}
.faq summary { cursor: pointer; font-weight: 650; }
.faq p { color: var(--muted); margin: 10px 0 0; font-size: 14px; }

.reviews .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 6px; }
.review-meta { color: var(--muted); font-size: 12px; margin-top: 10px; }

.map-box {
  min-height: 260px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: #12161d;
}
.map-box iframe { width: 100%; height: 280px; border: 0; filter: grayscale(.2) contrast(1.05); }
.map-note { color: var(--muted); font-size: 12px; margin-top: 8px; }

.form-box {
  background: linear-gradient(145deg, #1a2029, #10141a);
  border: 1px solid var(--line); border-radius: 20px; padding: 24px;
}
.form { display: grid; gap: 12px; }
.form label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1); background: #0c0f14; color: var(--text); font: inherit;
}
.form textarea { min-height: 90px; resize: vertical; }
.check {
  display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 10px;
  font-size: 12px !important; color: var(--muted);
}
.check input { width: auto; margin-top: 3px; }
.form-note { margin: 0; font-size: 12px; color: var(--muted); }
.form-note.ok { color: var(--ok); }

.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0 40px; color: var(--muted); font-size: 13px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
