/* ==============================================================
   Concept LIVE — Site CSS
   ==============================================================
   Aesthetic: bright, premium broadcast studio. Warm off-white
   canvas with subtle cream tint to feel less clinical than pure
   white. Brand orange #EE7203 and blue secondary remain. The
   hero "ON AIR" multiviewer stays dark — it's literally a
   broadcast monitor, and a dark tile pops against the light page.
   Typography: Bricolage Grotesque (display) + Manrope (body) +
   JetBrains Mono (numerics).
   ============================================================== */

/* ---------- 1. Design tokens --------------------------------- */
:root {
  /* Surfaces — light theme with warm cream tint */
  --bg-0:        #EFE9DC;   /* deepest warm tint (used for subtle alt surfaces) */
  --bg-1:        #FAF6EE;   /* main canvas — warm off-white */
  --bg-2:        #F3EEE2;   /* section alt — slightly darker for stripe contrast */
  --bg-3:        #F7F2E6;
  --bg-elevated: #FFFFFF;   /* elevated cards: pure white */
  --bg-card:     rgba(255,255,255,0.85);
  --bg-card-hi:  #FFFFFF;

  /* Borders */
  --border:        rgba(20,24,38,0.08);
  --border-strong: rgba(20,24,38,0.16);
  --border-accent: rgba(238,114,3,0.45);

  /* Ink (text) — dark on light */
  --ink-0:    #0B0F1A;
  --ink-1:    #1A1F2E;
  --ink-2:    #4D5566;
  --ink-3:    #6E768A;
  --ink-muted:#9097A8;

  /* Brand */
  --brand:        #ee7203;
  --brand-hot:    #ff8418;
  --brand-soft:   rgba(238,114,3,0.12);
  --brand-glow:   rgba(238,114,3,0.30);

  /* Secondary accent */
  --accent:       #3b82f6;
  --accent-hot:   #5a96ff;
  --accent-soft:  rgba(59,130,246,0.12);
  --accent-glow:  rgba(59,130,246,0.28);

  --signal-green: #16a37c;
  --signal-red:   #e63a4a;

  /* Type */
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing & radii */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --shadow-card:    0 1px 2px rgba(20,24,38,0.05), 0 12px 32px -14px rgba(20,24,38,0.14);
  --shadow-feature: 0 2px 4px rgba(20,24,38,0.06),
                    0 28px 60px -18px rgba(238,114,3,0.22),
                    0 28px 60px -28px rgba(20,24,38,0.18);

  /* Broadcast-tile dark surface tokens (used only by .live-tile) */
  --tile-bg-0:     #07090f;
  --tile-bg-1:     #0a0e17;
  --tile-bg-2:     #0e1422;
  --tile-elevated: #161f33;
  --tile-border:   rgba(255,255,255,0.10);
  --tile-border-s: rgba(255,255,255,0.18);
  --tile-ink-0:    #ffffff;
  --tile-ink-1:    #e7ebf3;
  --tile-ink-2:    #a4adbe;
  --tile-ink-3:    #6e768a;

  /* Layout */
  --container: 1240px;
  --header-h: 72px;
}

/* ---------- 2. Reset / base ---------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle background texture across the whole site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(238,114,3,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(59,130,246,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .18s ease;
}
a:hover { color: var(--brand-hot); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink-0);
  margin: 0;
}

ul { padding: 0; margin: 0; list-style: none; }

button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--bg-0);
  padding: 12px 18px;
  border-radius: var(--radius);
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- 3. Typography utilities -------------------------- */
.eyebrow,
.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 999px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--brand-soft);
  animation: pulse 2.4s ease-in-out infinite;
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section-head--align-left { text-align: left; margin-left: 0; }
.section-head--align-center { text-align: center; }

.section-head__title {
  margin-top: 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-head__sub {
  margin: 18px auto 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 600px;
}
.section-head--align-left .section-head__sub { margin-left: 0; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--brand-soft); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}

/* ---------- 4. Buttons --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--sm  { padding: 10px 16px; font-size: 14px; }
.btn--lg  { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--brand-glow), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn--primary:hover {
  background: var(--brand-hot);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px var(--brand-glow), 0 1px 0 rgba(255,255,255,0.3) inset;
}

.btn--secondary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -10px var(--accent-glow), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn--secondary:hover { background: var(--accent-hot); color: #fff; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink-1);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.04);
  color: var(--ink-0);
  border-color: rgba(255,255,255,0.2);
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ---------- 5. Brand mark ------------------------------------ */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-0);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink-0); }
.brand__mark { display: block; }
.brand__wordmark--accent { color: var(--brand); }

/* ---------- 6. Site header ----------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,14,23,0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease, border-color .2s ease;
}
.site-header.is-scrolled {
  background: rgba(10,14,23,0.92);
  border-bottom-color: var(--border-strong);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav { margin-left: 24px; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.site-nav__link:hover { color: var(--ink-0); background: rgba(255,255,255,0.04); }

.site-nav__has-menu { position: relative; }
.site-nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 540px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 60;
}
.site-nav__has-menu:hover .site-nav__menu,
.site-nav__has-menu:focus-within .site-nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav__menu-heading {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.site-nav__menu a {
  display: block;
  padding: 8px 10px;
  margin-left: -10px;
  border-radius: 8px;
  color: var(--ink-1);
  font-size: 14px;
  font-weight: 500;
}
.site-nav__menu a:hover { background: rgba(255,255,255,0.05); color: var(--ink-0); }

.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.site-header__phone:hover { color: var(--brand); }
.site-header__phone svg { color: var(--brand); }

.site-header__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.site-header__burger span {
  display: block; width: 18px; height: 2px; background: var(--ink-1); border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.mobile-nav a {
  padding: 12px 4px;
  color: var(--ink-1);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-nav.is-open { display: flex; }


/* ---------- 7. Hero ------------------------------------------ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 80px;
  overflow: hidden;
  z-index: 1;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.4;
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.hero__glow--left  { left: -200px; top: 100px;  background: var(--accent-glow); }
.hero__glow--right { right: -200px; top: -100px; background: var(--brand-glow); }

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__heading {
  margin-top: 24px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.hero__heading-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hot) 50%, #ffb070 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 22px;
  max-width: 520px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.55;
}
.hero__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__bullets {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
}
.hero__bullet-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  border: 1px solid var(--border-accent);
  position: relative;
}
.hero__bullet-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--brand);
  border-radius: 50%;
}

/* Hero visual: faux multiviewer / live tile */
.hero__visual {
  position: relative;
  perspective: 1500px;
}
.live-tile {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-feature);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.live-tile:hover { transform: rotate(0deg) translateY(-4px); }

.live-tile__top,
.live-tile__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.live-tile__bottom { margin-top: 14px; }
.live-tile__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  background: rgba(255,71,87,0.14);
  color: #ff6b78;
  border-radius: 4px;
  font-weight: 600;
}
.live-tile__dot {
  width: 6px; height: 6px;
  background: var(--signal-red);
  border-radius: 50%;
  animation: pulse-red 1.4s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.live-tile__healthy { color: var(--signal-green); }

.live-tile__frame {
  margin-top: 14px;
  background: var(--bg-0);
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid var(--border);
}
.live-tile__multiview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 6px;
  height: 240px;
}
.live-tile__cam {
  position: relative;
  background:
    linear-gradient(135deg, #14253f 0%, #0d1828 100%);
  border-radius: 6px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.live-tile__cam--main {
  grid-row: span 3;
}
/* Live "feed" photo fills each cam tile */
.live-tile__feed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Slight broadcast-feel grading: bit punchier, slightly cool. */
  filter: saturate(1.05) contrast(1.05) brightness(0.95);
  z-index: 0;
}
/* Soft dark gradient at top + bottom so labels & scoreline stay readable
   regardless of the underlying photo. */
.live-tile__cam::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 24%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.live-tile__camlabel {
  position: absolute;
  top: 6px; left: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  z-index: 2;
}
.live-tile__chyron {
  position: absolute;
  left: 8px; bottom: 8px;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.10);
}
.live-tile__chyron-tag {
  padding: 5px 8px;
  background: var(--brand);
  color: #FFFFFF;
  text-transform: uppercase;
}
.live-tile__chyron-text {
  padding: 5px 10px;
  background: rgba(0,0,0,0.78);
  color: #FFFFFF;
  text-transform: uppercase;
}

