:root {
  --sky: #38bdf8;
  --blue: #4f46e5;
  --violet: #7c3aed;
  --magenta: #a855f7;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(255, 255, 255, 0.35);
  --glass: rgba(255, 255, 255, 0.18);
  --card: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 50px rgba(79, 70, 229, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(56, 189, 248, 0.35), transparent 50%),
    radial-gradient(900px 500px at 110% 10%, rgba(168, 85, 247, 0.28), transparent 46%),
    linear-gradient(180deg, #eef4ff 0%, #f7f4ff 52%, #eef2ff 100%);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #312e81, #6d28d9 55%, #0284c7);
  color: #fff;
  font-size: 0.92rem;
  padding: 10px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--blue), var(--magenta));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

nav.primary {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

nav.primary a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--muted);
  transition: 0.25s ease;
}

nav.primary a:hover,
nav.primary a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.25s ease;
}

.hero {
  padding: 56px 0 28px;
}

.hero-card {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: end stretch;
  box-shadow: var(--shadow);
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(49, 46, 129, 0.78));
}

.hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 40px;
  max-width: 720px;
}

.kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}

h1, h2, h3 { line-height: 1.2; }

h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 12px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 10px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

.intro-text { color: var(--muted); margin-bottom: 18px; }
.hero-copy p { opacity: 0.95; margin-bottom: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-main {
  background: linear-gradient(135deg, var(--sky), var(--violet));
  color: #fff;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ink {
  background: #fff;
  color: var(--blue);
}

.actions { display: flex; gap: 10px; flex-wrap: wrap; }

.section { padding: 36px 0; }

.glass {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pad { padding: 28px; }

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

.metric, .tile, .step, .faq-item, .person, .legal-block {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric:hover, .tile:hover, .step:hover, .person:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.metric b {
  display: block;
  font-size: 1.7rem;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.split img, .band img, .portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  min-height: 280px;
}

.band {
  border-radius: 36px;
  overflow: hidden;
  min-height: 240px;
}

.band img { min-height: 240px; border-radius: 0; }

.steps { counter-reset: n; }
.step h3::before {
  counter-increment: n;
  content: counter(n);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  font-size: 0.85rem;
}

.cta {
  background: linear-gradient(135deg, #312e81, #6d28d9 50%, #0284c7);
  color: #fff;
  border-radius: 36px;
  padding: 36px;
}

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

form.panel {
  display: grid;
  gap: 14px;
}

label { font-weight: 600; font-size: 0.92rem; display: grid; gap: 6px; }

input, select, textarea {
  width: 100%;
  border: 1px solid #dbe3f5;
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}

textarea { min-height: 120px; resize: vertical; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.check input { width: auto; margin-top: 4px; }

.note {
  display: none;
  border-radius: 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(168, 85, 247, 0.2));
}

.note.show { display: block; }

.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-item p { display: none; margin-top: 8px; color: var(--muted); }
.faq-item.open p { display: block; }

footer.site {
  margin-top: 20px;
  padding: 36px 0 90px;
}

.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.foot a { display: block; color: var(--muted); padding: 4px 0; }
.foot a:hover { color: var(--blue); }

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  max-width: 980px;
  margin: 0 auto;
}

.cookie.show { display: block; }

.cookie-inner {
  background: rgba(15, 23, 42, 0.86);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

.rise { animation: rise 0.7s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3, .split, .hours, .foot { grid-template-columns: 1fr; }
  .burger { display: block; }
  nav.primary {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 12px;
    flex-direction: column;
    box-shadow: var(--shadow);
  }
  nav.primary.open { display: flex; }
}

@media (max-width: 640px) {
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero-card { min-height: 460px; }
  .hero-copy, .pad, .cta { padding: 20px; }
}
