:root {
  --bg: #0a1020;
  --bg-soft: #0f172a;
  --panel: rgba(255,255,255,.06);
  --panel-border: rgba(255,255,255,.12);
  --text: #e8eefc;
  --muted: #9fb0d1;
  --green: #22c55e;
  --green-dark: #16a34a;
  --accent: #7dd3fc;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
  --radius: 24px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, sans-serif; background: radial-gradient(circle at top left, #16335f 0%, #0b1226 40%, #060b15 100%); color: var(--text); }
a { color: inherit; text-decoration: none; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(34,197,94,.18), transparent 25%), radial-gradient(circle at 15% 20%, rgba(125,211,252,.14), transparent 20%);
  pointer-events: none;
}
.site-shell { width: min(1200px, calc(100% - 32px)); margin: 18px auto 40px; position: relative; z-index: 1; }
.glass, .panel, .product-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.header {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 18px; border-radius: 22px; position: sticky; top: 12px; z-index: 20; margin-bottom: 26px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green), var(--accent)); font-weight: 800; color: #04121f;
}
.eyebrow { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.brand-name { font-weight: 700; font-size: 15px; }
.nav { display: flex; gap: 10px; flex-wrap: wrap; }
.nav a { padding: 10px 14px; border-radius: 999px; color: var(--muted); }
.nav a.active, .nav a:hover { background: rgba(255,255,255,.08); color: var(--text); }
.menu-toggle { display: none; }
.hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: stretch; margin-bottom: 26px; }
.hero-copy, .hero-card { padding: 34px; border-radius: var(--radius); }
.hero-copy { min-height: 100%; }
.hero h1, .subhero h1, .panel h1 { font-size: clamp(2rem, 4vw, 4.4rem); line-height: 1.02; margin: 14px 0 14px; }
.hero p, .panel p, .subhero p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.pill, .section-tag, .badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: rgba(125,211,252,.12); color: #d8f3ff; border: 1px solid rgba(125,211,252,.18); font-size: 13px; font-weight: 600;
}
.hero-actions, .cta-actions, .form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.btn {
  padding: 13px 18px; border-radius: 14px; border: 1px solid transparent; font-weight: 700; cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s ease; display: inline-flex; align-items: center; justify-content: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: white; }
.btn-secondary { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--text); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.hero-stats div { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.hero-stats strong { display: block; font-size: 1.3rem; margin-bottom: 6px; }
.hero-stats span, .muted { color: var(--muted); }
.card-top { display: flex; align-items: center; gap: 10px; color: #d8f3ff; margin-bottom: 18px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(34,197,94,.12); }
.flow-list, .timeline { display: grid; gap: 14px; }
.flow-item, .timeline-item { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.flow-item span:first-child {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px;
  background: rgba(34,197,94,.14); color: #d9ffe6; font-weight: 800;
}
.section-grid, .split-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; margin-bottom: 26px; }
.panel, .product-card { border-radius: var(--radius); padding: 28px; }
.feature-grid, .catalog-grid { display: grid; gap: 16px; }
.feature-grid { grid-template-columns: repeat(2, 1fr); margin-top: 22px; }
.feature-card { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.gradient-panel { background: linear-gradient(180deg, rgba(34,197,94,.14), rgba(125,211,252,.06)); }
.check-list { margin: 18px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.assistant-panel .chat-box {
  min-height: 180px; border-radius: 18px; padding: 14px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 10px; margin: 18px 0 12px;
}
.chat-message { max-width: 85%; padding: 12px 14px; border-radius: 16px; font-size: .95rem; line-height: 1.5; }
.chat-message.bot { background: rgba(125,211,252,.12); align-self: flex-start; }
.chat-message.user { background: rgba(34,197,94,.16); align-self: flex-end; }
.chat-controls { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
input, textarea, select {
  width: 100%; padding: 14px 15px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(4,10,20,.6); color: var(--text); outline: none;
}
input::placeholder, textarea::placeholder { color: #89a0c9; }
.section { margin-bottom: 26px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer {
  display: flex; justify-content: space-between; gap: 20px; padding: 28px 8px 10px; color: var(--muted); flex-wrap: wrap;
}
.subhero { padding: 18px 4px 22px; }
.catalog-controls { display: grid; gap: 16px; margin-bottom: 24px; }
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.filter { background: rgba(255,255,255,.05); color: var(--text); border: 1px solid rgba(255,255,255,.08); padding: 10px 14px; border-radius: 999px; cursor: pointer; }
.filter.active { background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.28); }
.catalog-grid { grid-template-columns: repeat(4, 1fr); }
.product-card h3 { margin: 14px 0 10px; }
.text-link { color: #bcf8d1; font-weight: 700; }
.reservation-layout { align-items: start; }
.input-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.reservation-form { display: grid; gap: 14px; }
label span { display: block; margin-bottom: 8px; font-weight: 600; }
.upload-box { padding: 18px; border-radius: 18px; border: 1px dashed rgba(125,211,252,.28); background: rgba(125,211,252,.06); }
.upload-box input { background: transparent; border: 0; padding: 0; margin-bottom: 8px; }
.checkbox-row { display: flex; align-items: start; gap: 10px; color: var(--muted); }
.checkbox-row input { width: 20px; margin-top: 4px; }
.reservation-list { display: grid; gap: 12px; }
.reservation-item { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.reservation-item strong { display: block; margin-bottom: 6px; }
.toast {
  position: fixed; right: 20px; bottom: 20px; background: rgba(10,18,32,.92); color: var(--text);
  border: 1px solid rgba(255,255,255,.12); padding: 14px 16px; border-radius: 16px; box-shadow: var(--shadow); z-index: 100;
}
@media (max-width: 980px) {
  .hero, .section-grid, .split-section, .cta-panel, .catalog-grid { grid-template-columns: 1fr; }
  .feature-grid, .input-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .menu-toggle {
    display: inline-flex; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12); color: var(--text); align-items: center; justify-content: center;
  }
  .header.open { flex-wrap: wrap; }
  .header.open .nav { display: flex; width: 100%; }
}
@media (max-width: 640px) {
  .site-shell { width: min(100% - 18px, 1200px); }
  .header, .hero-copy, .hero-card, .panel, .product-card { padding: 18px; }
  .hero-stats { grid-template-columns: 1fr; }
}