.live-tile__waveform {
  margin-top: 10px;
  height: 28px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.live-tile__waveform span {
  flex: 1;
  background: linear-gradient(
    180deg,
    #FF4D2E   0%,         /* warning red at the very top */
    #FF7A1F  22%,
    var(--brand-hot)  55%,
    var(--brand) 100%     /* base orange at the bottom */
  );
  border-radius: 1px;
  height: 12%;
  opacity: 0.94;
  transition: none;       /* JS sets height every frame */
  will-change: height;
}
@media (prefers-reduced-motion: reduce) {
  .live-tile__waveform span { /* JS detects reduced-motion and holds static heights */ }
}

.hero__trust {
  margin: 80px auto 0;
  max-width: var(--container);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.hero__trust-logos span {
  font-size: 16px;
  opacity: 0.75;
  transition: opacity .2s ease, color .2s ease;
}
.hero__trust-logos span:hover { opacity: 1; color: var(--ink-0); }


/* ---------- 8. Service category cards ------------------------ */
.services { padding: 100px 0 60px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hi);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,9,15,0.85) 100%);
}
.service-card__icon {
  position: absolute;
  left: 16px; bottom: 16px;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  z-index: 2;
}
.service-card--orange .service-card__icon {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px -10px var(--brand-glow);
}
.service-card--blue .service-card__icon {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -10px var(--accent-glow);
}

.service-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.service-card__desc {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.service-card__features {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 13px;
}
.service-card__features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  line-height: 1.45;
}
.service-card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 1px;
  background: var(--brand);
}
.service-card--blue .service-card__features li::before { background: var(--accent); }

.service-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-card__price-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.service-card__price-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}


/* ---------- 9. Tier cards ------------------------------------ */
.tiers { padding: 100px 0; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s ease;
}
.tier-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.tier-card--featured {
  background:
    linear-gradient(180deg, rgba(238,114,3,0.07), rgba(238,114,3,0)) ,
    var(--bg-card);
  border-color: var(--border-accent);
  box-shadow: 0 30px 70px -30px var(--brand-glow);
}
.tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px var(--brand-glow);
}

.tier-card__step {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.tier-card__name {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.tier-card__desc {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.tier-card__price {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.tier-card__price-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tier-card__price-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink-0);
}
.tier-card__price-note {
  color: var(--ink-3);
  font-size: 13px;
  margin-left: auto;
}

.tier-card__features {
  padding: 22px 0;
  flex: 1;
}
.tier-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink-1);
  font-size: 14px;
  line-height: 1.45;
}
.tier-card__tick {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 3px;
}
.tier-card--featured .tier-card__tick { color: var(--brand); }

.tiers__compare-note {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-3);
  font-size: 14px;
}
.tiers__compare-note a { color: var(--ink-1); border-bottom: 1px solid var(--border-strong); }
.tiers__compare-note a:hover { color: var(--brand); border-bottom-color: var(--brand); }


/* ---------- 10. Configurator --------------------------------- */
.configurator { padding: 100px 0; background: var(--bg-2); position: relative; z-index: 1; }
.configurator::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(238,114,3,0.06), transparent 60%),
    radial-gradient(800px 400px at 10% 100%, rgba(59,130,246,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.configurator .container { position: relative; z-index: 1; }

.config {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 16px;
}

.config__options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.config__field {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 0;
}
.config__field legend {
  padding: 0;
  margin-bottom: 14px;
}
.config__legend {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}
.config__hint {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.4;
}

.config__field--stepper { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
.config__field--stepper legend { margin-bottom: 0; }

/* Stepper */
.stepper {
  display: inline-grid;
  grid-template-columns: 40px 60px 40px;
  align-items: center;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 4px;
}
.stepper__btn {
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  color: var(--ink-1);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 999px;
  transition: background .15s ease;
}
.stepper__btn:hover { background: rgba(255,255,255,0.06); }
.stepper__btn:disabled { color: var(--ink-muted); cursor: not-allowed; }
.stepper__value {
  text-align: center;
  background: transparent;
  border: none;
  color: var(--ink-0);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  pointer-events: none;
}
.stepper__value:focus { outline: none; }

/* Chip group */
.chip-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.chip-group--two { grid-template-columns: repeat(2, 1fr); }
.chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 8px;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { font-weight: 600; color: var(--ink-1); font-size: 14px; }
.chip em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.chip:hover { border-color: rgba(255,255,255,0.22); }
.chip:has(input:checked) {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand);
}
.chip:has(input:checked) span { color: #ffc78a; }
.chip:has(input:checked) em   { color: rgba(255,199,138,0.7); }

.chip--toggle { padding: 16px; }

/* Add-on toggles */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.addon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  position: relative;
}
.addon input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink-muted);
  border-radius: 5px;
  background: var(--bg-0);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease;
}
.addon input:checked {
  background: var(--brand);
  border-color: var(--brand);
}
.addon input:checked::after {
  content: "";
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.addon:has(input:checked) {
  border-color: var(--border-accent);
  background: var(--brand-soft);
}
.addon__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.addon__title { color: var(--ink-1); font-weight: 500; font-size: 14px; }
.addon__price { color: var(--ink-3); font-size: 12px; font-family: var(--font-mono); }
.addon:has(input:checked) .addon__title { color: var(--ink-0); }
.addon:has(input:checked) .addon__price { color: var(--brand-hot); }

/* Summary */
.config__summary {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background:
    linear-gradient(180deg, rgba(238,114,3,0.05), transparent 50%),
    var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-feature);
}
.config__summary-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.config__summary-price {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  color: var(--ink-0);
}
.config__summary-currency {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: 8px;
  margin-right: 4px;
  font-weight: 500;
  color: var(--ink-2);
}
.config__summary-amount {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  transition: color .2s ease;
}
.config__summary-amount.is-pulse { animation: pricePulse .4s ease; }
@keyframes pricePulse {
  0%   { color: var(--brand-hot); transform: scale(1.02); transform-origin: left; }
  100% { color: var(--ink-0);     transform: scale(1); }
}
.config__summary-vat {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 13px;
}
.config__summary-tier {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--brand-soft);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  color: var(--ink-1);
  font-size: 14px;
}
.config__summary-tier strong { color: var(--brand-hot); }

.config__summary-list {
  margin: 20px 0;
  border-top: 1px solid var(--border);
}
.config__summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-2);
}
.config__summary-list li span:last-child {
  font-family: var(--font-mono);
  color: var(--ink-1);
}
.config__summary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.config__summary-disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.45;
}


/* ---------- 11. Studio section ------------------------------- */
.studio { padding: 100px 0; }
.studio__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.studio__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-feature);
}
.studio__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.studio__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(7,9,15,0.85);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.studio__badge-dot {
  width: 7px; height: 7px;
  background: var(--signal-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43,212,164,0.18);
}
.studio__lead {
  margin: 20px 0 30px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}
.studio__uses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
  margin-bottom: 32px;
}
.studio__uses li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 15px;
}
.studio__uses li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--brand);
}
.studio__uses strong { color: var(--ink-1); font-weight: 600; }
.studio__cta { display: flex; flex-wrap: wrap; gap: 12px; }


/* ---------- 12. Trust grid ----------------------------------- */
.trust { padding: 100px 0; background: var(--bg-2); position: relative; z-index: 1; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item {
  padding: 26px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease;
}
.trust-item:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.trust-item h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.trust-item p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }


/* ---------- 13. Quote form ----------------------------------- */
.quote { padding: 100px 0; }
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.quote__copy { padding-top: 6px; }
.quote__lead { color: var(--ink-2); font-size: 17px; line-height: 1.55; margin: 20px 0 28px; }
.quote__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.quote__channels li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.quote__channels li:last-child { border-bottom: none; padding-bottom: 0; }
.quote__channel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: 60px;
}
.quote__channels a, .quote__channels span:last-child {
  color: var(--ink-1);
  font-weight: 500;
  font-size: 15px;
}
.quote__channels a:hover { color: var(--brand); }
.quote__address p { color: var(--ink-2); font-size: 14px; line-height: 1.6; margin: 0; }
.quote__address strong { color: var(--ink-1); }

.quote__form {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.quote__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.quote__field { display: block; margin-bottom: 16px; }
.quote__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.quote__field input,
.quote__field select,
.quote__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--ink-0);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease;
}
.quote__field input:focus,
.quote__field select:focus,
.quote__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--bg-0);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.quote__field textarea { resize: vertical; min-height: 100px; }

