/* ==========================================================================
   Cinematik platform / sales page
   Light and airy on the legacy brand fonts (Carbon for labels/numbers cues,
   Familjen Grotesk for headings and body). Blue hero with an in-hero booking
   widget, alternating tonal sections, one deliberate dark "Sparkline" moment,
   a pricing table, and a tabbed booking block. Scoped under .platform.
   ========================================================================== */

.platform {
  --pf-paper: #f6f5f1;
  --pf-white: #ffffff;
  --pf-tint: #eef2ff;
  --pf-ink: #14161c;
  --pf-slate: #565b6b;
  --pf-faint: #8a8f9e;
  --pf-line: #e7e5dd;
  --pf-line-cool: #e0e4f0;

  --pf-blue: #3e6df6;
  --pf-blue-deep: #2946c6;

  --pf-dark: #0b0d12;
  --pf-dark-line: #23262f;
  --pf-beam-2: #a9c4ff;

  --pf-brand: "t26-carbon", "Carbon", ui-sans-serif, system-ui, sans-serif;
  --pf-display: "familjen-grotesk", "Familjen Grotesk", ui-sans-serif, system-ui, sans-serif;
  --pf-body: "familjen-grotesk", "Familjen Grotesk", ui-sans-serif, system-ui, sans-serif;

  --pf-shell: 1200px;
  --pf-r: 14px;
  --pf-r-sm: 10px;

  background: var(--pf-paper);
  color: var(--pf-ink);
  font-family: var(--pf-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.platform *,
.platform *::before,
.platform *::after { box-sizing: border-box; }

.pf-shell {
  width: 100%;
  max-width: var(--pf-shell);
  margin-inline: auto;
  padding-inline: 24px;
}

/* --- Type -------------------------------------------------------------- */

.pf-eyebrow {
  font-family: var(--pf-brand);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pf-blue);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}

.pf-eyebrow__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pf-eyebrow__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
}

.pf-eyebrow--dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.pf-display {
  font-family: var(--pf-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: none;
}

.pf-h1 { font-size: clamp(2.6rem, 5vw, 3.9rem); }
.pf-h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); color: var(--pf-ink); }
.pf-h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--pf-ink); }

/* Beat a global `.nova-ui h1/h2/h3 { color:#fff }` from the shell (0,1,1). */
.platform :is(.pf-display, .pf-tile__h, .pf-highlight__h, .pf-tier__price, .pf-widget__title, .pf-quote__text) {
  color: var(--pf-ink);
}

.pf-lead {
  font-family: var(--pf-body);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--pf-slate);
  max-width: 46ch;
  margin: 0;
}

/* --- Buttons ----------------------------------------------------------- */

.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--pf-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.85em 1.4em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  flex: none;
}

