/* ==========================================================================
   Adapt Practice — AI at Work sales-page stylesheet

   Page-specific components for the AI at Work long-form sales page.
   This file must be loaded after adapt-practice.css.
   ========================================================================== */

/* The shared 6rem section rhythm leaves this page sparse now that the
   sections carry denser content. Scoped here, so other pages are unaffected. */
.section { padding: clamp(3rem, 5.5vw, 4.5rem) 0; }
.section__header { margin-bottom: 2rem; }

/* ─────────────────────────────────────────────────────────────────────────
   Product hero
   ───────────────────────────────────────────────────────────────────────── */
.ai-work-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4.5rem;
}

.ai-work-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(15, 127, 131, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(200, 148, 58, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.ai-work-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.ai-work-hero__wordmark {
  font-family: var(--font-wordmark);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  /* Tight leading: the wordmark wraps to two lines at most widths, and the
     inherited body line-height leaves far too much air between them. */
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ai-work-hero__wordmark span { color: var(--gold); }

.ai-work-hero__attribution {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.75rem;
}

.ai-work-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.ai-work-hero__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ai-work-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ai-work-hero__actions .text-link { color: rgba(255, 255, 255, 0.82); }
.ai-work-hero__actions .text-link:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────────────────
   Hero "At a glance" workshop card — the factual summary of the offer.
   ───────────────────────────────────────────────────────────────────────── */
.glance-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.75rem 2rem;
}

.glance-card__title {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.glance-card__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.glance-card__row:first-of-type { border-top: none; padding-top: 0; }
.glance-card__row:last-of-type { padding-bottom: 0; }

.glance-card dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 0.25em;
}

.glance-card dd {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}

.glance-card__note {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.glance-card__row--price dd {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.glance-card__row--price [data-currency-code] {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────
   Plain ruled list — editorial alternative to boxed cards. Used for the
   workshop-format points, facilitation notes and follow-on services.
   ───────────────────────────────────────────────────────────────────────── */
.plain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.plain-list li {
  position: relative;
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.6;
  padding: 0.85rem 0 0.85rem 1.4rem;
  border-bottom: 1px solid var(--grey-mid);
}
.plain-list li:last-child { border-bottom: none; }

.plain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.plain-list--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  margin-top: 2.75rem;
}
.plain-list--split li:last-child { border-bottom: 1px solid var(--grey-mid); }

/* ─────────────────────────────────────────────────────────────────────────
   Practice proportion — shows that most of the time is hands-on, as a
   proportion rather than a number. Deliberately no figures: the exact
   minute split is delivery detail, not something a buyer needs.
   ───────────────────────────────────────────────────────────────────────── */
/* The figure is much shorter than the list beside it, so it is centred
   rather than top-aligned to avoid a tall empty column. */
.split-layout--centred { align-items: center; }

.practice-ring__dial {
  display: grid;
  place-items: center;
  width: clamp(180px, 20vw, 226px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0turn 0.74turn, var(--grey-mid) 0.74turn 1turn);
  margin-bottom: 1.85rem;
}

.practice-ring__core {
  display: grid;
  place-items: center;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  text-align: center;
}

.practice-ring__headline {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  max-width: 30ch;
}

.practice-ring__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 44ch;
}

/* ─────────────────────────────────────────────────────────────────────────
   The 3.5-hour journey — four high-level parts. Kept deliberately light:
   exact timings, framework mappings and per-part outputs are delivery
   detail rather than something a buyer needs on a sales page.
   ───────────────────────────────────────────────────────────────────────── */
.parts-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.part {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.85rem 1.6rem;
}

/* Element qualifiers needed: .section--navy p would otherwise win and
   flatten these to pure white, losing the gold marker and the hierarchy. */
.part p.part__marker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.part h3 {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.part p.part__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.parts-closing {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────────────────
   What participants actually do — a set of activities, not a sequence, so
   no numbering and no rules. Deliberately a different texture from the
   journey timeline above it, which would otherwise read as the same list.
   ───────────────────────────────────────────────────────────────────────── */
.activity-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 3.5rem;
  margin-top: 0.25rem;
}

.activity h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.activity p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 46ch;
}

/* ─────────────────────────────────────────────────────────────────────────
   What participants leave with — split by what they build versus what they
   are given, which is the distinction that matters to a buyer.
   ───────────────────────────────────────────────────────────────────────── */
.takeaway-groups {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3.5rem;
  margin-top: 2.5rem;
}

.takeaway-group__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--gold);
}

/* AI Work Kit pack — drawn in CSS so the page carries no stock imagery.
   Reads as a stack of named documents behind a branded cover. Swap the
   whole .kit-pack block for an <img> once a real photograph exists. */
.kit-pack {
  position: relative;
  height: 272px;
  max-width: 300px;
  margin: 1.5rem 0 1.85rem;
}

.kit-pack__item,
.kit-pack__cover {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.kit-pack__item {
  display: block;
  height: 46px;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}
.kit-pack__item:nth-child(1) { top: 0; }
.kit-pack__item:nth-child(2) { top: 40px; }
.kit-pack__item:nth-child(3) { top: 80px; }

.kit-pack__cover {
  top: 120px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.2rem;
  background: var(--navy);
  border: 1px solid var(--navy);
}

.kit-pack__rule {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-bottom: auto;
}

.kit-pack__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.kit-pack__brand {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.takeaway-list { list-style: none; }

.takeaway {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.takeaway:last-child { border-bottom: none; }

.takeaway h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.takeaway p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.takeaway em { font-style: italic; }

/* ─────────────────────────────────────────────────────────────────────────
   Capability model (Productivity / Judgement / Control)
   ───────────────────────────────────────────────────────────────────────── */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.capability-card {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

/* The three capability names are the point of this section, so they carry
   display type rather than sitting above the content as small eyebrows. */
.capability-card__label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.1vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 1rem;
}

.capability-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.7rem;
}

.capability-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.capability-closing {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────────────────
   Audience qualification
   ───────────────────────────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.audience-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
}
.audience-col--for { border-top: 3px solid var(--teal); }
.audience-col--not-for { border-top: 3px solid #8C5850; }

.audience-col h3 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.audience-col--for h3 { color: var(--gold-deep); }
.audience-col--not-for h3 { color: var(--text-muted); }

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.audience-list li {
  font-size: 0.95rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.55;
}
.audience-col--for .audience-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.audience-col--not-for .audience-list li::before {
  content: '✕';
  color: #8C5850;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   Frameworks — a set of named tools rather than text cards. Each carries a
   navy monogram in the brand display face, so the group reads as something
   proprietary. Only the one-line summary is public; the acronym breakdowns
   stay in the workshop.
   ───────────────────────────────────────────────────────────────────────── */
.framework-set {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.75rem 1.5rem;
  margin-bottom: 2.25rem;
}

.framework { position: relative; }

/* Shared baseline rail — each segment runs from this tile's centre to the
   next one's, so the five read as one family. Sized from the item itself
   (100% + the grid gap), which keeps it correct at any column width.
   Single row only, so it is suppressed once the grid wraps. */
@media (min-width: 901px) {
  .framework:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% + 1.5rem);
    height: 1px;
    background: var(--grey-mid);
    z-index: 0;
  }
}

.framework__use {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 0.4rem;
}

.framework__mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(200, 148, 58, 0.45);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.95rem;
}
.framework__mark--wide { font-size: 1.3rem; letter-spacing: 0.01em; }

.framework h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.45rem;
}

.framework p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.6;
}