.quote__honey { position: absolute; left: -9999px; }
.quote__checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 12px 0 24px;
  color: var(--ink-2);
  font-size: 14px;
  cursor: pointer;
}
.quote__checkbox input {
  margin-top: 3px;
  accent-color: var(--brand);
  width: 16px; height: 16px;
}
.quote__submit { display: flex; flex-direction: column; gap: 12px; }
.quote__submit button { align-self: flex-start; }
.quote__legal { font-size: 12px; color: var(--ink-3); margin: 0; }
.quote__legal a { color: var(--ink-2); border-bottom: 1px solid var(--border-strong); }


/* ---------- 14. Bottom CTA ----------------------------------- */
.bottom-cta { padding: 100px 0; }
.bottom-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 52px 48px;
  background:
    linear-gradient(135deg, rgba(238,114,3,0.18), rgba(59,130,246,0.12) 60%, transparent 100%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.bottom-cta__inner::after {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: var(--brand-glow);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}
.bottom-cta__copy { position: relative; z-index: 1; }
.bottom-cta__copy h2 {
  margin-top: 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.bottom-cta__copy p { margin: 14px 0 0; color: var(--ink-2); font-size: 17px; }
.bottom-cta__buttons {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: flex-end;
  position: relative; z-index: 1;
}


/* ---------- 15. Footer --------------------------------------- */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  position: relative;
  z-index: 1;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}
.site-footer__tagline {
  margin: 18px 0 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.site-footer__contact { display: flex; flex-direction: column; gap: 6px; }
.site-footer__contact a { color: var(--ink-1); font-weight: 500; }
.site-footer__contact a:hover { color: var(--brand); }

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.site-footer__col a {
  display: block;
  padding: 5px 0;
  color: var(--ink-2);
  font-size: 14px;
}
.site-footer__col a:hover { color: var(--ink-0); }

.site-footer__legal {
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.55;
}
.site-footer__legal p { margin: 0 0 12px; }
.site-footer__small { color: var(--ink-muted); }
.site-footer__legal a { color: var(--ink-2); }
.site-footer__legal a:hover { color: var(--brand); }


/* ---------- 16. Reveal-on-scroll ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- 17. Responsive ----------------------------------- */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 540px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid    { grid-template-columns: 1fr; }
  .config       { grid-template-columns: 1fr; }
  .config__summary { position: static; }
  .studio__grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid   { grid-template-columns: repeat(2, 1fr); }
  .quote__grid  { grid-template-columns: 1fr; gap: 40px; }
  .bottom-cta__inner { grid-template-columns: 1fr; padding: 40px 32px; }
  .bottom-cta__buttons { justify-content: flex-start; }
  .site-footer__inner  { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__cols   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }

  .site-nav, .site-header__phone { display: none; }
  .site-header__burger { display: inline-flex; }

  .hero { padding: calc(var(--header-h) + 40px) 0 60px; }
  .hero__cta .btn { flex: 1; min-width: 0; }
  .hero__bullets { gap: 16px; }
  .hero__trust { margin-top: 56px; gap: 16px; }

  .services, .tiers, .configurator, .studio, .trust, .quote, .bottom-cta { padding: 64px 0; }

  .service-grid { grid-template-columns: 1fr; }
  .trust-grid   { grid-template-columns: 1fr; }
  .chip-group   { grid-template-columns: repeat(2, 1fr); }
  .addon-grid   { grid-template-columns: 1fr; }
  .quote__row   { grid-template-columns: 1fr; }
  .quote__form  { padding: 24px; }
  .studio__uses { grid-template-columns: 1fr; }
  .config__field--stepper { grid-template-columns: 1fr; gap: 12px; }
  .stepper { justify-self: start; }

  .bottom-cta__buttons .btn { flex: 1; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }

  .live-tile__multiview { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==============================================================
   LIGHT-THEME OVERRIDES
   --------------------------------------------------------------
   Surgical fixes for selectors that used hardcoded
   rgba(255,255,255,X) values intended for a dark canvas. Also
   keeps the .live-tile (broadcast multiviewer) dark on purpose
   so it reads as a real monitor against the bright page.
   ============================================================== */

/* Generic ghost / hover surfaces — flip white-on-dark to dark-on-light */
.btn--ghost {
  background: rgba(20, 24, 38, 0.04);
}
.btn--ghost:hover {
  background: rgba(20, 24, 38, 0.07);
}
.btn--primary,
.btn--secondary {
  box-shadow: 0 6px 18px -6px var(--brand-glow),
              0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.btn--primary:hover {
  box-shadow: 0 10px 24px -6px var(--brand-glow),
              0 1px 0 rgba(255, 255, 255, 0.4) inset;
}
.btn--secondary {
  box-shadow: 0 6px 18px -6px var(--accent-glow),
              0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.site-nav__link:hover {
  color: var(--ink-0);
  background: rgba(20, 24, 38, 0.05);
}
.site-nav__menu a:hover {
  background: rgba(20, 24, 38, 0.05);
  color: var(--ink-0);
}

/* Hero faint grid lines — were nearly-white, now dark-on-light */
.hero__grid {
  background-image:
    linear-gradient(rgba(20, 24, 38, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 38, 0.05) 1px, transparent 1px);
  opacity: 0.7;
}
.hero__glow { opacity: 0.55; }

/* Trust-logos row label / chips */
.hero__trust-logos > span,
[class*="hero__trust"] span {
  color: var(--ink-2);
}

/* Stepper hover & chip hover originally used white tints */
.stepper__btn:hover { background: rgba(20, 24, 38, 0.06); }
.chip:hover { border-color: rgba(20, 24, 38, 0.22); }

/* Header / footer take on the light canvas with frosted feel */
.site-header {
  background: rgba(250, 246, 238, 0.85);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
.site-header.is-scrolled {
  background: rgba(250, 246, 238, 0.94);
  border-bottom-color: var(--border-strong);
}

/* Featured / elevated cards — light versions of the previous lift */
.tier-card { background: var(--bg-elevated); }
.tier-card--featured {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF3 100%);
  box-shadow: var(--shadow-feature);
}
.service-card { background: var(--bg-elevated); }

/* Configurator surfaces */
.configurator { background: var(--bg-2); }
.config { background: var(--bg-elevated); }
.config__summary,
.stepper,
.config__select,
.chip,
.addon {
  background: var(--bg-elevated);
}

/* The bottom-CTA gets a dark feature card on the light page —
   it doubles as a strong visual anchor at the conversion point. */
.bottom-cta__inner {
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(238,114,3,0.30), transparent 60%),
    linear-gradient(180deg, #131b2c 0%, #07090f 100%);
  border-color: rgba(255,255,255,0.10);
  color: var(--tile-ink-1);
}
.bottom-cta__inner::after { opacity: 0.55; }
.bottom-cta__copy h2,
.bottom-cta__copy h3 { color: var(--tile-ink-0); }
.bottom-cta__copy p  { color: var(--tile-ink-2); }
.bottom-cta__copy .section-head__eyebrow {
  color: var(--tile-ink-2);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.bottom-cta .btn--secondary {
  background: rgba(255,255,255,0.08);
  color: var(--tile-ink-0);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
}
.bottom-cta .btn--secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.30);
}

/* Site footer stays light */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  color: var(--ink-2);
}
.site-footer a { color: var(--ink-1); }
.site-footer a:hover { color: var(--brand); }

/* --------------------------------------------------------------
   LIVE-TILE: keep dark broadcast-monitor aesthetic
   -------------------------------------------------------------- */
.live-tile {
  background: linear-gradient(180deg, var(--tile-elevated), var(--tile-bg-2));
  border: 1px solid var(--tile-border-s);
  color: var(--tile-ink-1);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 70px -22px rgba(238,114,3,0.20),
    0 30px 70px -28px rgba(20,24,38,0.30);
}
.live-tile__top,
.live-tile__bottom { color: var(--tile-ink-3); }
.live-tile__frame {
  background: var(--tile-bg-0);
  border: 1px solid var(--tile-border);
}
.live-tile__cam {
  background: var(--tile-bg-1);
  border: 1px solid var(--tile-border);
  color: var(--tile-ink-2);
}
.live-tile__camlabel { color: var(--tile-ink-2); }

/* --------------------------------------------------------------
   ABOVE-THE-FOLD TWEAKS
   Hero is tight, and whichever section sits directly after the
   hero gets a compact section header so the cards rise into the
   first viewport.
   -------------------------------------------------------------- */
.hero {
  padding: calc(var(--header-h) + 20px) 0 16px;
}
.hero__heading { margin-top: 14px; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.04; }
.hero__sub     { margin-top: 14px; font-size: 16px; max-width: 480px; }
.hero__cta     { margin-top: 20px; }
.hero__bullets { margin-top: 18px; }
.hero__trust   {
  margin-top: 22px;
  padding: 14px 24px;
}
.hero__trust-logos { gap: 22px; }
.hero__trust-logos span { font-size: 14px; }
.hero__inner   { gap: 40px; }

.tiers--fold,
.services--fold {
  padding: 14px 0 80px;
}
.section-head--compact {
  margin-bottom: 18px;
}
.section-head--compact .section-head__eyebrow { padding: 6px 12px; font-size: 11px; }
.section-head--compact .section-head__title {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-top: 10px;
}
.section-head--compact .section-head__sub {
  font-size: 14px;
  max-width: 580px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .hero { padding: calc(var(--header-h) + 18px) 0 14px; }
  .tiers--fold,
  .services--fold { padding: 12px 0 60px; }
}

/* Form inputs — pure white with subtle border, easy contrast */
.quote__form { background: #FFFFFF; }
.quote__field input,
.quote__field select,
.quote__field textarea {
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  color: var(--ink-0);
}
.quote__field input:focus,
.quote__field select:focus,
.quote__field textarea:focus {
  background: #FFFFFF;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.quote__field input::placeholder,
.quote__field textarea::placeholder { color: var(--ink-3); }

/* Configurator chips & add-ons sit on the white .config panel:
   give them a faint cream tint so they're visible, then highlight
   on hover / when checked. */
.chip {
  background: #FBF8F2;
  border: 1px solid var(--border);
}
.chip:hover { background: #FFFFFF; border-color: var(--border-strong); }
.chip input:checked ~ .chip__body,
.chip:has(input:checked) {
  background: #FFFFFF;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-soft);
}
.addon {
  background: #FBF8F2;
  border: 1px solid var(--border);
}
.addon:has(input:checked) {
  background: #FFFFFF;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-soft);
}
.stepper {
  background: #FBF8F2;
  border: 1px solid var(--border-strong);
}
.config__select {
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  color: var(--ink-0);
}

/* Hero trust-row platform labels: muted slate instead of muted white */
.hero__trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hero__trust-label { color: var(--ink-3); }
.hero__trust-logos > span { color: var(--ink-2); }

/* Brand wordmark — primary slug stays dark, LIVE keeps brand orange */
.brand, .brand:hover { color: var(--ink-0); }

/* --------------------------------------------------------------
   HERO PRICE MARKER
   "from" stacked above £499, with "+vat" tucked at the bottom
   right of the amount. Scales with the heading via em units.
   -------------------------------------------------------------- */
.hero__price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  vertical-align: bottom;
  margin-left: 0.36em;
  line-height: 1;
  font-family: var(--font-display);
  color: var(--brand);
}
.hero__price-from {
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--ink-2);
  margin-bottom: 0.18em;
}
.hero__price-amount {
  position: relative;
  display: inline-block;
  font-size: 1em;
  font-weight: 800;
  line-height: 0.9;
  padding-right: 1.3em;
}
.hero__price-vat {
  position: absolute;
  bottom: 0.05em;
  right: 0;
  font-size: 0.26em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--ink-2);
  line-height: 1;
}

/* Wrap the price under "with Clear Pricing" on narrow viewports */
@media (max-width: 720px) {
  .hero__heading-accent { display: inline; }
  .hero__price          { display: inline-flex; margin-left: 0.4em; }
}

/* Visually hidden helper for a11y-only labels */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Service-card footer now contains only the CTA — right-align it */
.service-card__footer--cta-only {
  justify-content: flex-end;
}


/* ==============================================================
   HOMEPAGE — "Configure your own live stream package" CTA card
   ============================================================== */
.configure-cta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(238,114,3,0.18), transparent 60%),
    linear-gradient(180deg, #131b2c 0%, #0a0e17 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  color: var(--tile-ink-1);
}
.configure-cta__pulse {
  position: absolute;
  inset: -40% -10% auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(238,114,3,0.35), transparent 70%);
  pointer-events: none;
  animation: cf-pulse 4s ease-in-out infinite;
}
@keyframes cf-pulse {
  0%,100% { opacity: 0.55; transform: scale(1); }
  50%     { opacity: 0.85; transform: scale(1.08); }
}
.configure-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.configure-cta__title {
  margin: 8px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--tile-ink-0);
  line-height: 1.18;
}
.configure-cta__desc {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.5;
  max-width: 52ch;
}
.configure-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.configure-cta__action .btn {
  align-self: stretch;
  justify-content: center;
}
.configure-cta__note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 860px) {
  .configure-cta { grid-template-columns: 1fr; padding: 24px; }
  .configure-cta__action .btn { width: 100%; }
}


