:root {
  --red: #d42707;
  --dark: #120300;
  --cream: #fff7ed;
  --peach: #ffd2bd;
  --glass: rgba(255, 255, 255, .13);
  --line: rgba(255, 255, 255, .24);
}
* { box-sizing: border-box; }
html {
  min-height: 100%;
  background: var(--red) url("scooter-background-8k.webp") center center / cover fixed no-repeat;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  background: transparent;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 3, 0, .84) 0%, rgba(16, 3, 0, .54) 44%, rgba(16, 3, 0, .20) 78%),
    linear-gradient(rgba(16, 3, 0, .10), rgba(16, 3, 0, .62));
}
a { color: inherit; }
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  background: rgba(16, 3, 0, .36);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px);
}
.brand {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.nav {
  display: flex;
  justify-content: flex-end;
  gap: .42rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
.nav a {
  padding: .5rem .66rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.nav a.active, .nav a:hover { background: rgba(255, 210, 189, .24); color: #fff; border-color: rgba(255, 210, 189, .45); }
.page {
  min-height: 100vh;
  padding: 8rem clamp(1.1rem, 5vw, 4rem) 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 26rem);
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}
.title-card {
  max-width: 52rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255, 210, 189, .34);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.kicker {
  margin: 0 0 .75rem;
  color: var(--peach);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 6.4vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.055em;
  text-shadow: 0 16px 46px rgba(0,0,0,.48);
}
.subtitle {
  max-width: 43rem;
  margin: .8rem 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.58;
}
.muted { color: rgba(255,255,255,.76); line-height: 1.7; }
.zone-line {
  margin-top: 1rem;
  color: #ffdfcf;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .85rem 1.05rem;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.btn.primary { background: #fff; color: #1c0803; border-color: #fff; }
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,.22); }
.btn.primary:hover { background: rgba(255,255,255,.86); }
.panel, .card, .shortcut, .faq details, .contact-box, .form {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(8px);
}
.panel { margin-top: 2rem; padding: clamp(1rem, 3vw, 1.4rem); border-top: 2px solid rgba(255,210,189,.55); }
.panel h2, .card h2 { margin: 0; font-size: clamp(1.35rem, 2.8vw, 2.2rem); line-height: 1.05; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card, .shortcut, .contact-box { padding: 1.1rem; }
.card span, .shortcut span, .price span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.card strong, .shortcut strong, .price strong { display: block; margin-top: .42rem; color: #fff; font-size: 1.12rem; }
.card p, .shortcut p, .price p { margin: .55rem 0 0; color: rgba(255,255,255,.76); line-height: 1.62; }
.shortcuts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .75rem; margin-top: 1.25rem; max-width: 48rem; }
.shortcut { text-decoration: none; }
.portrait-wrap {
  width: min(100%, 15rem);
  aspect-ratio: 1;
  padding: .35rem;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  overflow: hidden;
}
.portrait { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.price-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
.price { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.notice { border-left: 3px solid var(--peach); background: rgba(255,210,189,.12); padding: 1rem; line-height: 1.65; }
.faq { display: grid; gap: .75rem; margin-top: 1.5rem; max-width: 62rem; }
.faq summary { cursor: pointer; padding: 1rem; font-weight: 900; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 0; padding: 0 1rem 1rem; color: rgba(255,255,255,.78); line-height: 1.65; border-top: 1px solid rgba(255,255,255,.16); }
.contact-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
.contact-box strong { display: block; margin-top: .35rem; font-size: clamp(1.35rem, 3vw, 2rem); }
.contact-actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.mini { min-height: 2.15rem; padding: .55rem .72rem; font-size: .74rem; }
.form { display: grid; gap: 1rem; margin-top: 2rem; padding: 1.15rem; max-width: 52rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
label { display: grid; gap: .42rem; color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.94);
  color: #1c0803;
  font: inherit;
}
textarea { min-height: 8rem; resize: vertical; }
.status {
  display: none;
  margin: .2rem 0 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(126,255,178,.38);
  background: rgba(126,255,178,.13);
  color: #fff;
  font-weight: 800;
  line-height: 1.55;
}
.status.show { display: block; }
.cloud { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.cloud span { padding: .48rem .7rem; border: 1px solid rgba(255,210,189,.34); border-radius: 999px; background: rgba(255,210,189,.13); color: rgba(255,255,255,.86); font-size: .78rem; font-weight: 800; }
footer { padding: 2rem clamp(1rem, 4vw, 3rem); color: rgba(255,255,255,.62); font-size: .82rem; }
@media (max-width: 760px) {
  html { background-position: center top; background-attachment: scroll; }
  .topbar { align-items: flex-start; gap: .6rem; }
  .brand { max-width: 9rem; white-space: normal; line-height: 1.2; }
  .nav { max-width: 64vw; }
  .nav a { padding: .46rem .55rem; font-size: .66rem; }
  .hero-grid, .grid, .grid.three, .shortcuts, .price-list, .contact-list, .form-grid { grid-template-columns: 1fr; }
  .page { padding-top: 7.5rem; }
  h1 { font-size: clamp(2.05rem, 12vw, 3.55rem); }
}
