:root {
  --bg: #0b0f14;
  --panel: rgba(255,255,255,0.04);
  --panel2: rgba(255,255,255,0.03);
  --text: #e6edf3;
  --muted: #a8b3c2;
  --border: rgba(255,255,255,0.10);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
          radial-gradient(1200px 800px at 15% 10%, rgba(125,211,252,0.16), transparent 60%),
          radial-gradient(1000px 700px at 85% 0%, rgba(167,139,250,0.12), transparent 55%),
          var(--bg);
  color: var(--text);
  line-height: 1.55;
}

/* ... existing code ... */

/* Home page: keep the vibe, but stop the “blue wash” from sitting behind lots of text */
body.home {
  background:
          radial-gradient(900px 520px at 50% 115%, rgba(125,211,252,0.10), transparent 60%),
          var(--bg);
}

a { color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 24px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,0.65);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: unset; }
.brand img {
  height: 64px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.brand .name { display: none; }

/* ... existing code ... */

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  form { grid-template-columns: 1fr; }
  .brand { min-width: unset; }
  .brand img { height: 48px; }
}

nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }
nav a.active { color: var(--text); }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 8px 10px;
  border-radius: 999px;
}
.lang select {
  background: transparent;
  color: var(--text);
  border: none;
  outline: none;
  font-size: 14px;
}
.lang label { color: var(--muted); font-size: 13px; }

.btn {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.08s ease, background 0.2s ease, border 0.2s ease;
}
.btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn.primary {
  background: linear-gradient(135deg, rgba(125,211,252,0.18), rgba(167,139,250,0.14));
  border-color: rgba(125,211,252,0.25);
}

.hero { padding: 52px 0 18px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; align-items: start; }
.headline {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.8px;
}
.subhead { font-size: 18px; color: var(--muted); max-width: 60ch; margin: 0 0 22px; }

/* ... existing code ... */

/* Prevent awkward wraps in long “note” sentences */
.subhead {
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 13px;
}

/* ... existing code ... */

.pill {
  cursor: default;
  user-select: none;

  /* make them feel like “labels”, not “buttons” */
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  color: rgba(230, 237, 243, 0.78);
}

/* if anything ever wraps these in a link, keep them non-buttony */
.pill-row a { text-decoration: none; }
.pill-row a:hover .pill { transform: none; }

.card {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h3, .card h4 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.list { margin: 10px 0 0; padding-left: 18px; color: var(--muted); font-size: 14px; }
.list li { margin: 6px 0; }

.section { padding: 34px 0; }
.section-title { font-size: 22px; margin: 0 0 14px; letter-spacing: -0.2px; }
.section-lead { margin: 0 0 18px; color: var(--muted); max-width: 75ch; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.spec { margin: 10px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.spec li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.spec li:last-child { border-bottom: none; }
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 12px; }
.price strong { font-size: 26px; }
.price span { color: var(--muted); font-size: 13px; }

form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
form .full { grid-column: 1 / -1; }
input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  outline: none;
  font-size: 14px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus { border-color: rgba(125,211,252,0.35); }

.form-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.notice { color: var(--muted); font-size: 12px; margin: 0; }

footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  form { grid-template-columns: 1fr; }
  .brand { min-width: unset; }
}