/* ==============================================================
   CONFIGURE PAGE
   ============================================================== */
.page--configure { background: var(--bg-1); }

.configure-hero {
  padding: calc(var(--header-h) + 28px) 0 24px;
  position: relative;
}
.configure-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  margin-bottom: 14px;
}
.configure-hero__back:hover { color: var(--ink-0); }
.configure-hero__title {
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  color: var(--ink-0);
}
.configure-hero__sub {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  max-width: 64ch;
}

.configure-shell {
  padding: 16px 0 80px;
}
.configure-shell__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .configure-shell__inner { grid-template-columns: 1fr; }
}

/* Form blocks (fieldsets) */
.cf-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 0 0 20px;
  box-shadow: var(--shadow-card);
}
.cf-block__legend {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-0);
  padding: 0;
  margin-bottom: 6px;
}
.cf-block__step {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.cf-block__hint {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 14px;
}
.cf-subhead {
  margin: 24px 0 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
}

/* Form rows / fields */
.cf-row { display: grid; gap: 16px; margin-bottom: 12px; }
.cf-row--two    { grid-template-columns: 1fr 1fr; }
.cf-row--single { grid-template-columns: minmax(0, 360px); }
@media (max-width: 640px) {
  .cf-row--two { grid-template-columns: 1fr; }
}
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1);
}
.cf-field__priceline {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}
.cf-input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: #FFFFFF;
  color: var(--ink-0);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cf-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
textarea.cf-input { resize: vertical; min-height: 76px; }

/* Stepper */
.cf-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  width: max-content;
}
.cf-stepper__btn {
  width: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-0);
}
.cf-stepper__btn:hover { background: rgba(20,24,38,0.06); }
.cf-stepper__input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.cf-stepper__input::-webkit-outer-spin-button,
.cf-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Chips (radio buttons styled as cards) */
.cf-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.cf-chip {
  position: relative;
  display: block;
  cursor: pointer;
}
.cf-chip > input { position: absolute; opacity: 0; pointer-events: none; }
.cf-chip__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: #FBF8F2;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.cf-chip:hover .cf-chip__body { background: #FFFFFF; border-color: var(--border-strong); }
.cf-chip > input:checked ~ .cf-chip__body {
  background: #FFFFFF;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-soft);
}
.cf-chip__title { font-weight: 700; color: var(--ink-0); font-size: 14px; }
.cf-chip__price { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }

/* Chip hover tooltip */
.cf-chip__tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #0F1422;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 8px;
  width: max-content;
  max-width: 260px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 10;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4);
}
.cf-chip__tip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #0F1422;
}
.cf-chip:hover .cf-chip__tip,
.cf-chip:focus-within .cf-chip__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Audio mic block */
.cf-mic--included {
  padding: 14px 16px;
  background: linear-gradient(90deg, var(--brand-soft), transparent 70%);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
}
.cf-mic__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cf-mic__sub {
  margin: 4px 0 8px;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.45;
}
.cf-mic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) { .cf-mic-grid { grid-template-columns: 1fr; } }
.cf-mic-grid .cf-mic {
  padding: 14px 16px;
  background: #FBF8F2;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cf-pill {
  display: inline-flex;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  background: rgba(20,24,38,0.06);
  color: var(--ink-2);
  border-radius: 999px;
}
.cf-pill--ok {
  background: rgba(22,163,124,0.12);
  color: var(--signal-green);
}

/* Add-on cards */
.cf-addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) { .cf-addon-grid { grid-template-columns: 1fr; } }
.cf-addon {
  display: block;
  cursor: pointer;
  position: relative;
}
.cf-addon > input { position: absolute; opacity: 0; pointer-events: none; }
.cf-addon__body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title price"
    "sub   sub";
  gap: 4px 12px;
  padding: 14px 16px;
  background: #FBF8F2;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.cf-addon:hover .cf-addon__body { background: #FFFFFF; border-color: var(--border-strong); }