.pf-btn:hover { transform: translateY(-1px); }
.pf-btn--primary { background: var(--pf-blue); color: #fff; }
.pf-btn--primary:hover { background: var(--pf-blue-deep); }
.pf-btn--ghost { background: transparent; color: var(--pf-ink); border-color: color-mix(in srgb, var(--pf-ink) 22%, transparent); }
.pf-btn--ghost:hover { border-color: var(--pf-ink); }
.pf-btn--on-blue { background: #fff; color: var(--pf-blue-deep); }
.pf-btn--on-blue:hover { background: var(--pf-tint); }
.pf-btn--on-blue-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.pf-btn--on-blue-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.pf-btn svg { width: 1.05em; height: 1.05em; }

.platform a:focus-visible,
.platform button:focus-visible,
.platform input:focus-visible,
.platform textarea:focus-visible { outline: 3px solid var(--pf-blue); outline-offset: 2px; }

/* --- In-page section nav ----------------------------------------------- */

/* Non-sticky: the site's global navbar already occupies the fixed top slot,
   so this is an in-page jump bar rather than a second sticky header. */
.pf-subnav {
  background: var(--pf-white);
  border-bottom: 1px solid var(--pf-line);
}

.pf-subnav__inner {
  max-width: var(--pf-shell);
  margin-inline: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pf-subnav__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.pf-subnav__links a {
  font-family: var(--pf-body);
  font-size: 0.9rem;
  color: var(--pf-slate);
  text-decoration: none;
}

.pf-subnav__links a:hover { color: var(--pf-ink); }
.pf-subnav__cta { display: flex; gap: 10px; }

.pf-subnav__cta .pf-btn { padding: 0.6em 1.1em; font-size: 0.88rem; }

@media (max-width: 900px) { .pf-subnav__links { display: none; } }

/* --- Section scaffolding ----------------------------------------------- */

.platform [id] { scroll-margin-top: 84px; }
.pf-section { position: relative; padding-block: clamp(72px, 9vw, 120px); }
.pf-section--paper { background: var(--pf-paper); }
.pf-section--white { background: var(--pf-white); }
.pf-section--tint { background: var(--pf-tint); }

.pf-section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }

/* Section heading with an image alongside it */
.pf-headmedia { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; margin-bottom: clamp(36px, 5vw, 56px); }
.pf-headmedia .pf-section-head { margin-bottom: 0; }
.pf-headmedia__fig { margin: 0; }
.pf-headmedia__img { border-radius: var(--pf-r); overflow: hidden; border: 1px solid var(--pf-line); background: var(--pf-tint); }
.pf-headmedia__img img { display: block; width: 100%; height: clamp(220px, 34vw, 340px); object-fit: cover; }
.pf-headmedia__cap { margin-top: 10px; font-family: var(--pf-brand); font-size: 0.6rem; letter-spacing: 0.04em; color: var(--pf-faint); line-height: 1.5; }
.pf-headmedia__cap a { color: var(--pf-faint); text-decoration: underline; }
@media (min-width: 900px) { .pf-headmedia { grid-template-columns: 1.15fr 0.85fr; } }

/* Browser-frame mockup for product screenshots */
.pf-browser {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
  box-shadow: 0 26px 60px -28px rgba(22, 24, 48, 0.4), 0 6px 16px -8px rgba(22, 24, 48, 0.22);
}
.pf-browser__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--pf-paper);
  border-bottom: 1px solid var(--pf-line);
}
.pf-browser__dots { display: inline-flex; gap: 7px; flex: none; }
.pf-browser__dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.pf-browser__dots i:nth-child(1) { background: #ff5f57; }
.pf-browser__dots i:nth-child(2) { background: #febc2e; }
.pf-browser__dots i:nth-child(3) { background: #28c840; }
.pf-browser__url {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--pf-brand);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--pf-faint);
  background: var(--pf-white);
  border: 1px solid var(--pf-line);
  border-radius: 7px;
  padding: 5px 12px;
  white-space: nowrap;
}
.pf-browser__fav { width: 15px; height: 15px; flex: none; display: block; }
.pf-browser__shot img { display: block; width: 100%; height: auto; }

/* Onesheet detail page: the product screenshot runs the full shell width */
.pf-onesheet-shot { margin: clamp(40px, 6vw, 72px) 0; position: relative; }
.pf-onesheet-mobile {
  position: absolute;
  right: -1%;
  bottom: -2%;
  width: clamp(180px, 30%, 320px);
  height: auto;
  transform: rotate(6deg);
  border: 6px solid #fff;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  z-index: 2;
}
@media (max-width: 640px) {
  .pf-onesheet-mobile { width: 36%; right: -2%; bottom: -5%; border-width: 4px; border-radius: 14px; }
}

/* Framed product screenshot that sits on light sections (dark screenshot floats as a card) */
.pf-shot { margin: clamp(28px, 4vw, 44px) 0 0; }
.pf-shot__label { font-family: var(--pf-brand); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pf-faint); margin-bottom: 12px; }
.pf-shot__frame { border: 1px solid var(--pf-line); border-radius: var(--pf-r); overflow: hidden; background: #070810; box-shadow: 0 26px 60px -30px rgba(22, 24, 48, 0.5); }
.pf-shot__frame img { display: block; width: 100%; height: auto; }
.pf-shot__frame--scroll { max-height: min(44vh, 780px); overflow-y: auto; }

/* Section feature layout: heading + a large screenshot side by side */
.pf-osfeature { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: clamp(36px, 5vw, 56px); }
.pf-osfeature__media { margin: 0; position: relative; }
.pf-osfeature__text .pf-h2 { margin-top: 16px; }
.pf-osfeature__text .pf-lead { margin-top: 20px; }
@media (min-width: 900px) {
  .pf-osfeature { grid-template-columns: 0.92fr 1.18fr; align-items: center; gap: clamp(24px, 3vw, 48px); }
  .pf-osfeature--top { align-items: start; }
}
.pf-section-head .pf-h2 { margin-top: 16px; }
.pf-section-head .pf-lead { margin-top: 20px; max-width: 68ch; }
.pf-pill {
  display: inline-block;
  font-family: var(--pf-brand);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pf-slate);
  border: 1px solid var(--pf-line-cool);
  border-radius: 999px;
  padding: 5px 11px;
  margin-left: 12px;
  vertical-align: middle;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.pf-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 90% at 88% 0%, #5b83ff 0%, transparent 55%),
    linear-gradient(158deg, #2946c6 0%, #3e6df6 55%, #4f78ff 100%);
  /* Bottom padding reserves room so the pinned nav clears the cookie banner. */
  padding-block: clamp(72px, 8vw, 104px) clamp(88px, 12vh, 132px);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* Main content grows to fill and centres; the nav is pinned to the bottom. */
.pf-hero__main { flex: 1 1 auto; display: flex; align-items: center; }
.pf-hero__main > .pf-shell { width: 100%; }

.pf-hero__cta { margin-top: clamp(32px, 4vw, 48px); display: flex; flex-wrap: wrap; gap: 14px; }

/* The booking form is the single form on the page; a floating CTA jumps back to it. */
.pf-hero__widget { display: block; }

/* In-hero section nav strip — pinned to the bottom of the first screen */
.pf-heronav { border-top: 1px solid rgba(255, 255, 255, 0.16); margin-top: clamp(28px, 4vw, 44px); }
.pf-heronav__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.14); border-radius: 0; overflow: hidden; }
.pf-heronav a {
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 16px 16px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.pf-heronav a:hover { background: rgba(255, 255, 255, 0.08); }
/* Reserve a two-line slot for name and desc so cells stay the same shape
   however the text wraps across breakpoints, keeping the grid rows even. */
.pf-heronav__name { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; font-family: var(--pf-body); font-weight: 600; font-size: 0.98rem; line-height: 1.3; min-height: calc(2 * 1.3em); color: #fff; }
.pf-heronav__tag { flex: none; margin-top: 1px; font-family: var(--pf-brand); font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 999px; padding: 2px 6px; }
.pf-heronav__desc { font-size: 0.86rem; color: rgba(255, 255, 255, 0.72); margin-top: 4px; line-height: 1.35; min-height: calc(2 * 1.35em); }

@media (min-width: 640px) { .pf-heronav__inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .pf-heronav__inner { grid-template-columns: repeat(5, 1fr); } }

/* Hero entrance cascade (JS-gated so no-JS shows everything) */
.pf-hero.cascade-ready [data-cascade] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.pf-hero.cascade-ready [data-cascade].is-in { opacity: 1; transform: none; }

/* Detail-page hero (shorter; still blue for nav contrast) */
.pf-hero--detail { min-height: 0; display: block; padding-block: clamp(44px, 6vw, 76px) clamp(48px, 7vw, 84px); }
.pf-hero--detail .pf-hero__lead { max-width: 62ch; }
.pf-crumb { display: inline-block; font-family: var(--pf-brand); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); text-decoration: none; margin-bottom: 22px; }
.pf-crumb:hover { color: #fff; }
.pf-hero__detail-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
@media (min-width: 940px) {
  .pf-hero--detail-media .pf-hero__detail-grid { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(16px, 2vw, 28px); }
  .pf-hero--detail-media .pf-hero__lead { max-width: 44ch; }
}

/* Fanned deck of dashboard panels on the Sparkline hero */
.pf-fan { position: relative; width: 100%; max-width: 820px; margin-inline: auto; aspect-ratio: 5 / 4; }
.pf-fan__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #070810;
  box-shadow: 0 34px 60px -26px rgba(0, 0, 0, 0.65);
  transform-origin: center bottom;
}
.pf-fan__card img { display: block; width: 100%; height: auto; }
.pf-fan__card--1 { transform: translate(-50%, -42%) rotate(-15deg); z-index: 1; }
.pf-fan__card--2 { transform: translate(-50%, -46%) rotate(-5deg); z-index: 2; }
.pf-fan__card--3 { transform: translate(-50%, -46%) rotate(5deg); z-index: 3; }
.pf-fan__card--4 { transform: translate(-50%, -42%) rotate(15deg); z-index: 4; }
.pf-pill--on-blue { color: #fff; border-color: rgba(255, 255, 255, 0.5); margin-left: 12px; }

/* Prose + bullet list for detail pages */
.pf-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.pf-list li { position: relative; padding-left: 26px; color: var(--pf-slate); font-size: 1rem; line-height: 1.55; }
.pf-list li::before { content: ""; position: absolute; left: 6px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--pf-blue); }
.pf-list li strong { color: var(--pf-ink); font-weight: 600; }
.pf-list--narrow { max-width: 68ch; }
.pf-prose { max-width: 68ch; }
.pf-prose p { color: var(--pf-slate); font-size: 1.05rem; line-height: 1.65; margin: 0 0 18px; }
.pf-prose p:last-child { margin-bottom: 0; }
.pf-detail-cta { text-align: center; }
.pf-detail-cta .pf-lead { margin: 16px auto 0; }
.pf-detail-cta .pf-hero__cta { justify-content: center; margin-top: 28px; }

/* "Learn more" link + optionality note on hub sections */
.pf-learn { display: inline-flex; align-items: center; gap: 6px; margin-top: 26px; font-family: var(--pf-body); font-weight: 600; font-size: 0.98rem; color: var(--pf-blue); text-decoration: none; }
.pf-learn:hover { gap: 10px; color: var(--pf-blue-deep); }
.pf-modular { margin-top: 20px; font-family: var(--pf-brand); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }

.pf-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 4vw, 56px);
  align-items: center;
}

