/* ============================================================
   Svezu tě Teslou — "Liquid Glass / Modern Dark" design system
   Ported from the OpenClaw Modern Dark theme (md-kit) tokens.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ---- ink ---- */
  --ink:      #f6f7fb;
  --ink-soft: #e6e8f0;
  --ink-mute: #c2c6d4;
  --label:    #9ea4b6;

  /* ---- glass surfaces ---- */
  --glass-bg:      rgba(18, 16, 30, 0.30);
  --glass-bg-2:    rgba(255, 255, 255, 0.045);
  --glass-border:  rgba(255, 255, 255, 0.22);
  --section-border:rgba(255, 255, 255, 0.12);
  --divider:       rgba(255, 255, 255, 0.12);
  --input-bg:      rgba(4, 4, 8, 0.46);
  --bar-bg:        rgba(10, 8, 18, 0.42);

  /* ---- accent (tweakable) ---- */
  --acc1:     #5aa1ff;
  --acc2:     #1d4ed8;
  --acc-glow: rgba(29, 78, 216, 0.55);
  --acc-ink:  #ffffff;          /* text/icon color on accent fills */
  --acc-soft: rgba(90, 161, 255, 0.16);

  /* ---- status ---- */
  --ok:   #34d399;
  --warn: #fbbf24;
  --err:  #ef4444;

  /* ---- background scene (tweakable glows) ---- */
  --glow-a: rgba(124, 58, 237, 0.26);   /* top-right */
  --glow-b: rgba(29, 78, 216, 0.30);    /* bottom-left */
  --bg-base:#06060c;

  /* ---- geometry ---- */
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --blur: 18px;
  --shell-max: 1180px;

  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* fixed background scene that the glass refracts against ----------- */
.scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(90% 70% at 78% -6%, var(--glow-a), transparent 60%),
    radial-gradient(85% 80% at 6% 104%, var(--glow-b), transparent 58%),
    linear-gradient(180deg, #0a0a14 0%, var(--bg-base) 60%, #05050a 100%);
}
.scene::after {
  /* faint moving sheen + grain-ish vignette */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255,255,255,.05), transparent 70%);
  mix-blend-mode: screen;
}

/* a soft floating orb for depth (purely decorative) */
.orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
}
.orb.a { width: 460px; height: 460px; top: -120px; right: -80px;
  background: radial-gradient(circle, var(--acc-glow), transparent 68%); }
.orb.b { width: 520px; height: 520px; bottom: -160px; left: -120px;
  background: radial-gradient(circle, var(--glow-b), transparent 70%); }

/* ============================================================
   Glass primitives
   ============================================================ */
.glass {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,.28),
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 -22px 60px -30px rgba(0,0,0,.6),
    0 30px 60px -28px rgba(0,0,0,.7);
}
/* the top specular sheen — the "liquid" highlight */
.glass::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 46%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  pointer-events: none;
}
/* a bright hairline across the very top edge */
.glass::after {
  content: "";
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  pointer-events: none;
}

/* ============================================================
   Layout
   ============================================================ */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acc1);
  box-shadow: 0 0 10px var(--acc1);
}

h1, h2, h3 { margin: 0; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.05;
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mute);
  text-wrap: pretty;
}

/* ============================================================
   Top navigation (frameless-window flavour)
   ============================================================ */
.navwrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 0 16px;
}
.nav {
  max-width: var(--shell-max);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 10px 0 18px;
  border-radius: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand .mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(180deg, var(--acc1), var(--acc2));
  box-shadow: 0 6px 16px -6px var(--acc-glow), inset 0 1px 0 rgba(255,255,255,.45);
  color: var(--acc-ink);
}
.brand .mark svg { display: block; }
.brand b { color: var(--ink); }
.brand .accentword { color: var(--acc1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav-links a {
  padding: 8px 13px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .14s ease, color .14s ease;
}
.nav-links a:hover { background: rgba(255,255,255,.10); color: #fff; }

.nav-spacer { flex: 1; }

.nav-phone {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 6px;
}
.nav-phone span { color: var(--label); font-weight: 600; margin-right: 6px; }

/* window control dots — the signature app detail */
.wc {
  display: flex;
  gap: 7px;
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid var(--divider);
}
.wc i {
  width: 11px; height: 11px; border-radius: 50%;
  display: block;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
.wc i.min { background: #f5b417; }
.wc i.max { background: #2bbf4e; }
.wc i.cls { background: #ff5a4d; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  appearance: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .12s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn svg { display: block; }

.btn-primary {
  color: var(--acc-ink);
  background: linear-gradient(180deg, var(--acc1), var(--acc2));
  box-shadow:
    0 16px 30px -12px var(--acc-glow),
    0 6px 12px -6px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -2px 0 rgba(0,0,0,.18);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.07); }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }

.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; border-radius: 11px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 56px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}
.hero-copy { padding: 8px 4px; align-self: center; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--acc1), #b9d4ff 60%, var(--acc1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 30ch;
  text-wrap: pretty;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat .n {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat .n small { font-size: 16px; font-weight: 700; color: var(--acc1); margin-left: 2px; }
.stat .l { margin-top: 3px; font-size: 12.5px; color: var(--label); font-weight: 600; }

/* hero image panel */
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  min-height: 440px;
  display: flex;
}
.hero-media image-slot {
  width: 100%;
  height: 100%;
  min-height: 416px;
  border-radius: 14px;
}
.hero-badge {
  position: absolute;
  left: 26px; bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 13px;
  background: var(--bar-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px -16px rgba(0,0,0,.7);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.hero-badge .t { font-size: 13px; }
.hero-badge .t b { display: block; font-weight: 700; }
.hero-badge .t span { color: var(--label); font-size: 11.5px; }

/* ============================================================
   Generic glass card grid
   ============================================================ */
.grid { display: grid; gap: 18px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  padding: 26px 24px;
  border-radius: var(--radius-md);
}
.card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--acc1);
  background: var(--acc-soft);
  border: 1px solid var(--section-border);
}
.card .ico svg { display: block; }
.card h3 { font-size: 19px; font-weight: 700; }
.card p { margin-top: 9px; font-size: 14.5px; line-height: 1.55; color: var(--ink-mute); }
.card .meta {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--acc1);
  display: inline-flex; align-items: center; gap: 7px;
}

.block { margin: 70px 0; }
.block-lg { margin: 96px 0; }

/* ============================================================
   Why-Tesla feature row
   ============================================================ */
.feature {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
}
.feature .ico {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 11px;
  color: var(--acc-ink);
  background: linear-gradient(180deg, var(--acc1), var(--acc2));
  box-shadow: 0 8px 18px -8px var(--acc-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.feature h3 { font-size: 16.5px; font-weight: 700; }
.feature p { margin-top: 6px; font-size: 14px; line-height: 1.5; color: var(--ink-mute); }

/* ============================================================
   Pricing / calculator
   ============================================================ */
.calc {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.calc-left { padding: 36px; }
.calc-right {
  padding: 36px;
  background: var(--input-bg);
  border-left: 1px solid var(--section-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 8px;
}
.input, select.input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  border: 1px solid var(--section-border);
  color: var(--ink);
  font: 600 14.5px/1 var(--font-ui);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.35);
  outline: none;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.input::placeholder { color: var(--label); font-weight: 500; }
.input:focus, select.input:focus {
  border-color: var(--acc1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.35), 0 0 0 3px var(--acc-soft);
}
select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 16 16' fill='none' stroke='%239ea4b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6 L8 10 L12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
}
.range-row { display: flex; align-items: center; gap: 16px; }
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.5), 0 0 0 3px var(--acc-soft);
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.5); cursor: pointer;
}
.km-val {
  flex: 0 0 auto;
  min-width: 78px;
  text-align: right;
  font-weight: 800;
  font-size: 18px;
}
.km-val small { font-size: 12px; color: var(--label); font-weight: 600; }

.price-out .label2 { font-size: 13px; color: var(--label); font-weight: 600; }
.price-out .amount {
  margin-top: 6px;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-out .amount small { font-size: 22px; font-weight: 800; color: var(--acc1); margin-left: 4px; }
.price-out .note { margin-top: 14px; font-size: 13px; color: var(--ink-mute); line-height: 1.5; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--section-border);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .14s ease;
}
.chip[aria-pressed="true"] {
  background: var(--acc-soft);
  border-color: var(--acc1);
  color: var(--ink);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 200px; gap: 16px; }
.gallery image-slot { width: 100%; height: 100%; border-radius: 16px; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 1; }

/* ============================================================
   Reviews
   ============================================================ */
.quote { padding: 28px 26px; border-radius: var(--radius-md); display: flex; flex-direction: column; }
.quote .stars { display: flex; gap: 3px; color: var(--warn); margin-bottom: 14px; }
.quote p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); flex: 1; text-wrap: pretty; }
.quote .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.quote .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc1), var(--acc2));
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px; color: var(--acc-ink);
}
.quote .who b { display: block; font-size: 14px; font-weight: 700; }
.quote .who span { font-size: 12.5px; color: var(--label); }

/* ============================================================
   Booking form
   ============================================================ */