.cf-addon > input:checked ~ .cf-addon__body {
  background: #FFFFFF;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-soft);
}
.cf-addon__title { grid-area: title; font-weight: 700; color: var(--ink-0); font-size: 14px; }
.cf-addon__price { grid-area: price; font-family: var(--font-mono); font-size: 12px; color: var(--brand); white-space: nowrap; }
.cf-addon__sub   { grid-area: sub;   color: var(--ink-3); font-size: 13px; line-height: 1.45; }

/* Dynamic platforms */
.cf-platforms { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.cf-platform {
  background: #FBF8F2;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}
.cf-platform__head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.cf-platform__num {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--brand); color: #FFFFFF;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
}
.cf-platform__select { flex: 1; }
.cf-platform__link   { width: 100%; }
.cf-platform__remove {
  width: 28px; height: 28px;
  border: 1px solid var(--border-strong);
  background: #FFFFFF;
  border-radius: 8px;
  color: var(--ink-2);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.cf-platform__remove:hover { color: var(--signal-red); border-color: var(--signal-red); }

/* Location radio rows */
.cf-radio-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  background: #FBF8F2;
  font-size: 14px;
  color: var(--ink-1);
}
.cf-radio-row:hover { background: #FFFFFF; border-color: var(--border-strong); }
.cf-radio-row input[type="radio"] { margin-top: 3px; accent-color: var(--brand); }
.cf-radio-row strong { color: var(--ink-0); }

.cf-parking { border: none; padding: 0; margin: 16px 0 0; }
.cf-parking__legend {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-0);
  margin-bottom: 4px;
  padding: 0;
}
.cf-parking__conditional { margin-top: 10px; }
.cf-parking__notice {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(238,114,3,0.06);
  border: 1px dashed var(--brand);
  color: var(--ink-1);
  border-radius: 10px;
  font-size: 13px;
}
.cf-parking__notice svg { color: var(--brand); flex-shrink: 0; }

/* Submit area */
.cf-submit { margin-top: 8px; }
.cf-submit__note { margin: 12px 0 0; font-size: 12px; color: var(--ink-3); }

/* ============== Right sticky summary ============== */
.cf-summary { position: sticky; top: calc(var(--header-h) + 12px); }
.cf-summary__inner {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF3 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-feature);
}
.cf-summary__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cf-summary__price {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  color: var(--brand);
  line-height: 0.95;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.cf-summary__currency { font-size: 28px; font-weight: 700; }
.cf-summary__amount   { font-size: 54px; font-weight: 800; }
.cf-summary__vat      {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  margin-left: 6px;
  padding-bottom: 10px;
}
.cf-summary__note {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ink-2);
}
.cf-summary__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 280px;
  overflow-y: auto;
  font-size: 13px;
}
.cf-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  color: var(--ink-1);
}
.cf-summary__row-label  { color: var(--ink-2); }
.cf-summary__row-amount { font-family: var(--font-mono); font-weight: 700; color: var(--ink-0); }
.cf-summary__inner .btn { margin-top: 8px; }
.cf-summary__inner .btn--block + .btn--block { margin-top: 8px; }


/* ==============================================================
   DARK HERO / DARK HEADER — premium broadcast top section
   ============================================================== */

