:root {
  --bg: #07090f;
  --bg2: #0c111b;
  --panel: #121826;
  --line: rgba(62, 231, 255, 0.18);
  --cyan: #3ee7ff;
  --orange: #ff6a1a;
  --ink: #eef3fb;
  --muted: #9aa8bd;
  --max: 1120px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(62,231,255,.12), transparent 50%),
    radial-gradient(900px 420px at -10% 20%, rgba(255,106,26,.10), transparent 45%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #fff; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #000; padding: 8px 12px; z-index: 20; }
header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(7,9,15,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navrow {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; letter-spacing: .04em; }
.brand img { width: 36px; height: 36px; }
.brand span { font-family: Syne, sans-serif; font-size: 1.05rem; }
.brand b { color: var(--cyan); }
nav.primary { display: flex; flex-wrap: wrap; gap: 6px 14px; }
nav.primary a {
  color: var(--muted); font-size: .86rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
nav.primary a[aria-current="page"], nav.primary a:hover { color: var(--cyan); }
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--orange), #ff8a3d);
  color: #140800 !important; font-weight: 700; padding: 10px 16px; border-radius: 999px;
  letter-spacing: .04em;
}
.cta.ghost {
  background: transparent; color: var(--cyan) !important;
  border: 1px solid var(--cyan);
}
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center;
  padding: 48px 0 28px;
}
.hero h1 {
  font-family: Syne, sans-serif; font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05; margin: 0 0 14px;
}
.kicker { color: var(--orange); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; }
.lede { color: var(--muted); font-size: 1.12rem; max-width: 42rem; }
.hero-media {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,106,26,.12), 0 20px 60px rgba(0,0,0,.45);
}
.hero-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stats, .cards, .split { display: grid; gap: 16px; }
.stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 10px 0 36px; width: 100%; }
.stat, .card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
}
.stat { text-align: center; }
.stat b, .card h2, .card h3 { font-family: Syne, sans-serif; display: block; }
.stat span, .card p { color: var(--muted); }
.cards { grid-template-columns: repeat(3, 1fr); padding-bottom: 40px; }
.card img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.page-hero { padding: 28px 0 8px; }
.page-hero h1 { font-family: Syne, sans-serif; font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin: 8px 0; }
.content { display: grid; grid-template-columns: 1.4fr .75fr; gap: 28px; padding: 12px 0 48px; }
.prose p { color: #c9d4e3; }
.side {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
  height: max-content; position: sticky; top: 88px;
}
.side h2 { font-family: Syne, sans-serif; font-size: 1.05rem; margin-top: 0; }
.side p, .side li { color: var(--muted); }
.side a.phone { font-size: 1.45rem; font-weight: 800; color: var(--orange); }
footer.site {
  border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: .92rem;
}
.foot { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--cyan); }
.list { margin: 0; padding-left: 18px; }
form.status, form.job {
  display: grid; gap: 10px; margin-top: 16px;
}
input, textarea {
  background: #0a0e16; border: 1px solid var(--line); color: var(--ink);
  border-radius: 10px; padding: 12px 14px; font: inherit;
}
button[type=submit] {
  background: var(--cyan); color: #041016; border: 0; font-weight: 800;
  padding: 12px 16px; border-radius: 10px; cursor: pointer;
}
@media (max-width: 880px) {
  .hero, .content, .cards, .stats, .foot { grid-template-columns: 1fr; }
  .side { position: static; }
  nav.primary { display: none; }
  .navrow { flex-wrap: wrap; }
}

.prices { width:100%; border-collapse:collapse; margin: 16px 0 22px; font-size:.95rem; }
.prices th, .prices td { text-align:left; padding:8px 10px; border-bottom:1px solid var(--line); }
.prices th { color: var(--cyan); font-family: Syne, sans-serif; }
.prices td:last-child { color: var(--orange); font-weight:700; }

.ticket, .history-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin: 14px 0;
}
.ticket dt { color: var(--muted); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-top: 10px; }
.ticket dd { margin: 0 0 4px; font-weight: 700; }
.ticket dl { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; margin: 0; }
.notice { border: 1px solid var(--orange); color: var(--ink); background: rgba(255,106,26,.1); border-radius: 12px; padding: 12px 14px; }
.status-now { font-family: Syne, sans-serif; font-size: 1.35rem; color: var(--cyan); margin: 0 0 8px; }

form.status label { font-size: 1.08rem; font-weight: 700; }
form.status button[type=submit] {
  font-size: 1.2rem;
  padding: 16px 20px;
}
.status-call { margin-top: 14px; }
.status-call .cta {
  font-size: .95rem;
  padding: 9px 14px;
}
@media (max-width: 880px) {
  form.status button[type=submit],
  .status-call .cta {
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }
  form.status button[type=submit] {
    width: 18rem;
    justify-self: center;
  }
  .status-call {
    display: flex;
    justify-content: center;
  }
  .status-call .cta { width: 15rem; }
}