.section__footnote {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   How Participants Learn — shared .connected-process component
   (see adapt-practice.css), widened to 4 steps for this page only.
   ───────────────────────────────────────────────────────────────────────── */
.connected-process--4 { margin-top: 2.5rem; }
@media (min-width: 901px) {
  .connected-process--4 { grid-template-columns: repeat(4, 1fr); }

  /* Arrowhead on the shared connector, so the four steps read as a flow
     rather than four separate items. The line itself comes from
     .connected-process__step::after in adapt-practice.css. */
  .connected-process--flow .connected-process__step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 18px;
    right: -2.05rem;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
    z-index: 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Trainer credentials — dark-surface variant of the shared .info-panel
   pattern, so the trainer can sit on a navy section.
   ───────────────────────────────────────────────────────────────────────── */
/* Element qualifier needed to beat .section--navy p on specificity. */
.trainer-bio p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.trainer-bio p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────────────────────────
   Delivery model — who delivers the work, drawn with borders rather than an
   image so the labels stay real text for screen readers and scale with type.
   ───────────────────────────────────────────────────────────────────────── */
.delivery-model {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.85rem 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Element qualifiers needed to beat .section--navy p on specificity. */
.delivery-model p.delivery-model__root {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.delivery-model__branches {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 40px;
}

/* Stem down from the root node. */
.delivery-model__branches::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.28);
}

/* Horizontal rail, ending at the centre of the outer two columns. */
.delivery-model__branches::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.delivery-model__branches li {
  position: relative;
  padding: 0.65rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

/* Stub from the rail down to each branch. */
.delivery-model__branches li::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.delivery-model p.delivery-model__caption {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.trainer-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem 1.85rem;
}

.trainer-panel h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.trainer-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.trainer-panel li {
  position: relative;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  padding: 0.85rem 0 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.trainer-panel li:last-child { border-bottom: none; padding-bottom: 0; }
.trainer-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────────────
   Evidence panel
   ───────────────────────────────────────────────────────────────────────── */
.evidence-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.evidence-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.evidence-stat {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.evidence-stat__heading {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.evidence-stat__body {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.evidence-stat__qualifier {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0 !important;
}

.evidence-example {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
}
.evidence-example .editorial-tag {
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.evidence-example p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.evidence-example__outcome {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
}
.evidence-example p.evidence-example__source {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}
.evidence-example p.evidence-example__moral {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   Currency selector
   ───────────────────────────────────────────────────────────────────────── */
.pricing-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding-bottom: 0.35rem;
}

.currency-selector label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.currency-selector select {
  width: auto;
  min-width: 140px;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.currency-selector select:hover {
  border-color: var(--teal);
}
.currency-selector select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.pricing-currency-code {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem !important;
}
.pricing-card.featured .pricing-currency-code {
  color: rgba(255, 255, 255, 0.55);
}

/* ─────────────────────────────────────────────────────────────────────────
   Pricing cards
   ───────────────────────────────────────────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--navy);
}

.pricing-flag {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.pricing-card.featured .pricing-name { color: var(--gold); }

.pricing-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}
.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.pricing-card.featured .pricing-unit { color: rgba(255, 255, 255, 0.55); }

.pricing-divider {
  height: 1px;
  background: var(--grey);
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-divider { background: rgba(255, 255, 255, 0.12); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.pricing-card.featured .pricing-features li { color: rgba(255, 255, 255, 0.82); }
.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-features li::before { color: var(--gold); }

.pricing-card .btn { width: 100%; text-align: center; }

.pricing-reassurance {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────────────────────────────────
   FAQs — native details/summary, no JS required
   ───────────────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--teal);
  font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────────────────
   Related service (AI Visibility Audit) — restrained cross-link, not a
   competing sales panel. Sits inside the Beyond the Workshop section.
   ───────────────────────────────────────────────────────────────────────── */
.related-service__panel {
  max-width: 620px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-service__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 0.6rem;
}

.related-service__title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.related-service__text {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   AI at Work responsive rules
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ai-work-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .framework-set { grid-template-columns: repeat(3, 1fr); }
  .evidence-panel { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .activity-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .takeaway-groups { grid-template-columns: 1fr; gap: 2.5rem; }
  .plain-list--split { grid-template-columns: 1fr; }
  .parts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .framework-set { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
  .pricing-cards { grid-template-columns: 1fr; }
  .parts-grid { grid-template-columns: 1fr; }

  .glance-card { padding: 1.5rem 1.35rem; }
  .glance-card__row { grid-template-columns: 1fr; gap: 0.2rem; }
  .glance-card dt { padding-top: 0; }

  .pricing-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .currency-selector { padding-bottom: 0; }
  .currency-selector select { flex: 1; min-width: 0; }
}