/* Header sits over the dark hero — give it a dark glass treatment */
.site-header {
  background: rgba(10, 14, 23, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
.site-header.is-scrolled {
  background: rgba(10, 14, 23, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.site-header .brand,
.site-header .brand:hover { color: #FFFFFF; }
.site-header .site-nav__link { color: rgba(255,255,255,0.82); }
.site-header .site-nav__link:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.06);
}
.site-header .site-nav__menu a:hover {
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
}
.site-header__phone { color: #FFFFFF; }
.site-header__phone:hover { color: var(--brand-hot); }
.site-header__burger span { background: #FFFFFF; }

/* The hero itself becomes the dark section */
.hero {
  background:
    radial-gradient(900px 480px at 88% 8%, rgba(238,114,3,0.22), transparent 60%),
    radial-gradient(700px 400px at 5% 30%, rgba(59,130,246,0.12), transparent 65%),
    linear-gradient(180deg, #0E1422 0%, #07090F 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* faint scanline grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }

/* Eyebrow on dark */
.hero .eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}

/* Heading: white with golden 'Gold' accent */
.hero__heading { color: #FFFFFF; line-height: 1.04; }
.hero__heading-gold {
  background: linear-gradient(180deg, #F0DC9C 0%, #C9A858 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 800;
}

/* Sub copy on dark */
.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 540px;
  margin-top: 22px;
}

/* CTA row: align price marker beside the buttons */
.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__cta .btn--lg { padding: 14px 22px; font-size: 15px; }
.hero__cta .btn--primary {
  background: var(--brand);
  border-color: transparent;
  box-shadow: 0 10px 28px -10px rgba(238,114,3,0.7),
              0 1px 0 rgba(255,255,255,0.18) inset;
}
.hero__cta .btn--primary:hover { background: var(--brand-hot); }
/* Build Your Stream gets a brand-orange gradient (was blue) on the dark hero */
.hero__cta .btn--secondary {
  background: linear-gradient(180deg, #FF8418 0%, #C95A02 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 10px 28px -10px rgba(238,114,3,0.55),
              0 1px 0 rgba(255,255,255,0.22) inset;
}
.hero__cta .btn--secondary:hover { filter: brightness(1.06); }

/* Price marker — repositioned beside the CTAs */
.hero .hero__price {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "from from"
    "amount vat";
  column-gap: 8px;
  align-items: end;
  margin-left: 8px;
  line-height: 1;
  color: #F0DC9C;
  font-family: var(--font-display);
}
.hero .hero__price-from {
  grid-area: from;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.hero .hero__price-amount {
  grid-area: amount;
  position: static;
  padding: 0;
  display: inline-block;
  font-size: 36px;
  font-weight: 800;
  line-height: 0.92;
  color: #F0DC9C;
}
.hero .hero__price-vat {
  grid-area: vat;
  position: static;
  display: inline-block;
  margin: 0 0 4px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

/* Hide the old bullets if any reappear via other styles */
.hero__bullets { display: none; }

/* Multiviewer tweaks for dark hero — keep its dark inner */
.live-tile {
  background: linear-gradient(180deg, #1A2336 0%, #0B1120 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 70px -22px rgba(238,114,3,0.30),
    0 30px 70px -28px rgba(0,0,0,0.55);
}

/* "Streams delivered to" strip now sits on its own light section */
.hero-trust {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}
.hero-trust .hero__trust {
  margin: 0;
  padding: 18px 0;
  border-top: none;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust .hero__trust-label { color: var(--ink-3); }
.hero-trust .hero__trust-logos { gap: 22px; }
.hero-trust .hero__trust-logos > span { color: var(--ink-2); font-size: 14px; }

/* Section directly after dark hero should not need the cream banding */
.services--fold {
  padding: 36px 0 80px;
}

@media (max-width: 1024px) {
  .hero__cta { gap: 14px; }
  .hero .hero__price-amount { font-size: 34px; }
}
@media (max-width: 720px) {
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero .hero__price { margin-left: 0; }
}


/* ==============================================================
   SERVICE CARD ICON BADGE — larger, all-orange, more prominent
   ============================================================== */
.service-card__icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  background: var(--brand) !important;
  box-shadow: 0 8px 22px -8px rgba(238,114,3,0.55),
              0 1px 0 rgba(255,255,255,0.22) inset;
  top: 16px !important;
  left: 16px !important;
}
.service-card__icon svg {
  width: 28px !important;
  height: 28px !important;
  color: #FFFFFF;
}
/* Both orange and blue variants now show the orange badge */
.service-card--blue .service-card__icon {
  background: var(--brand) !important;
}

/* ==============================================================
   CONFIGURATOR — additions for inline camera-movement addon,
   internet sources grid, venue-AV chip layout
   ============================================================== */

/* Inline addon used inside a regular form-field column */
.cf-addon--inline .cf-addon__body { padding: 12px 14px; }
.cf-addon--inline .cf-addon__sub  { font-size: 12px; }

/* Internet sources: 2-up like the audio mic grid */
.cf-net-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 640px) { .cf-net-grid { grid-template-columns: 1fr; } }

/* Inline pill inside an addon title */
.cf-addon__title .cf-pill {
  margin-left: 6px;
  vertical-align: middle;
  font-size: 10px;
}

/* Venue-AV chips: wider chip-grid columns to fit the sub-line */
.cf-chips--venueav {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 640px) {
  .cf-chips--venueav { grid-template-columns: 1fr; }
}

/* Notice now wraps text and contains an icon — give it a span container */
.cf-parking__notice span { line-height: 1.5; }

/* Ensure conditional reveal blocks render full width with clean stacking */
.cf-parking__conditional:not([hidden]) {
  display: block;
  width: 100%;
  margin-top: 10px;
}
.cf-parking__conditional[hidden] { display: none !important; }
.cf-parking__conditional > .cf-field__label {
  display: block;
  margin-bottom: 6px;
}
.cf-parking__conditional > .cf-input {
  display: block;
  width: 100%;
}
.cf-parking__notice {
  flex-wrap: wrap;
}

/* Tighten the gap between the Configure CTA card and the studio section */
.services--fold { padding-bottom: 24px; }
.studio { padding: 48px 0 80px; }

@media (max-width: 1024px) {
  .services--fold { padding-bottom: 20px; }
  .studio         { padding: 40px 0 64px; }
}

/* Configurator: full-width inline addon (used by venue PA feed) */
.cf-addon--full { display: block; margin-top: 14px; }

/* Site AV selects sit alongside steppers in the same grid */
.cf-av-select {
  width: auto;
  min-width: 160px;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}

/* ==============================================================
   CONFIGURATOR — dates, multi-day summary, site AV extras
   ============================================================== */

/* Dates rows */
.cf-dates { display: flex; flex-direction: column; gap: 10px; margin: 0 0 14px; }
.cf-date-row {
  background: #FBF8F2;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}
.cf-date-row__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cf-date-row__num {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--brand); color: #FFFFFF;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.cf-date-input {
  flex: 1; min-width: 160px;
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-0);
}
.cf-date-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.cf-date-row__prov {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
}
.cf-date-row__prov input { accent-color: var(--brand); }

.cf-overnight {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(22,163,124,0.06);
  border: 1px dashed var(--signal-green);
  border-radius: 10px;
}
.cf-overnight[hidden] { display: none !important; }
.cf-radio-row--check { background: transparent; border: none; padding: 0; }
.cf-radio-row--check:hover { background: transparent; border: none; }

/* Multi-day summary additions */
.cf-summary__perday {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cf-summary__multi {
  display: flex; flex-direction: column; gap: 2px;
  margin: 0 0 12px;
  padding: 10px 12px;
  background: var(--brand-soft);
  border-radius: 10px;
}
.cf-summary__multi[hidden] { display: none !important; }
.cf-summary__multi-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cf-summary__multi-amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
}
.cf-summary__multi-amount small { font-size: 11px; font-weight: 700; color: var(--ink-3); }
.cf-summary__row--meta {
  border-top: 1px dashed var(--border);
  padding-top: 6px !important;
  margin-top: 4px;
  font-style: italic;
  color: var(--ink-2) !important;
}

/* Site AV floor-plan note */
.cf-floorplan-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 10px 14px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 10px;
  color: var(--ink-1);
  font-size: 13px;
  line-height: 1.5;
}
.cf-floorplan-note svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* Video wall — size + qty side by side */
.cf-videowall {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cf-videowall .cf-av-select { flex: 1; min-width: 140px; }

/* Mic grid expanded for site AV */
.cf-mic-grid--av { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .cf-mic-grid--av { grid-template-columns: 1fr; } }

/* ==============================================================
   STREAMS DELIVERED TO — single-line scrolling marquee
   ============================================================== */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.hero__trust-label {
  flex-shrink: 0;
  white-space: nowrap;
}
.hero__trust-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  /* Soft fade at left and right edges so logos slip in and out
     gracefully rather than appearing to pop. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.hero__trust-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: hero-trust-scroll 48s linear infinite;
  will-change: transform;
}
.hero__trust-track:hover { animation-play-state: paused; }

@keyframes hero-trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__trust-track { animation: none; }
}

/* Each rendered set of logos (we render two side by side for the loop) */
.hero__trust-logos {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;   /* gap between the visible set and its duplicate */
  white-space: nowrap;
}

/* Each item: logo + name */
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.hero__trust-name {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-2);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.hero__trust-item--logo-only .hero__trust-name { display: none; }

/* Bigger logos */
.hero__trust-logo {
  height: 30px;
  width: auto;
  max-width: 130px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

/* Per-logo height tweaks to even out visual weight (logos referenced
   by src since alt is empty for items that have a paired name span). */
.hero__trust-logo[src*="Facebook"],
.hero__trust-logo[src*="teams"]         { height: 32px; }
.hero__trust-logo[src*="Zoom"]          { height: 34px; max-width: 100px; }
.hero__trust-logo[src*="TIKTOK"],
.hero__trust-logo[src*="youtube"],
.hero__trust-logo[src*="x-twitter"]     { height: 26px; }

/* Text chips (Restream / RTMP / SRT / TV broadcast) sit inline at the
   end of each rendered set. */
.hero__trust-text {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__trust-text:hover { color: var(--ink-0); }

@media (max-width: 720px) {
  .hero__trust       { gap: 16px; }
  .hero__trust-logos { gap: 22px; padding-right: 22px; }
  .hero__trust-logo  { height: 24px; }
  .hero__trust-logo[src*="Facebook"],
  .hero__trust-logo[src*="teams"] { height: 26px; }
  .hero__trust-logo[src*="Zoom"]  { height: 28px; }
  .hero__trust-name,
  .hero__trust-text  { font-size: 12px; }
  .hero__trust-track { animation-duration: 40s; }
}

/* ==============================================================
   CONFIGURE PAGE — dark hero strip (mirrors homepage hero)
   ============================================================== */
.configure-hero--dark {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 32px) 0 56px;
  background:
    radial-gradient(900px 480px at 88% 8%, rgba(238,114,3,0.22), transparent 60%),
    radial-gradient(700px 400px at 5% 30%, rgba(59,130,246,0.12), transparent 65%),
    linear-gradient(180deg, #0E1422 0%, #07090F 100%);
  color: #FFFFFF;
}
.configure-hero--dark::before {
  /* Faint scanline grid, same as the homepage hero */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.configure-hero__inner { position: relative; z-index: 1; }
.configure-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* "Back to homepage" link on dark */
.configure-hero--dark .configure-hero__back {
  color: rgba(255,255,255,0.65);
}
.configure-hero--dark .configure-hero__back:hover { color: #FFFFFF; }

/* Eyebrow on dark — matches the homepage chip */
.configure-hero--dark .eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}

/* Big heading — white with the gold accent word */
.configure-hero--dark .configure-hero__title {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.06;
  color: #FFFFFF;
  font-weight: 800;
  max-width: 22ch;
}
.configure-hero--dark .configure-hero__title .hero__heading-gold {
  background: linear-gradient(180deg, #F0DC9C 0%, #C9A858 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 800;
}

/* Sub copy on dark */
.configure-hero--dark .configure-hero__sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
}

/* Pull the form shell up so it overlaps the dark hero's foot —
   gives the page a nicer transition from dark → light. */
.configure-shell { padding-top: 0; }
.configure-shell__inner { margin-top: -32px; }
@media (max-width: 1024px) {
  .configure-hero--dark { padding: calc(var(--header-h) + 24px) 0 48px; }
  .configure-shell__inner { margin-top: -24px; }
}

/* ==============================================================
   SUB-PAGES (live-streaming-cost, business-live-streaming, etc.)
   ============================================================== */

/* Hero — same dark treatment as homepage / configurator */
.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 36px) 0 56px;
  background:
    radial-gradient(900px 480px at 88% 8%, rgba(238,114,3,0.22), transparent 60%),
    radial-gradient(700px 400px at 5% 30%, rgba(59,130,246,0.12), transparent 65%),
    linear-gradient(180deg, #0E1422 0%, #07090F 100%);
  color: #FFFFFF;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.subpage-hero__inner { position: relative; z-index: 1; }
.subpage-hero__bg    { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Breadcrumbs */
.subpage-crumbs ol {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.subpage-crumbs li + li::before { content: "/"; margin-right: 6px; color: rgba(255,255,255,0.30); }
.subpage-crumbs a { color: rgba(255,255,255,0.72); text-decoration: none; }
.subpage-crumbs a:hover { color: #FFFFFF; }
.subpage-crumbs [aria-current="page"] { color: rgba(255,255,255,0.5); }

/* Hero eyebrow / heading / sub */
.subpage-hero .eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}
.subpage-hero__title {
  margin: 10px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
  font-weight: 800;
  color: #FFFFFF;
  max-width: 26ch;
}
.subpage-hero__sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 64ch;
}
.subpage-hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.subpage-hero__cta .btn--secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #FFFFFF;
}
.subpage-hero__cta .btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
}

/* Article container — sits on cream, lifts up into hero edge */
.subpage-article {
  padding: 64px 0 24px;
  background: var(--bg-1);
}
.subpage-article .container { max-width: 1140px; }

.subpage-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-1);
  max-width: 70ch;
  margin: 0 0 56px;
  font-weight: 500;
}

/* Sections: alternating image / text */
.subpage-section {
  display: grid;
  gap: 36px;
  margin: 0 0 64px;
  align-items: center;
}
.subpage-section--text-only { grid-template-columns: minmax(0, 1fr); }
.subpage-section--with-image { grid-template-columns: 1fr 1fr; }
.subpage-section--image-left  .subpage-section__media  { order: 0; }
.subpage-section--image-left  .subpage-section__copy   { order: 1; }
.subpage-section--image-right .subpage-section__media  { order: 1; }
.subpage-section--image-right .subpage-section__copy   { order: 0; }

@media (max-width: 900px) {
  .subpage-section--with-image { grid-template-columns: 1fr; }
  .subpage-section--image-left .subpage-section__media,
  .subpage-section--image-right .subpage-section__media { order: 0; }
  .subpage-section--image-left .subpage-section__copy,
  .subpage-section--image-right .subpage-section__copy { order: 1; }
}

.subpage-section__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.18;
  color: var(--ink-0);
  font-weight: 700;
}
.subpage-section__body p {
  margin: 0 0 14px;
  color: var(--ink-1);
  font-size: 16px;
  line-height: 1.65;
}
.subpage-section__body p:last-child { margin-bottom: 0; }
.subpage-section__body strong { color: var(--ink-0); }
.subpage-section__body a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.subpage-section__body a:hover { color: var(--brand-hot); }

.subpage-section__bullets {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.subpage-section__bullets li {
  position: relative;
  padding: 0 0 6px 22px;
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1.55;
}
.subpage-section__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

.subpage-section__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* FAQs — accordion */
.subpage-faqs {
  margin: 24px 0 56px;
  padding: 36px 36px 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF6EE 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.subpage-faqs__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-0);
}
.subpage-faqs__list { display: flex; flex-direction: column; gap: 6px; }
.subpage-faq {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.subpage-faq:last-child { border-bottom: 1px solid var(--border); }
.subpage-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-0);
  list-style: none;
}
.subpage-faq__q::-webkit-details-marker { display: none; }
.subpage-faq__chev {
  flex-shrink: 0;
  color: var(--brand);
  transition: transform 0.18s ease;
}
.subpage-faq[open] .subpage-faq__chev { transform: rotate(180deg); }
.subpage-faq__a {
  margin-top: 10px;
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1.65;
}
.subpage-faq__a p { margin: 0; }

/* Related links */
.subpage-related {
  margin: 32px 0 24px;
}
.subpage-related__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-0);
}
.subpage-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.subpage-related__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.subpage-related__card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(238,114,3,0.25);
}
.subpage-related__card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
}
.subpage-related__card-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.subpage-related__card-arrow {
  position: absolute;
  right: 14px;
  top: 14px;
  color: var(--brand);
  font-family: var(--font-mono);
}

/* Bottom CTA strip */
.subpage-cta {
  background: var(--bg-1);
  padding: 24px 0 80px;
}
.subpage-cta__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  background:
    radial-gradient(520px 280px at 100% 0%, rgba(238,114,3,0.20), transparent 60%),
    linear-gradient(180deg, #131b2c 0%, #0a0e17 100%);
  border-radius: var(--radius-lg);
  color: var(--tile-ink-1);
}
.subpage-cta__copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: #FFFFFF;
}
.subpage-cta__copy p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.5;
}
.subpage-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.subpage-cta__buttons .btn--secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #FFFFFF;
}
.subpage-cta__buttons .btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
}
@media (max-width: 860px) {
  .subpage-cta__inner { grid-template-columns: 1fr; padding: 24px; }
}