/* Let grid children shrink so the booking widget's calendar/slots never
   overflow a narrow viewport. */
.pf-hero__grid > * { min-width: 0; }

.pf-hero .pf-eyebrow { color: rgba(255, 255, 255, 0.85); }
.pf-hero .pf-h1 { margin-top: 20px; color: #fff; }
.pf-hero__lead { margin-top: 22px; max-width: 48ch; color: rgba(255, 255, 255, 0.9); }

.pf-herostats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pf-herostat__n {
  font-family: var(--pf-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: #fff;
  line-height: 1;
}

.pf-herostat__l {
  font-family: var(--pf-brand);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 9px;
}

/* A "?" affordance at the top-right of each stat number that reveals a tooltip
   after a 1s hover/focus */
.pf-herostat { position: relative; }
.pf-herostat__top { display: inline-flex; align-items: flex-start; gap: 5px; }
.pf-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--pf-body);
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1;
  cursor: help;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.pf-help::before { content: "?"; }
.pf-help:hover,
.pf-help:focus-visible { border-color: #fff; color: #fff; }
.pf-help:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.7); outline-offset: 2px; }

.pf-tip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: max-content;
  max-width: 250px;
  background: var(--pf-ink);
  color: #fff;
  font-family: var(--pf-body);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  /* No delay on hide */
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 6;
}
.pf-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 22px;
  border: 6px solid transparent;
  border-top-color: var(--pf-ink);
}
/* Right-anchored variant — opens leftward (e.g. the last stat, so it clears the
   booking widget) */
