:root {
  --bg: #0c0912;
  --bg-2: #15111d;
  --panel: rgba(255,255,255,.055);
  --panel-2: rgba(255,255,255,.085);
  --stroke: rgba(255,255,255,.14);
  --gold: #f1d28a;
  --gold-2: #c99b48;
  --rose: #b98acf;
  --text: #fff7ea;
  --muted: #b8aebb;
  --ok: #8dffb2;
  --danger: #ff9c9c;
  --radius: 26px;
  --shadow: 0 24px 90px rgba(0,0,0,.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 5%, rgba(185, 138, 207, .22), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(241, 210, 138, .13), transparent 20%),
    linear-gradient(135deg, #0b0811 0%, #130e1b 50%, #09070d 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(12, 9, 18, .72);
  border-bottom: 1px solid var(--stroke);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  color: #1b0d22; font-weight: 950;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  box-shadow: 0 0 0 7px rgba(255,255,255,.04);
}
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.btn, button.btn {
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ffdf92);
  color: #17100d; font-weight: 900;
  box-shadow: 0 16px 45px rgba(241, 210, 138, .18);
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.03); box-shadow: 0 20px 55px rgba(241, 210, 138, .24); }
.btn.secondary { background: rgba(255,255,255,.08); color: var(--text); box-shadow: none; border: 1px solid var(--stroke); }
.btn.ghost { background: transparent; color: var(--gold); box-shadow: none; border: 1px solid rgba(241,210,138,.4); }
.hero { padding: 76px 0 44px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 42px; align-items: center; }
.eyebrow { color: var(--gold); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: .93; letter-spacing: -.07em; margin: 0 0 22px; }
.lead { color: var(--muted); font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55; max-width: 720px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 20px; }
.trust { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 14px; margin-top: 22px; }
.trust span { border: 1px solid var(--stroke); background: rgba(255,255,255,.04); padding: 9px 12px; border-radius: 999px; }
.card {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.consult-card { padding: 28px; overflow: hidden; }
.card-head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--stroke); margin-bottom: 18px; }
.card-title { font-weight: 900; font-size: 20px; }
.form-grid { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: #f5ddbd; font-weight: 750; font-size: 14px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--stroke); outline: none;
  border-radius: 16px; padding: 15px 15px;
  background: rgba(255,255,255,.09);
  color: var(--text); font: inherit; font-weight: 650;
}
select option { color: #15111d; }
textarea { min-height: 106px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,247,234,.5); }
.check { display: flex; align-items: flex-start; gap: 10px; color: var(--text); line-height: 1.45; }
.check input { width: 18px; min-width: 18px; height: 18px; margin-top: 2px; }
.form-note { color: var(--muted); font-size: 13px; line-height: 1.45; }
.alert { display: none; border-radius: 18px; padding: 15px; border: 1px solid var(--stroke); line-height: 1.45; }
.alert.show { display: block; }
.alert.ok { color: var(--ok); background: rgba(82, 255, 146, .08); border-color: rgba(141,255,178,.35); }
.alert.error { color: var(--danger); background: rgba(255, 82, 82, .08); border-color: rgba(255,156,156,.35); }
.section { padding: 58px 0; }
.section h2 { font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -.055em; line-height: 1; margin: 0 0 16px; }
.section p.section-lead { color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 780px; margin: 0 0 28px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.intent-card { padding: 20px; min-height: 132px; display: grid; align-content: space-between; transition: transform .22s ease, background .22s ease; }
.intent-card:hover { transform: translateY(-4px); background: var(--panel-2); }
.intent-card strong { font-size: 18px; display: block; margin-bottom: 8px; }
.intent-card span { color: var(--muted); font-size: 14px; line-height: 1.42; }
.motel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.motel-card { padding: 22px; display: grid; gap: 14px; align-content: start; }
.motel-card h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.motel-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; color: #f5ddbd; border: 1px solid rgba(241,210,138,.25); border-radius: 999px; padding: 6px 9px; background: rgba(241,210,138,.06); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 22px; position: relative; }
.step:before { counter-increment: step; content: counter(step); width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; background: rgba(241,210,138,.14); color: var(--gold); font-weight: 900; margin-bottom: 16px; }
.step strong { display: block; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); line-height: 1.5; }
.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--stroke); background: rgba(255,255,255,.045); border-radius: 18px; padding: 18px; }
summary { cursor: pointer; font-weight: 850; }
details p { color: var(--muted); line-height: 1.6; margin: 12px 0 0; }
.footer { border-top: 1px solid var(--stroke); padding: 30px 0; color: var(--muted); font-size: 14px; }
.footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.footer a { color: var(--gold); font-weight: 800; }
.admin-body { background: #0c0912; }
.admin-wrap { width: min(1280px, calc(100% - 28px)); margin: 0 auto; padding: 24px 0 60px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi { padding: 18px; border-radius: 20px; border: 1px solid var(--stroke); background: rgba(255,255,255,.055); }
.kpi small { color: var(--muted); display: block; margin-bottom: 8px; }
.kpi strong { font-size: 30px; }
.table-card { overflow: auto; border-radius: 22px; border: 1px solid var(--stroke); background: rgba(255,255,255,.04); margin-bottom: 24px; }
table { width: 100%; border-collapse: collapse; min-width: 980px; }
th, td { text-align: left; padding: 13px; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
th { color: #f5ddbd; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
td { color: var(--text); font-size: 14px; }
.pill { display: inline-flex; padding: 6px 9px; border-radius: 999px; border: 1px solid var(--stroke); color: var(--gold); background: rgba(241,210,138,.07); white-space: nowrap; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-btn { border: 1px solid var(--stroke); background: rgba(255,255,255,.07); color: var(--text); border-radius: 999px; min-height: 32px; padding: 0 10px; cursor: pointer; font-weight: 750; }
.mini-btn:hover { background: rgba(255,255,255,.12); }
.login-box { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-card { width: min(440px, 100%); padding: 28px; }
.lottie-dot { width: 72px; height: 72px; margin-bottom: 12px; }
@media (max-width: 980px) {
  .hero-grid, .quick-grid, .motel-grid, .steps, .kpis { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero { padding-top: 42px; }
  .hero-grid, .quick-grid, .motel-grid, .steps, .kpis { grid-template-columns: 1fr; }
  .consult-card { padding: 20px; }
  .hero-actions .btn { width: 100%; }
  .footer .container { display: grid; }
}