/* ==============================================================
   HOMEPAGE — FAQ block (AIO + on-page SEO)
   ============================================================== */
.home-faqs {
  padding: 56px 0 64px;
  background: var(--bg-1);
}
.home-faqs__list {
  max-width: 880px;
  margin: 28px auto 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF6EE 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 36px 22px;
}
.home-faq {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.home-faq:first-child { border-top: none; padding-top: 4px; }
.home-faq:last-child  { border-bottom: 1px solid var(--border); }
.home-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-0);
  list-style: none;
}
.home-faq__q::-webkit-details-marker { display: none; }
.home-faq__chev {
  flex-shrink: 0;
  color: var(--brand);
  transition: transform 0.18s ease;
}
.home-faq[open] .home-faq__chev { transform: rotate(180deg); }
.home-faq__a {
  margin-top: 10px;
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1.65;
}
.home-faq__a p { margin: 0; }

/* ==============================================================
   FLEXIBLE LIVE STREAMING SOLUTIONS — 3-column offer row
   Positioned commercially credible, NOT "discount/sale" feel.
   ============================================================== */
.solutions {
  padding: 64px 0 56px;
  background: var(--bg-1);
}
.section-head__sub {
  margin: 12px auto 0;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  text-align: center;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  align-items: stretch;
}
/* When a 4th card is present (referrals), centre it on its own row */
.solutions__grid > .solution-card:nth-child(4) {
  grid-column: 2;
}
@media (max-width: 980px) {
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .solutions__grid > .solution-card:nth-child(4) { grid-column: auto; }
}
@media (max-width: 640px) {
  .solutions__grid { grid-template-columns: 1fr; }
}

.solution-card {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(15,22,36,0.02), 0 12px 28px -22px rgba(15,22,36,0.18);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(15,22,36,0.02), 0 22px 40px -22px rgba(15,22,36,0.22);
  border-color: rgba(238,114,3,0.30);
}
.solution-card--featured {
  /* Charity card — soft warm tint to lift it visually without "sale" energy */
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF6E9 100%);
  border-color: rgba(238,114,3,0.18);
}
.solution-card--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F0DC9C, #C9A858);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2;
}
.solution-card {
  overflow: hidden;   /* clip image to card's rounded corners */
}

.solution-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 14px;
  margin-top: -34px;        /* float over bottom edge of image strip */
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px -2px rgba(15,22,36,0.12);
  border: 2px solid #FFFFFF;
}
.solution-card--featured .solution-card__icon {
  background: rgba(201, 168, 88, 0.18);
  color: #B8923F;
  border-color: #FFF8EC;
}

/* Image strip at top — breaks out of card padding to bleed to edges */
.solution-card__media {
  margin: -26px -26px 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #EDE5D2;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Subtle gradient at the image bottom so the icon badge has contrast */
.solution-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.20));
  pointer-events: none;
}

.solution-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-0);
}
.solution-card__copy {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-1);
}
.solution-card__copy--mini {
  font-weight: 600;
  color: var(--ink-0);
  margin-top: 6px;
  margin-bottom: 8px;
}
.solution-card__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 14px;
}
.solution-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-1);
}
.solution-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

.solution-card__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;     /* pin to bottom so all 3 cards have aligned CTAs */
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.solution-card__footer .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.solution-card__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
}
.solution-card__phone svg { color: var(--brand); }
.solution-card__phone:hover { color: var(--ink-0); }

/* ==============================================================
   CHARITY PAGE — application form in the dark hero
   ============================================================== */
.subpage-hero__extra { margin-top: 24px; max-width: 720px; }

.charity-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  backdrop-filter: blur(6px);
}
.charity-form__honey { position: absolute; left: -9999px; }
.charity-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .charity-form__row { grid-template-columns: 1fr; }
}
.charity-form__field { display: flex; flex-direction: column; gap: 6px; }
.charity-form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.charity-form__field input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-0);
}
.charity-form__field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(238,114,3,0.30);
}
.charity-form__submit { margin-top: 8px; width: 100%; justify-content: center; }
.charity-form__legal {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}

/* ==============================================================
   CONFIGURATOR — Step 09: ongoing requirements & community support
   ============================================================== */