.pf-tip--end { left: auto; right: 0; }
.pf-tip--end::after { left: auto; right: 22px; }
/* Keep the copy column (and its tooltips) above the booking widget */
.pf-hero__copy { position: relative; z-index: 2; }
.pf-hero__widget { position: relative; z-index: 1; }
/* Reveal after a 1s dwell */
.pf-help:hover .pf-tip,
.pf-help:focus-visible .pf-tip {
  opacity: 1;
  transform: none;
  transition-delay: 1s;
}

/* ==========================================================================
   Booking widget (white card — used in hero and in #book)
   ========================================================================== */


.pf-widget {
  background: var(--pf-white);
  border: 1px solid var(--pf-line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(20, 22, 28, 0.14);
  color: var(--pf-ink);
  min-width: 0;
  /* Fixed width so the booking widget is the same size on every screen. */
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

.pf-cal__grid, .pf-cal__dow, .pf-slots, .pf-inrow { min-width: 0; }
.pf-cal__grid > *, .pf-slots > * { min-width: 0; }

.pf-widget__title { font-family: var(--pf-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.pf-widget__sub { font-family: var(--pf-brand); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pf-faint); margin-top: 6px; }

/* Google Calendar appointment scheduler embed */
.pf-gcal { margin-top: 14px; border-radius: var(--pf-r-sm); overflow: hidden; border: 1px solid var(--pf-line); background: #fff; }
.pf-gcal iframe { display: block; width: 100%; border: 0; }

.pf-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.pf-tab {
  font-family: var(--pf-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--pf-line);
  background: var(--pf-paper);
  color: var(--pf-slate);
  cursor: pointer;
}
.pf-tab[aria-selected="true"] { background: var(--pf-blue); border-color: var(--pf-blue); color: #fff; }

.pf-cal { margin-top: 12px; }
.pf-cal__head { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.pf-cal__month { flex: 1; text-align: center; font-family: var(--pf-brand); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pf-ink); }
.pf-cal__navbtn {
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--pf-line);
  border-radius: 6px;
  background: var(--pf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: var(--pf-slate);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.pf-cal__navbtn:hover { border-color: var(--pf-blue); color: var(--pf-blue); }
.pf-cal__navbtn:disabled { opacity: 0.35; cursor: default; border-color: var(--pf-line); color: var(--pf-faint); }
.pf-cal__dow { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; text-align: center; font-family: var(--pf-brand); font-size: 0.6rem; letter-spacing: 0.05em; color: var(--pf-faint); margin-bottom: 4px; }
.pf-cal__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }

.pf-cal__blank { min-height: 30px; }
.pf-cal__day {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pf-brand);
  font-size: 0.8rem;
  border: 1px solid var(--pf-line);
  border-radius: 7px;
  background: var(--pf-white);
  color: var(--pf-ink);
  cursor: pointer;
  padding: 2px 0;
}
.pf-cal__day:hover { border-color: var(--pf-blue); }
.pf-cal__day.is-off { border-color: transparent; color: var(--pf-faint); opacity: 0.5; cursor: default; }
.pf-cal__day[aria-pressed="true"] { background: var(--pf-blue); border-color: var(--pf-blue); color: #fff; font-weight: 600; }

.pf-widget__daylabel { font-family: var(--pf-brand); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pf-slate); margin: 12px 0 8px; }

.pf-slots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.pf-slot {
  padding: 8px 6px;
  text-align: center;
  font-family: var(--pf-brand);
  font-size: 0.8rem;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: var(--pf-white);
  color: var(--pf-ink);
  cursor: pointer;
}
.pf-slot:hover { border-color: var(--pf-blue); }
.pf-slot[aria-pressed="true"] { background: var(--pf-blue); border-color: var(--pf-blue); color: #fff; }
.pf-slots__empty { grid-column: 1 / -1; font-family: var(--pf-brand); font-size: 0.72rem; color: var(--pf-faint); }

.pf-fields2 { display: grid; gap: 10px; margin-bottom: 16px; }

/* Contact-capture modal (native <dialog>) */
.pf-modal {
  border: none;
  padding: 0;
  background: transparent;
  width: min(420px, calc(100vw - 32px));
  color: var(--pf-ink);
}
.pf-modal::backdrop { background: rgba(11, 13, 18, 0.55); backdrop-filter: blur(2px); }
.pf-modal__card { position: relative; background: var(--pf-white); border-radius: 16px; padding: 28px; box-shadow: 0 30px 80px rgba(11, 13, 18, 0.4); }
.pf-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: var(--pf-paper);
  color: var(--pf-slate);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.pf-modal__close:hover { border-color: var(--pf-ink); color: var(--pf-ink); }
.pf-modal__k { font-family: var(--pf-brand); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pf-blue); }
.pf-modal__chosen { font-family: var(--pf-body); font-size: 0.98rem; color: var(--pf-ink); margin: 10px 0 20px; line-height: 1.4; }

/* Scoped under .platform (0,2,0) so the app shell's `.nova-ui input` rules don't
   bleed a grey fill into these fields. */
/* Prefixed with .nova-ui to out-specify the dark-theme input rule in
   nova/components.css (.nova-ui input[type="email"] etc.), which would
   otherwise paint these white-card fields grey with white (invisible) text. */
.nova-ui .platform .pf-input, .nova-ui .platform .pf-textarea {
  width: 100%;
  background: var(--pf-white);
  border: 1.5px solid var(--pf-line);
  border-radius: 10px;
  color: var(--pf-ink);
  font-family: var(--pf-body);
  font-size: 0.98rem;
  line-height: 1.4;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.nova-ui .platform .pf-textarea { resize: vertical; min-height: 96px; }
.nova-ui .platform .pf-input:hover, .nova-ui .platform .pf-textarea:hover { border-color: var(--pf-slate); }
.nova-ui .platform .pf-input:focus, .nova-ui .platform .pf-textarea:focus { border-color: var(--pf-blue); box-shadow: 0 0 0 3px rgba(62, 109, 246, 0.18); outline: none; }
.nova-ui .platform .pf-input::placeholder, .nova-ui .platform .pf-textarea::placeholder { color: var(--pf-faint); }
.pf-inrow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pf-field { display: grid; gap: 7px; }
.pf-label { font-family: var(--pf-body); font-size: 0.82rem; font-weight: 600; color: var(--pf-ink); }
.pf-widget__blurb { font-family: var(--pf-body); font-size: 0.88rem; line-height: 1.5; color: var(--pf-slate); margin: 12px 0 16px; }

/* Floating "Book a demo" button that appears once the top form scrolls away */
.pf-floatcta {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 50;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.pf-floatcta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.pf-floatcta__btn { box-shadow: 0 14px 34px -10px rgba(20, 22, 28, 0.5); }

.pf-confirm { margin-top: 12px; width: 100%; justify-content: center; padding-block: 0.7em; }
.pf-confirm:disabled { background: var(--pf-line); color: var(--pf-faint); cursor: default; transform: none; }
.pf-widget__foot { text-align: center; font-size: 0.82rem; color: var(--pf-faint); margin-top: 10px; }
.pf-widget__foot a { color: var(--pf-blue); }

/* ==========================================================================
   Logo strip
   ========================================================================== */

.pf-logostrip {
  border-bottom: 1px solid var(--pf-line);
  background: var(--pf-white);
  overflow: hidden;
}
.pf-logostrip__inner {
  max-width: none;
  margin-inline: 0;
  padding: 22px 0;
}
.pf-logostrip__label { display: block; max-width: var(--pf-shell); margin: 0 auto 16px; padding-inline: 24px; font-family: var(--pf-brand); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pf-faint); }

/* Two rows (rights holders, cinemas) with a slow, subtle marquee */
.pf-logomarquee { display: grid; gap: 16px; }
.pf-logorow {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.pf-logotrack {
  display: inline-flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: pf-marquee 52s linear infinite;
}
.pf-logorow--rev .pf-logotrack { animation-name: pf-marquee-rev; animation-duration: 64s; }
.pf-logorow:hover .pf-logotrack { animation-play-state: paused; }

@keyframes pf-marquee { to { transform: translateX(-50%); } }
@keyframes pf-marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.pf-logostrip__item {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  padding: 16px 22px;
  border: 1px solid var(--pf-line);
  border-radius: 12px;
  background: var(--pf-paper);
}
.pf-logo-img {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  border-radius: 4px;
  flex: none;
  /* Faint dark halo so white/transparent logos stay legible on the light tile;
     it's subtle enough not to muddy dark logos. */
  filter: drop-shadow(0 0 1.2px rgba(0, 0, 0, 0.45));
}
.pf-logostrip__name {
  font-family: var(--pf-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pf-ink);
}

@media (prefers-reduced-motion: reduce) {
  .pf-logotrack { animation: none; }
  .pf-logorow { -webkit-mask-image: none; mask-image: none; }
}

/* ==========================================================================
   Card grids (Onesheet / Marketing / Discovery)
   ========================================================================== */

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

.pf-tile {
  background: var(--pf-white);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r);
  padding: 26px 24px;
}
.pf-section--white .pf-tile,
.pf-act--white .pf-tile { background: var(--pf-paper); }
.pf-section--tint .pf-tile { border-color: var(--pf-line-cool); }

.pf-tile__k { font-family: var(--pf-brand); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pf-blue); }
.pf-tile__h { font-family: var(--pf-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; margin: 12px 0 10px; color: var(--pf-ink); }
.pf-tile__p { font-size: 0.96rem; line-height: 1.55; color: var(--pf-slate); margin: 0; }

.pf-highlights { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
.pf-highlight {
  border-radius: var(--pf-r);
  padding: 24px 26px;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
}
.pf-section--white .pf-highlight { background: var(--pf-paper); }
.pf-highlight--accent { background: var(--pf-tint); border-color: var(--pf-line-cool); }
.pf-highlight--full { grid-column: 1 / -1; }
.pf-highlight__h { font-family: var(--pf-display); font-weight: 600; font-size: 1.05rem; margin: 0 0 8px; color: var(--pf-ink); }
.pf-highlight__p { font-size: 0.98rem; line-height: 1.6; color: var(--pf-slate); margin: 0; }
.pf-highlight__p strong { color: var(--pf-ink); }

.pf-faq { display: grid; gap: 12px; max-width: 820px; }
.pf-faq__item {
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r);
  background: var(--pf-white);
  overflow: hidden;
}
.pf-faq__item[open] { border-color: var(--pf-line-cool); }
.pf-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--pf-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--pf-ink);
}
.pf-faq__q::-webkit-details-marker { display: none; }
.pf-faq__icon {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
}
.pf-faq__icon::before,
.pf-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pf-blue);
}
.pf-faq__icon::before { width: 16px; height: 2px; }
.pf-faq__icon::after { width: 2px; height: 16px; transition: transform 0.2s ease; }
.pf-faq__item[open] .pf-faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.pf-faq__a { padding: 0 24px 22px; }
.pf-faq__a p { font-size: 0.98rem; line-height: 1.6; color: var(--pf-slate); margin: 0; }

/* ==========================================================================
   Sparkline — the one dark moment
   ========================================================================== */

.pf-spark {
  background:
    radial-gradient(70% 120% at 12% 0%, rgba(62, 109, 246, 0.26), transparent 55%),
    var(--pf-dark);
  color: #fff;
}
.pf-spark .pf-eyebrow { color: var(--pf-beam-2); }
.pf-spark .pf-h2 { color: #fff; }
.platform .pf-spark :is(.pf-display, .pf-h2) { color: #fff; }
.pf-spark__grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 52px); align-items: start; }
.pf-spark__copy .pf-eyebrow { margin-bottom: 16px; }
.pf-spark__copy .pf-h2 { margin-bottom: 22px; }
.pf-spark__copy p:not(.pf-eyebrow) { font-size: 1rem; line-height: 1.65; color: rgba(255, 255, 255, 0.72); margin: 0 0 16px; }
.pf-spark__copy p:last-child { margin-bottom: 0; }
.pf-spark .pf-learn { color: var(--pf-beam-2); }
.pf-spark .pf-learn:hover { color: #fff; }

/* Sparkline showcase — dashboard image in a framed panel */
.pf-spark__head { max-width: 70ch; }
.pf-spark__head .pf-eyebrow { margin-bottom: 16px; }
.pf-spark__head .pf-h2 { margin-bottom: 20px; }
.pf-spark__lead { font-size: 1.08rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8); margin: 0 0 20px; max-width: 68ch; }
.pf-spark__dash { margin: clamp(36px, 5vw, 56px) 0 0; }
.pf-spark__frame { margin: 0; border: 1px solid var(--pf-dark-line); border-radius: var(--pf-r); overflow: hidden; background: #070810; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45); }
.pf-spark__montage { display: grid; gap: 16px; margin-top: clamp(28px, 4vw, 44px); }
.pf-spark__montage-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 800px) { .pf-spark__montage-row { grid-template-columns: 1fr 1fr; } }

/* Detail-page dashboard panels */
.pf-spark__panels { display: grid; gap: clamp(24px, 3.5vw, 40px); margin-top: clamp(36px, 5vw, 56px); }
.pf-spark__panels-row { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3.5vw, 40px); }
@media (min-width: 820px) { .pf-spark__panels-row { grid-template-columns: 1fr 1fr; } }
.pf-spark__panel { margin: 0; }
.pf-spark__plabel { font-family: var(--pf-brand); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pf-beam-2); margin-bottom: 12px; }
.pf-spark__dash .pf-spark__plabel { margin-top: 0; }
.pf-spark__frame img { display: block; width: 100%; height: auto; }
.pf-spark__frame--scroll { max-height: min(76vh, 780px); overflow-y: auto; }
.pf-spark__cap { margin-top: 12px; font-family: var(--pf-brand); font-size: 0.62rem; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }
.pf-sparkstats--wide { margin-top: clamp(28px, 4vw, 40px); }