.booking { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; }
.booking-aside {
  padding: 40px 36px;
  background: linear-gradient(160deg, rgba(29,78,216,.22), rgba(124,58,237,.14));
  border-right: 1px solid var(--section-border);
  display: flex; flex-direction: column;
}
.booking-aside h3 { font-size: 26px; font-weight: 800; line-height: 1.08; }
.booking-aside p { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--ink-mute); }
.booking-aside .trust { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.booking-aside .trust .row { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.booking-aside .trust .row svg { color: var(--ok); flex: 0 0 auto; }
.booking-form { padding: 40px 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-foot { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-foot .fine { font-size: 12px; color: var(--label); max-width: 30ch; line-height: 1.5; }

/* ============================================================
   Contact + footer
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { padding: 26px 24px; border-radius: var(--radius-md); }
.contact-card .ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: var(--acc1); background: var(--acc-soft); border: 1px solid var(--section-border); margin-bottom: 16px; }
.contact-card h3 { font-size: 15px; font-weight: 700; }
.contact-card a, .contact-card p { margin-top: 7px; display: block; font-size: 16px; color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-card span { font-size: 13px; color: var(--label); }

footer {
  margin-top: 80px;
  border-top: 1px solid var(--divider);
  background: var(--bar-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.footbar {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  color: var(--label);
}
.footbar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.footbar .sep { flex: 1; }
.footbar a { color: var(--ink-mute); text-decoration: none; }
.footbar a:hover { color: var(--ink); }

/* ============================================================
   Packages (pricing cards)
   ============================================================ */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.pkg {
  display: flex; flex-direction: column;
  padding: 30px 28px; border-radius: var(--radius-md);
  position: relative;
}
.pkg small {
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--label);
}
.pkg h3 { margin-top: 10px; font-size: 23px; font-weight: 800; letter-spacing: -.02em; }
.pkg > p { margin-top: 12px; font-size: 14.5px; line-height: 1.55; color: var(--ink-mute); }
.pkg ul { margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pkg li { display: flex; gap: 11px; font-size: 14px; line-height: 1.45; color: var(--ink-soft); }
.pkg li::before {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 1px;
  background: var(--acc-soft); border: 1px solid var(--acc1); border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235aa1ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5 L10 17 L19 6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pkg .btn { margin-top: 24px; }
.pkg .pkg-cta { margin-top: auto; padding-top: 24px; }

.pkg-featured {
  background: linear-gradient(170deg, rgba(29,78,216,.26), rgba(124,58,237,.14)), var(--glass-bg);
  border-color: var(--acc1);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,.3),
    0 0 0 1px var(--acc1),
    0 30px 70px -28px var(--acc-glow),
    0 30px 60px -28px rgba(0,0,0,.7);
}
.pkg .popular {
  position: absolute; top: -13px; left: 28px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--acc-ink);
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(180deg, var(--acc1), var(--acc2));
  box-shadow: 0 8px 18px -6px var(--acc-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-full { width: 100%; }

/* ============================================================
   Steps (process)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 26px 24px; border-radius: var(--radius-md); position: relative; }
.step .n {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  font-size: 17px; font-weight: 800;
  color: var(--acc-ink);
  background: linear-gradient(180deg, var(--acc1), var(--acc2));
  box-shadow: 0 8px 18px -8px var(--acc-glow), inset 0 1px 0 rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.step h3 { font-size: 17px; font-weight: 700; }
.step p { margin-top: 8px; font-size: 13.5px; line-height: 1.55; color: var(--ink-mute); }

/* ============================================================
   Audience band
   ============================================================ */
.audience { padding: 44px 42px; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.audience::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 120% at 88% 0%, var(--acc-glow), transparent 60%);
  opacity: .5;
}
.audience .a-head { max-width: 520px; position: relative; }
.audience .a-head .eyebrow { margin-bottom: 14px; }
.audience .a-head h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; line-height: 1.06; }
.audience-list { margin-top: 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; position: relative; }
.audience-list div {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 18px; border-radius: 13px;
  background: rgba(255,255,255,.05); border: 1px solid var(--section-border);
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
}
.audience-list div::before {
  content: ""; flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--acc1); box-shadow: 0 0 10px var(--acc1);
}

/* spec strip under hero car */
.specstrip { display: flex; gap: 8px; }
.specstrip .s {
  flex: 1; text-align: center; padding: 14px 8px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid var(--section-border);
}
.specstrip .s b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.specstrip .s span { font-size: 11.5px; color: var(--label); font-weight: 600; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav-phone { display: none; }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; }
  .hero-media image-slot { min-height: 300px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .audience-list { grid-template-columns: 1fr; }
  .calc, .booking { grid-template-columns: 1fr; }
  .calc-right { border-left: 0; border-top: 1px solid var(--section-border); }
  .booking-aside { border-right: 0; border-bottom: 1px solid var(--section-border); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .cols-4, .cols-3, .cols-2, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .wc { display: none; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 180px; }
}