.cf-radio-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (max-width: 640px) { .cf-radio-row-group { grid-template-columns: 1fr; } }
.cf-radio-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #FBF8F2;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-1);
  transition: border-color 0.15s, background 0.15s;
}
.cf-radio-row:hover { border-color: var(--brand); background: #FFFFFF; }
.cf-radio-row input { accent-color: var(--brand); margin-top: 2px; }

.cf-cadence[hidden],
.cf-charity-no[hidden] { display: none !important; }
.cf-cadence, .cf-charity-no { margin-top: 14px; }

.cf-field__hint--inline {
  margin: 4px 0 10px;
  font-size: 13px;
  color: var(--ink-2);
}

.cf-community__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 6px;
}
@media (max-width: 640px) { .cf-community__grid { grid-template-columns: 1fr; } }
.cf-community__opt {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 14px;
  background: #FBF8F2;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink-1);
  line-height: 1.4;
  transition: border-color 0.15s, background 0.15s;
}
.cf-community__opt:hover { border-color: var(--brand); background: #FFFFFF; }
.cf-community__opt input { accent-color: var(--brand); margin-top: 2px; flex-shrink: 0; }

/* ==============================================================
   BEAT-ANY-QUOTE — submission form in the dark hero (with file upload)
   ============================================================== */
.quote-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  backdrop-filter: blur(6px);
}
.quote-form__honey { position: absolute; left: -9999px; }
.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 12px;
}
@media (max-width: 640px) { .quote-form__row { grid-template-columns: 1fr; } }
.quote-form__field { display: flex; flex-direction: column; gap: 6px; }
.quote-form__field--file { margin: 10px 0 6px; }
.quote-form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.quote-form__field input,
.quote-form__field textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-0);
  resize: vertical;
}
.quote-form__field input:focus,
.quote-form__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(238,114,3,0.30);
}

/* Custom file input — looks like a dashed drop zone */
.quote-form__file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.30);
  border-radius: 10px;
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.quote-form__file:hover {
  border-color: var(--brand);
  background: rgba(238,114,3,0.06);
  color: #FFFFFF;
}
.quote-form__file svg { flex-shrink: 0; color: var(--brand); }
.quote-form__file-text { flex: 1; }
.quote-form__file input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.quote-form__hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.quote-form__submit { margin-top: 14px; width: 100%; justify-content: center; }
.quote-form__legal {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}

/* ==============================================================
   REFERRAL PAGE — form in the dark hero
   ============================================================== */
.referral-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  backdrop-filter: blur(6px);
}
.referral-form__honey { position: absolute; left: -9999px; }
.referral-form__group {
  border: none;
  padding: 0;
  margin: 0 0 18px;
}
.referral-form__group:last-of-type { margin-bottom: 0; }
.referral-form__legend {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  width: 100%;
}
.referral-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 12px;
}
@media (max-width: 640px) { .referral-form__row { grid-template-columns: 1fr; } }
.referral-form__field { display: flex; flex-direction: column; gap: 6px; }
.referral-form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.referral-form__field input,
.referral-form__field textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-0);
  resize: vertical;
}
.referral-form__field input:focus,
.referral-form__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(238,114,3,0.30);
}
.referral-form__choice { display: flex; flex-direction: column; gap: 10px; }
.referral-form__radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.referral-form__radio:hover { border-color: var(--brand); background: rgba(238,114,3,0.06); }
.referral-form__radio input { accent-color: var(--brand); margin-top: 4px; }
.referral-form__radio strong { color: #FFFFFF; }
.referral-form__submit { margin-top: 14px; width: 100%; justify-content: center; }
.referral-form__legal {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}

/* ==============================================================
   PACKAGE WIZARD — 3-stage flow for per-service package selection
   ============================================================== */

/* Compact subpage-hero variant (less padding so the wizard sits high) */
.subpage-hero--compact { padding: calc(var(--header-h) + 32px) 0 32px; }

.pkg-wizard {
  background: var(--bg-1);
  padding: 36px 0 56px;
}
.pkg-wizard .container { max-width: 980px; }

/* Progress indicator */
.pkg-wizard__progress {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  counter-reset: stage;
  max-width: 560px;
}
.pkg-wizard__step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-right: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  position: relative;
}
.pkg-wizard__step:first-child { border-radius: 10px 0 0 10px; }
.pkg-wizard__step:last-child  { border-radius: 0 10px 10px 0; border-right: 1px solid var(--border); }
.pkg-wizard__step-num {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F4EFE3;
  color: var(--ink-2);
  font-size: 13px;
  flex-shrink: 0;
}
.pkg-wizard__step.is-active { color: var(--ink-0); background: linear-gradient(180deg, #FFF8EC, #FFF); }
.pkg-wizard__step.is-active .pkg-wizard__step-num { background: var(--brand); color: #FFFFFF; }
.pkg-wizard__step.is-done .pkg-wizard__step-num   { background: #4FBE7E; color: #FFFFFF; }
.pkg-wizard__step.is-done { color: var(--ink-1); }
@media (max-width: 640px) {
  .pkg-wizard__progress { grid-template-columns: repeat(2, 1fr); }
  .pkg-wizard__step-label { display: none; }
  .pkg-wizard__step { justify-content: center; }
}

/* Form layout */
.pkg-wizard__form {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 32px 28px;
}
.pkg-wizard__honey { position: absolute; left: -9999px; }
.pkg-wizard__stage-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-0);
}
.pkg-wizard__stage-sub {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--ink-2);
}
.pkg-wizard__lede {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-1);
}

.pkg-wizard__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 12px;
}
@media (max-width: 640px) { .pkg-wizard__row { grid-template-columns: 1fr; } }
.pkg-wizard__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.pkg-wizard__row > .pkg-wizard__field { margin-bottom: 0; }
.pkg-wizard__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pkg-wizard__field input,
.pkg-wizard__field textarea {
  width: 100%;
  padding: 10px 12px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-0);
  resize: vertical;
}
.pkg-wizard__field input:focus,
.pkg-wizard__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(238,114,3,0.20);
}
.pkg-wizard__field input.is-invalid,
.pkg-wizard__field textarea.is-invalid {
  border-color: #D04040;
  box-shadow: 0 0 0 3px rgba(208,64,64,0.18);
}

/* Stage nav row (back / next at the bottom of each stage) */
.pkg-wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}
.pkg-wizard__legal {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--ink-3);
}

/* Stage 2 — package cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 4px;
}
@media (max-width: 880px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 22px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.pkg-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 22px 32px -22px rgba(238,114,3,0.30);
}
.pkg-card--featured {
  border-color: rgba(238,114,3,0.45);
  background: linear-gradient(180deg, #FFFFFF, #FFF8EC);
}
.pkg-card--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F0DC9C, #C9A858);
  border-radius: 14px 14px 0 0;
}
.pkg-card--custom {
  background: linear-gradient(180deg, #FFFFFF, #F6F1E5);
  border-style: dashed;
}
.pkg-card--selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(238,114,3,0.22), 0 22px 32px -22px rgba(238,114,3,0.30);
}
.pkg-card__badge {
  position: absolute;
  top: -10px;
  left: 14px;
  background: linear-gradient(90deg, #F0DC9C, #C9A858);
  color: #4B3A12;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.pkg-card__name {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-0);
}
.pkg-card__tagline {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}
.pkg-card__price {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.pkg-card__price-suffix {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.pkg-card__features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}
.pkg-card__features li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 13px;
  color: var(--ink-1);
  line-height: 1.45;
}
.pkg-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}
.pkg-card__cta {
  width: 100%;
  justify-content: center;
}

/* Stage 3 — summary */
.pkg-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.pkg-summary__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: #FFFFFF;
}
.pkg-summary__row:first-child { border-top: 0; }
.pkg-summary__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-self: center;
}
.pkg-summary__value {
  font-size: 15px;
  color: var(--ink-0);
  font-weight: 500;
  word-break: break-word;
}
@media (max-width: 640px) {
  .pkg-summary__row { grid-template-columns: 1fr; gap: 4px; }
}

/* Selection banner shown on stage 2 — confirms which package was picked
   on stage 1, with a "Change" button to step back. */
.pkg-wizard__selection {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #FFF8EC 0%, #FFFFFF 60%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  margin-bottom: 24px;
}
.pkg-wizard__selection-icon {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  background: var(--brand);
  color: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
}
.pkg-wizard__selection-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.pkg-wizard__selection-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
}
.pkg-wizard__selection-name {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-0);
  line-height: 1.3;
}
.pkg-wizard__selection-change {
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-1);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.pkg-wizard__selection-change:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(238,114,3,0.05);
}
@media (max-width: 560px) {
  .pkg-wizard__selection { flex-wrap: wrap; }
  .pkg-wizard__selection-change { margin-left: auto; }
}