.pf-sparkcard { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--pf-dark-line); border-radius: var(--pf-r); padding: 28px; }
.pf-sparkcard__title { font-family: var(--pf-brand); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-bottom: 22px; }
.pf-bar { margin-bottom: 16px; }
.pf-bar__row { display: flex; justify-content: space-between; font-size: 0.86rem; margin-bottom: 7px; }
.pf-bar__row b { font-weight: 600; color: #fff; }
.pf-bar__row span { color: rgba(255, 255, 255, 0.45); font-size: 0.78rem; }
.pf-bar__track { height: 34px; border-radius: 8px; background: rgba(255, 255, 255, 0.05); overflow: hidden; }
.pf-bar__fill { height: 100%; border-radius: 8px; background: linear-gradient(90deg, var(--pf-blue), var(--pf-beam-2)); }
.pf-sparkstats { display: flex; gap: 30px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--pf-dark-line); }
.pf-sparkstat b { display: block; font-family: var(--pf-display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.pf-sparkstat span { font-family: var(--pf-brand); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-top: 6px; display: block; }

/* ==========================================================================
   Integrations
   ========================================================================== */

.pf-intgroups { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pf-intgroup { background: var(--pf-white); border: 1px solid var(--pf-line); border-radius: var(--pf-r); padding: 22px 24px; }
.pf-section--tint .pf-intgroup { border-color: var(--pf-line-cool); }
.pf-intgroup__k { font-family: var(--pf-brand); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pf-faint); margin-bottom: 14px; }
.pf-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-chip { font-family: var(--pf-body); font-size: 0.85rem; padding: 7px 13px; background: var(--pf-paper); border: 1px solid var(--pf-line); border-radius: 8px; color: var(--pf-ink); }
.pf-chip--tbd { background: transparent; border-style: dashed; border-color: var(--pf-line-cool); color: var(--pf-faint); font-family: var(--pf-brand); font-size: 0.74rem; }
.pf-intnote { font-family: var(--pf-brand); font-size: 0.66rem; letter-spacing: 0.04em; color: var(--pf-faint); margin: 16px 0 0; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pf-tiers { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
.pf-tier { background: var(--pf-white); border: 1px solid var(--pf-line); border-radius: var(--pf-r); padding: 26px 24px; position: relative; }
.pf-tier--featured { border-color: var(--pf-blue); box-shadow: 0 0 0 1px var(--pf-blue); }
.pf-tier__badge { position: absolute; top: -11px; left: 24px; font-family: var(--pf-brand); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--pf-blue); color: #fff; padding: 4px 11px; border-radius: 999px; }
.pf-tier__label { font-family: var(--pf-brand); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pf-slate); }
.pf-tier__price { font-family: var(--pf-display); font-weight: 700; font-size: 2.1rem; letter-spacing: -0.02em; margin: 10px 0 2px; color: var(--pf-ink); }
.pf-tier__per { font-family: var(--pf-brand); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pf-faint); }
.pf-tier__desc { font-size: 0.92rem; line-height: 1.5; color: var(--pf-slate); margin: 14px 0 0; }

.pf-pricelower { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pf-managed, .pf-included { background: var(--pf-white); border: 1px solid var(--pf-line); border-radius: var(--pf-r); padding: 28px; }
.pf-managed__h, .pf-included__h { font-family: var(--pf-display); font-weight: 600; font-size: 1.1rem; margin: 0 0 8px; color: var(--pf-ink); }
.pf-managed__p { font-size: 0.94rem; line-height: 1.6; color: var(--pf-slate); margin: 0 0 20px; }
.pf-budgets { display: grid; gap: 10px; }
.pf-budget { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: var(--pf-paper); border: 1px solid var(--pf-line); border-radius: 10px; padding: 13px 16px; }
.pf-budget--featured { background: var(--pf-tint); border-color: var(--pf-line-cool); }
.pf-budget__name { font-weight: 600; font-size: 0.95rem; color: var(--pf-ink); }
.pf-budget__note { font-size: 0.86rem; color: var(--pf-slate); }
.pf-budget__price { font-family: var(--pf-brand); font-size: 0.82rem; color: var(--pf-slate); white-space: nowrap; }
.pf-budget__perk { margin-top: 6px; font-size: 0.8rem; font-weight: 600; color: #047857; }
.pf-checks { display: grid; gap: 11px; margin-top: 4px; }
.pf-check { display: flex; gap: 10px; font-size: 0.94rem; line-height: 1.45; color: var(--pf-slate); }
.pf-check::before { content: "✓"; color: var(--pf-blue); font-weight: 700; }
.pf-included__note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--pf-line); font-size: 0.86rem; line-height: 1.55; color: var(--pf-faint); }

/* ── Alt pricing (v2) components: credit banner, fee rule, campaign cards,
      published add-ons, never-charge callout ─────────────────────────────── */
.pf-footnote { margin: 4px 0 0; font-size: 0.86rem; line-height: 1.5; color: var(--pf-faint); }
.pf-footnote strong { color: var(--pf-slate); }

.pf-credit { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--pf-r); padding: 18px 22px; }
.pf-credit__star { font-size: 1.2rem; line-height: 1.35; color: #b45309; }
.pf-credit__text { font-size: 0.92rem; line-height: 1.55; color: #713f12; margin: 0; }
.pf-credit__text strong { color: #b45309; }

.pf-feerule { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 16px 0 0; background: var(--pf-tint); border: 1px solid var(--pf-line-cool); border-radius: 10px; padding: 10px 16px; font-size: 0.9rem; color: var(--pf-ink); }
.pf-feerule b { color: var(--pf-blue); }
.pf-feerule__div { color: var(--pf-line-cool); }

.pf-camps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
.pf-camp { background: var(--pf-white); border: 1px solid var(--pf-line); border-radius: var(--pf-r); padding: 24px 22px; display: flex; flex-direction: column; }
.pf-camp--featured { border-color: var(--pf-blue); box-shadow: 0 0 0 1px var(--pf-blue); }
.pf-camp__h { font-family: var(--pf-brand); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pf-slate); }
.pf-camp__price { font-family: var(--pf-display); font-weight: 700; font-size: 1.65rem; letter-spacing: -0.02em; margin: 10px 0 0; color: var(--pf-ink); }
.pf-camp__fee { font-size: 0.82rem; font-weight: 600; color: var(--pf-blue); margin-top: 2px; }
.pf-camp__desc { font-size: 0.9rem; line-height: 1.5; color: var(--pf-slate); margin: 12px 0 0; }
.pf-camp__perk { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--pf-line); font-size: 0.82rem; font-weight: 600; color: #047857; }

.pf-addons { display: grid; }
.pf-addon { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--pf-line); }
.pf-addon:last-child { border-bottom: none; }
.pf-addon__name { font-weight: 600; font-size: 0.94rem; color: var(--pf-ink); }
.pf-addon__sub { display: block; font-size: 0.8rem; color: var(--pf-faint); font-weight: 400; margin-top: 2px; line-height: 1.4; }
.pf-addon__price { font-family: var(--pf-brand); font-weight: 700; font-size: 0.82rem; color: var(--pf-slate); white-space: nowrap; }

.pf-never { margin-top: 18px; padding: 14px 16px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; font-size: 0.86rem; line-height: 1.55; color: #166534; }
.pf-never strong { display: block; margin-bottom: 4px; }

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

@media (min-width: 720px) { .pf-camps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .pf-pricecols { grid-template-columns: 1.4fr 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.pf-proof { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pf-quote { border: 1px dashed var(--pf-line-cool); border-radius: var(--pf-r); background: var(--pf-white); padding: 30px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.pf-section--white .pf-quote { background: var(--pf-paper); }
.pf-quote__flag { position: absolute; top: 16px; right: 16px; font-family: var(--pf-brand); font-size: 0.54rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pf-faint); border: 1px solid var(--pf-line-cool); border-radius: 999px; padding: 4px 9px; }
.pf-quote__text { font-family: var(--pf-display); font-weight: 500; font-size: 1.1rem; line-height: 1.45; color: var(--pf-ink); margin: 0; }
.pf-quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.pf-quote__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--pf-tint); border: 1px dashed var(--pf-line-cool); flex: none; }
.pf-quote__meta { font-family: var(--pf-brand); font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pf-faint); line-height: 1.6; }
.pf-quote__meta b { color: var(--pf-ink); font-weight: 600; }

/* ==========================================================================
   Book (closing) section
   ========================================================================== */

.pf-book {
  background:
    radial-gradient(70% 100% at 50% 120%, rgba(62, 109, 246, 0.12), transparent 60%),
    var(--pf-tint);
}
.pf-book__grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); align-items: start; }
.pf-book__grid .pf-lead { margin-top: 18px; }
.pf-book__foot { font-size: 0.9rem; line-height: 1.6; color: var(--pf-slate); margin-top: 26px; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.platform.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.platform.reveal-ready [data-reveal].is-lit { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 680px) {
  .pf-herostats { grid-template-columns: repeat(2, auto); justify-content: start; gap: 26px 56px; }
  .pf-slots, .pf-inrow { grid-template-columns: repeat(3, 1fr); }
  .pf-inrow { grid-template-columns: 1fr 1fr; }
  .pf-cards { grid-template-columns: repeat(2, 1fr); }
  .pf-highlights { grid-template-columns: 1fr 1fr; }
  .pf-intgroups { grid-template-columns: repeat(3, 1fr); }
  .pf-proof { grid-template-columns: repeat(3, 1fr); }
  .pf-tiers { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .pf-hero__grid { grid-template-columns: 1.15fr 0.85fr; }
  /* Right-align the booking widget against the container edge; stays centred on
     narrower viewports where it fills the column. */
  .pf-hero__widget .pf-widget { margin-inline: 0 0; margin-left: auto; }
  .pf-spark__grid { grid-template-columns: 1fr 1fr; }
  .pf-book__grid { grid-template-columns: 0.78fr 1.22fr; }
  .pf-cards--4 { grid-template-columns: repeat(4, 1fr); }
  .pf-cards--3 { grid-template-columns: repeat(3, 1fr); }
  .pf-tiers { grid-template-columns: repeat(4, 1fr); }
  .pf-pricelower { grid-template-columns: 1.1fr 0.9fr; }
}

@media (prefers-reduced-motion: reduce) {
  .platform.reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .pf-btn:hover { transform: none; }
}
