/* ──────────────────────────────────────
   Design Tokens
   ────────────────────────────────────── */

:root {
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --color-yellow-main: #ffcd51;
  --color-yellow-light: #ffeeda;
  --color-yellow-extra-light: #fff7ed;
  --color-yellow-dark: #ffbd19;
  --color-green-main: #9ff2ac;
  --color-green-light: #cdfdd2;
  --color-green-extra-light: #e9ffec;
  --color-green-dark: #3cc84f;
  --color-blue-main: #8bb4ff;
  --color-blue-light: #ccdbff;
  --color-blue-dark: #3f62bb;
  --color-red-main: #f2ac9f;
  --color-red-light: #f9dfdb;
  --color-red-dark: #f06844;
  --color-brand: #fe8038;
  --color-brand-secondary: #ffe0bc;

  --color-bg: #fafaf7;
  --color-bg-white: #ffffff;
  --color-fg: #222222;
  --color-fg-strong: #111111;
  --color-fg-secondary: #666666;
  --color-fg-tertiary: #999999;
  --color-divider: rgba(0, 0, 0, 0.1);

  --page-max-width: 68.75rem;
  --hero-max-width: 52rem;
}


/* ──────────────────────────────────────
   Reset & Base
   ────────────────────────────────────── */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

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


/* ──────────────────────────────────────
   Buttons
   ────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-green-dark);
  color: #fff;
  border: 1px solid var(--color-green-dark);
}

.btn-primary:hover {
  background: #2fa840;
  border-color: #2fa840;
}

.btn-secondary {
  background: transparent;
  color: var(--color-fg);
  border: 1px solid var(--color-divider);
}

.btn-secondary:hover {
  border-color: var(--color-fg-tertiary);
  background: var(--color-bg-white);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 10px;
}

.nav .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}


/* ──────────────────────────────────────
   Navigation
   ────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
}

.nav-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 28px;
  width: auto;
}


/* ──────────────────────────────────────
   Hero
   ────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* Top: clear fixed nav (~4rem) + modest gap — avoids huge centered whitespace */
  padding: 5rem 2rem 4rem;
}

.hero-inner {
  max-width: var(--hero-max-width);
  text-align: center;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.25vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-fg-strong);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-fg-strong);
}

/* Fat marker under "move the business" — draws in like a highlighter pen */
.hero-headline-highlight {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.18em;
  margin-inline: -0.18em;
  background: linear-gradient(
    to bottom,
    transparent 0 70%,
    var(--color-green-main) 70%,
    var(--color-green-main) 100%
  );
  background-size: 0% 100%;
  background-repeat: no-repeat;
  border-radius: 0.22em;
  animation: markerDraw 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.9s forwards;
}

@keyframes markerDraw {
  to { background-size: 100% 100%; }
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--color-fg-secondary);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-green-dark);
  background: var(--color-green-extra-light);
  border: 1px solid var(--color-green-light);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.75rem;
}

.hero-trust-pill svg {
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}


/* ──────────────────────────────────────
   Shared Section Utilities
   ────────────────────────────────────── */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-fg-tertiary);
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.section-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.section-label--green {
  color: var(--color-green-dark);
  background: var(--color-green-extra-light);
  border-color: var(--color-green-light);
}

.section-label--green .section-label-dot {
  background: var(--color-green-dark);
}

.section-label--yellow {
  color: #8a5d00;
  background: #fffbeb;
  border-color: #f6d860;
}

.section-label--yellow .section-label-dot {
  background: var(--color-yellow-dark);
}

.section-label--blue {
  color: var(--color-blue-dark);
  background: #eef4ff;
  border-color: #b8d0f8;
}

.section-label--blue .section-label-dot {
  background: var(--color-blue-main);
}

.section-label--red {
  color: #b83a22;
  background: var(--color-red-light);
  border-color: var(--color-red-main);
}

.section-label--red .section-label-dot {
  background: #b83a22;
}

.section-label--on-dark {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.section-label--on-dark .section-label-dot {
  background: var(--color-green-main);
}


/* ──────────────────────────────────────
   Transformation (problem + solution cards)
   Based on examples/problem-solution.html
   ────────────────────────────────────── */

.transformation {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 8rem;
  background: linear-gradient(180deg, var(--color-green-extra-light) 0%, #f4fdf5 35%, var(--color-bg) 100%);
  overflow: hidden;
  border-top: 1px solid var(--color-divider);
}

.transformation-inner {
  max-width: 72rem;
  margin: 0 auto;
}

/* Header */
.t-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.t-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-fg-strong);
  margin-bottom: 1.5rem;
}

.t-headline em {
  font-style: italic;
  position: relative;
  white-space: nowrap;
}

.t-headline em::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 3px;
  height: 0.28em;
  background: var(--color-green-main);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.65;
}

.t-subheadline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  color: var(--color-fg-secondary);
  max-width: 38rem;
  margin: 0 auto;
}

/* Two comparison cards — equal width, right card elevated */
.t-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  row-gap: 0;
  column-gap: 2rem;
}

.t-card {
  border-radius: 20px;
  border: 1px solid var(--color-divider);
  background: var(--color-bg-white);
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

/* Epiphany card: elevated with green-tinted border + shadow depth */
.t-card--epiphany {
  border: 1.5px solid rgba(60, 200, 79, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07), 0 2px 12px rgba(60, 200, 79, 0.06);
}

.t-card-visual {
  padding: 2rem 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* (Epiphany mark watermark removed in v2 redesign) */

.t-card-visual--problem {
  background: #fafafa;
}

.t-card-visual--epiphany {
  background: linear-gradient(180deg, var(--color-green-extra-light) 0%, #fff 100%);
}

.t-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.t-card-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.t-card-label-text--problem {
  color: #a13a1c;
}

.t-card-label-text--epiphany {
  color: var(--color-green-dark);
}

/* ── Problem card: content flood ── */
.flood-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.flood-bot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #e8e8e8;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-fg-secondary);
  margin-bottom: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.flood-bot svg {
  width: 18px;
  height: 18px;
  opacity: 0.55;
  flex-shrink: 0;
}

.flood-bot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-red-dark);
  margin-left: auto;
  animation: botPulse 1.5s ease-in-out infinite;
}

@keyframes botPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.flood-stream-wrapper {
  position: relative;
  overflow: hidden;
  height: 190px;
}

.flood-stream {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: floodScroll 24s linear infinite;
}

@keyframes floodScroll {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.flood-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-fg-secondary);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.flood-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.55;
}

.flood-item.fi-video { border-left: 3px solid var(--color-red-dark); }
.flood-item.fi-slides { border-left: 3px solid var(--color-blue-main); }
.flood-item.fi-pdf { border-left: 3px solid var(--color-fg-tertiary); }
.flood-item.fi-quiz { border-left: 3px solid var(--color-yellow-main); }

.flood-item.fi-video svg { color: var(--color-red-dark); }
.flood-item.fi-slides svg { color: var(--color-blue-main); }
.flood-item.fi-pdf svg { color: var(--color-fg-tertiary); }
.flood-item.fi-quiz svg { color: #c89500; }

.flood-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fafafa);
  pointer-events: none;
  z-index: 2;
}

/* ── Epiphany card: collaborative hub v2 (cursor-tag style) ── */
.epi-visual-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 0 0;
}

.epi-v2-field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 8px 10px;
  width: 100%;
  align-items: center;
  justify-items: center;
}

/* Cursor unit: tag + pointer arrow as one piece (like collab section) */
.epi-v2-cursor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.epi-v2-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 7px;
  font-size: 0.66rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.epi-v2-tag--ld { background: var(--color-blue-dark); }
.epi-v2-tag--designer { background: var(--color-brand); }
.epi-v2-tag--sme { background: var(--color-green-dark); }
.epi-v2-tag--stakeholder { background: #8b5cf6; }

.epi-v2-ptr {
  width: 13px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Top-left: tag above, pointer below on right edge, pointing ↘ ── */
.epi-v2-pos-tl {
  grid-column: 1; grid-row: 1;
  justify-self: end;
  align-items: flex-end;
}
.epi-v2-pos-tl .epi-v2-ptr {
  margin-top: -3px;
  align-self: flex-end;
  transform: scale(-1, -1);
}
.epi-v2-pos-tl .epi-v2-ptr path { fill: var(--color-blue-dark); }

/* ── Top-right: tag above, pointer below on left edge, pointing ↙ ── */
.epi-v2-pos-tr {
  grid-column: 3; grid-row: 1;
  justify-self: start;
  align-items: flex-start;
}
.epi-v2-pos-tr .epi-v2-ptr {
  margin-top: -3px;
  align-self: flex-start;
  transform: scaleY(-1);
}
.epi-v2-pos-tr .epi-v2-ptr path { fill: var(--color-brand); }

/* ── Bottom-left: pointer on top right edge pointing ↗, tag below ── */
.epi-v2-pos-bl {
  grid-column: 1; grid-row: 3;
  justify-self: end;
  align-items: flex-end;
}
.epi-v2-pos-bl .epi-v2-ptr {
  margin-bottom: -3px;
  align-self: flex-end;
  transform: scaleX(-1);
}
.epi-v2-pos-bl .epi-v2-ptr path { fill: var(--color-green-dark); }

/* ── Bottom-right: pointer on top left edge pointing ↖, tag below ── */
.epi-v2-pos-br {
  grid-column: 3; grid-row: 3;
  justify-self: start;
  align-items: flex-start;
}
.epi-v2-pos-br .epi-v2-ptr {
  margin-bottom: -3px;
  align-self: flex-start;
  transform: none;
}
.epi-v2-pos-br .epi-v2-ptr path { fill: #8b5cf6; }

/* Hub (center) */
.epi-v2-hub {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-green-dark), #2ba33d);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(60, 200, 79, 0.2);
  position: relative;
  z-index: 2;
}

.epi-v2-hub-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.epi-v2-hub-logo {
  width: 20px;
  height: auto;
  display: block;
}

.epi-v2-hub-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

/* Outcome below */
.epi-v2-outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 6px;
}

.epi-v2-outcome-arrow {
  width: 22px;
  height: 28px;
  color: var(--color-green-dark);
  filter: drop-shadow(0 2px 4px rgba(60, 200, 79, 0.3));
}

.epi-v2-impact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-green-light);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-green-dark);
  white-space: nowrap;
}

.epi-v2-impact svg {
  width: 13px;
  height: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .flood-stream { animation: none; }
  .flood-bot-pulse { animation: none; }
}

/* Card body */
.t-card-body {
  padding: 1.75rem 2rem 2rem;
  border-top: 1px solid var(--color-divider);
}

.t-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-fg-strong);
}

.t-card-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-fg-secondary);
  margin-bottom: 0.75rem;
}

.t-card-body p:last-child { margin-bottom: 0; }

.t-card-highlight {
  font-family: var(--font-heading);
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  color: var(--color-fg) !important;
  border-left: 3px solid var(--color-green-dark);
  padding-left: 1rem;
  margin-top: 1rem !important;
}

/* Three pillars below cards */
.transformation-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 100%;
}

/* ──────────────────────────────────────
   Section Divider (color band) — optional, script observes if present
   ────────────────────────────────────── */

.section-divider {
  position: relative;
  z-index: 1;
  display: flex;
  height: 80px;
  overflow: hidden;
}

.section-divider-bar {
  flex: 1;
}

.section-divider-bar--yellow {
  background: var(--color-yellow-main);
}

.section-divider-bar--green {
  background: var(--color-green-main);
}

.section-divider-bar--blue {
  background: var(--color-blue-main);
}

/* Feature cards (reused under transformation) */
.difference-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.difference-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.25s ease;
}

.difference-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.difference-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.difference-card-icon--yellow {
  background: var(--color-yellow-light);
  color: #b8860b;
}

.difference-card-icon--blue {
  background: var(--color-blue-light);
  color: var(--color-blue-dark);
}

.difference-card-icon--green {
  background: var(--color-green-extra-light);
  color: var(--color-green-dark);
}

.difference-card-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-fg-strong);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.difference-card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-fg-secondary);
}


/* ──────────────────────────────────────
   Decorative Shapes
   ────────────────────────────────────── */

.shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.55;
}

/* Triangles via borders */
.shape-triangle {
  width: 0;
  height: 0;
  border-style: solid;
}

/* Squares */
.shape-square {
  border-radius: 3px;
}

/* Diamonds (rotated squares) */
.shape-diamond {
  border-radius: 3px;
  transform: rotate(45deg);
}

/* Individual shape placement, sizes, colours & rotations */
.shape-1 {
  top: 12%;
  left: 4%;
  border-width: 0 22px 38px 22px;
  border-color: transparent transparent var(--color-green-main) transparent;
  --r: -15deg;
  animation: float 16s ease-in-out infinite;
}

.shape-2 {
  top: 8%;
  right: 6%;
  width: 52px;
  height: 52px;
  background: var(--color-blue-main);
  --r: 12deg;
  animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
  top: 16%;
  right: 10%;
  width: 34px;
  height: 34px;
  background: var(--color-yellow-main);
  --r: 35deg;
  animation: float 14s ease-in-out infinite 2s;
}

.shape-4 {
  top: 42%;
  left: 3%;
  border-width: 0 18px 32px 18px;
  border-color: transparent transparent var(--color-green-dark) transparent;
  --r: 20deg;
  animation: float 17s ease-in-out infinite 1s;
}

.shape-5 {
  top: 38%;
  left: 7%;
  width: 42px;
  height: 42px;
  background: var(--color-blue-main);
  --r: -8deg;
  animation: float 15s ease-in-out infinite 3s;
}

.shape-6 {
  top: 55%;
  right: 5%;
  width: 38px;
  height: 38px;
  background: var(--color-brand);
  --r: 47deg;
  animation: float 18s ease-in-out infinite 2s;
}

.shape-7 {
  bottom: 18%;
  right: 8%;
  border-width: 0 20px 36px 20px;
  border-color: transparent transparent var(--color-green-main) transparent;
  --r: 160deg;
  animation: float 19s ease-in-out infinite;
}

.shape-8 {
  bottom: 22%;
  left: 5%;
  width: 30px;
  height: 30px;
  background: var(--color-yellow-main);
  --r: 22deg;
  animation: float 15s ease-in-out infinite 4s;
}

.shape-9 {
  bottom: 10%;
  right: 14%;
  width: 28px;
  height: 28px;
  background: var(--color-red-main);
  --r: -31deg;
  animation: float 16s ease-in-out infinite 1s;
}

.shape-10 {
  bottom: 32%;
  left: 10%;
  width: 24px;
  height: 24px;
  background: var(--color-green-light);
  --r: 15deg;
  animation: float 21s ease-in-out infinite 5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  33% {
    transform: translateY(-28px) rotate(var(--r, 0deg));
  }
  66% {
    transform: translateY(18px) rotate(var(--r, 0deg));
  }
}


/* ──────────────────────────────────────
   Z-index layering
   ────────────────────────────────────── */

.nav, .hero {
  position: relative;
  z-index: 1;
}


/* ──────────────────────────────────────
   Responsive
   ────────────────────────────────────── */

/* Big screens: full-viewport hero leaves a huge empty band below CTAs — shrink to content */
@media (min-width: 1024px) {
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .transformation {
    padding-top: 4rem;
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 4.75rem 1.25rem 3rem;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-lg {
    width: 100%;
  }

  .nav-inner {
    padding: 0.75rem 1.25rem;
  }

  /* Reduce shapes on mobile */
  .shape-5, .shape-8, .shape-9, .shape-10 {
    display: none;
  }

  .transformation {
    padding: 4rem 1.25rem 5.5rem;
  }

  .t-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .t-card {
    display: flex;
    flex-direction: column;
  }

  .transformation-features,
  .difference-cards {
    grid-template-columns: 1fr;
  }

  .difference,
  .how-it-works,
  .social-proof,
  .science {
    padding: 4rem 1.25rem 4.5rem;
  }

  .webinar-cta {
    padding: 0 1.25rem 4rem;
  }

  .final-cta {
    padding: 4.5rem 1.25rem 5rem;
  }

  .difference-cards {
    grid-template-columns: 1fr;
  }

  .how-inner,
  .social-proof-inner,
  .science-inner,
  .final-cta-inner,
  .footer-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .how-steps,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 0 0;
  }

  .trust-strip-items {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-strip-divider {
    width: 100%;
    height: 1px;
  }

  .trust-strip-badge {
    margin-left: 0;
    justify-content: center;
    padding-top: 0.5rem;
  }

  .science-inner {
    flex-direction: column;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ──────────────────────────────────────
   Highlight quote (overlaps sections)
   ────────────────────────────────────── */

.highlight-quote-wrapper {
  position: relative;
  z-index: 2;
  max-width: var(--page-max-width);
  /* Space above/below so the quote sits between transformation and how-it-works */
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.highlight-quote-card {
  margin: 0;
  position: relative;
  background: var(--color-bg-white);
  border: 1px solid var(--color-green-light);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  box-shadow: 0 8px 40px rgba(60, 200, 79, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-quote-mark {
  color: var(--color-green-main);
  flex-shrink: 0;
}

.highlight-quote-text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
  font-weight: 400;
  color: var(--color-fg);
  max-width: 44rem;
}

.highlight-quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.highlight-quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-green-light);
  flex-shrink: 0;
}

.highlight-quote-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.highlight-quote-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-fg-strong);
  line-height: 1.3;
}

.highlight-quote-role {
  font-size: 0.8rem;
  color: var(--color-fg-secondary);
  line-height: 1.3;
}

.highlight-quote-logo {
  flex-shrink: 0;
  opacity: 1;
}

@media (max-width: 640px) {
  .highlight-quote-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    padding: 2rem 1.25rem 2.5rem;
  }

  .highlight-quote-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
  }

  .highlight-quote-mark {
    width: 48px;
    height: 38px;
  }
}


/* ──────────────────────────────────────
   How it works
   ────────────────────────────────────── */

.how-it-works {
  position: relative;
  z-index: 1;
  /* Slightly less top padding now that quote has its own vertical rhythm */
  padding: 5.5rem 2rem 7rem;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-divider);
}

.how-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.how-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-fg-strong);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.how-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-fg-secondary);
  max-width: 40rem;
  margin-bottom: 3rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 100%;
}

/* Row: copy left, illustration right; number on top of copy */
.how-step-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.5rem 3rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border-radius: 20px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-divider);
  transition: box-shadow 0.25s ease;
}

.how-step-row:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.how-step-copy {
  min-width: 0;
}

.how-step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.how-step-num--brand {
  background: var(--color-brand);
}

.how-step-num--green {
  background: var(--color-green-dark);
}

.how-step-num--blue {
  background: var(--color-blue-dark);
}

.how-step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-fg-strong);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.how-step-lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-fg);
  margin-bottom: 0.75rem;
}

.how-step-lead strong {
  color: var(--color-fg-strong);
  font-weight: 600;
}

.how-step-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-fg-secondary);
  max-width: 38rem;
}

/* Visual panel (examples graphics) */
.how-step-visual {
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
}

.how-step-visual--brief {
  background: var(--color-yellow-extra-light);
}

.how-step-visual--outline {
  background: var(--color-green-extra-light);
}

.how-step-visual--storyboard {
  background: var(--color-blue-light);
  opacity: 1;
}

.how-illustration {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
}

/* ── Shared illustration primitives ── */
.how-brief-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 18px;
}

.how-brief-message {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.how-brief-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
}

.how-avatar-designer {
  background: var(--color-brand);
}

.how-avatar-stakeholder {
  background: var(--color-blue-dark);
}

.how-avatar-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0;
}

.how-avatar-john {
  background-image: url("./public/img/user_John.png");
}

.how-avatar-emily {
  background-image: url("./public/img/user_Emily.png");
}

.how-avatar-erica {
  background-image: url("./public/img/user_Erica.png");
}

.how-avatar-mark {
  background-image: url("./public/img/user_Mark.png");
}

.how-avatar-epi {
  background: var(--color-green-dark);
}

/* Epiphany mark inside Epi avatars (matches FullEpiLogo.svg icon) */
.how-avatar-epi .how-epi-logo {
  display: block;
  flex-shrink: 0;
}

.how-brief-bubble {
  background: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  flex: 1;
}

.how-brief-bubble-name {
  font-size: 0.62rem;
  font-weight: 600;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.how-tag {
  font-size: 0.52rem;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--color-blue-light);
  color: var(--color-blue-dark);
}

.how-tag-role {
  font-size: 0.52rem;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--color-brand-secondary);
  color: var(--color-brand);
}

.how-bubble-text {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--color-fg-secondary);
}

.how-brief-bubble-epi {
  background: linear-gradient(135deg, rgba(159, 242, 172, 0.2), rgba(159, 242, 172, 0.35));
  border-color: rgba(60, 200, 79, 0.15);
}

.how-brief-bubble-epi .how-brief-bubble-name {
  color: #1a6b27;
}

.how-applied-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--color-green-dark);
  margin-top: 4px;
}

.how-applied-badge svg {
  width: 11px;
  height: 11px;
}

.how-placeholder-text {
  display: inline-block;
  height: 6px;
  flex: 1;
  min-width: 24px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  vertical-align: middle;
}

/* ── Design Brief card ── */
.how-v2-problem-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.how-v2-problem-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.how-v2-problem-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--color-brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-v2-problem-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-brand);
}

.how-v2-problem-title {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-fg-tertiary);
}

.how-v2-text-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.how-v2-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
}

.how-v2-line-1 { width: 95%; }
.how-v2-line-2 { width: 80%; }
.how-v2-line-3 { width: 60%; }

/* ── Design Outline ── */
.how-outline-illustration {
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
  max-width: 100%;
}

.how-outline-structure {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-outline-chat-side {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.how-outline-module {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.how-outline-module-faded {
  opacity: 0.45;
}

/* Module 3: header only in card; sections sit faded below */
.how-outline-module-faded-header-only {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.how-outline-sections-faded-below {
  opacity: 0.4;
  margin-top: 2px;
  margin-left: 4px;
  padding-left: 8px;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
  gap: 4px;
}


.how-outline-module-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.how-outline-module-title {
  font-size: 0.7rem;
  font-weight: 600;
}

.how-outline-sections {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 4px;
}

.how-outline-section {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.02);
  font-size: 0.65rem;
  color: var(--color-fg-secondary);
}

.how-outline-section-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.how-content-icon {
  background: var(--color-yellow-light);
  color: #b37800;
}

.how-activity-icon {
  background: var(--color-green-extra-light);
  color: var(--color-green-dark);
}

.how-transfer-icon {
  background: var(--color-blue-light);
  color: var(--color-blue-dark);
}

.how-outline-section-text {
  font-size: 0.63rem;
}

.how-highlight-new {
  background: rgba(159, 242, 172, 0.15);
  border: 1px solid rgba(60, 200, 79, 0.15);
}

.how-outline-new-badge {
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--color-green-dark);
  color: #fff;
  margin-left: auto;
}

.how-outline-chat-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.how-outline-chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.how-outline-chat-bubble {
  background: #fff;
  border-radius: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--color-fg-secondary);
  flex: 1;
}

.how-epi-bubble {
  background: linear-gradient(135deg, rgba(159, 242, 172, 0.2), rgba(159, 242, 172, 0.35));
  border-color: rgba(60, 200, 79, 0.15);
  color: #1a5c25;
}

/* ── Storyboard ── */
.how-sb-illustration {
  max-width: 100%;
}

.how-sb-detail-slide {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.how-sb-slide-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

/* Replaces generic slide numbers with type icons (video / activity) */
.how-sb-slide-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-sb-slide-icon svg {
  width: 11px;
  height: 11px;
  display: block;
}

.how-sb-slide-icon--video {
  background: var(--color-yellow-light);
  color: #8a5d00;
}

.how-sb-slide-icon--activity {
  background: var(--color-green-extra-light);
  color: var(--color-green-dark);
}

.how-sb-slide-icon--activity svg {
  width: 12px;
  height: 12px;
}

.how-sb-slide-type {
  font-size: 0.52rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 4px;
}

.how-sb-type-video {
  background: var(--color-yellow-light);
  color: #8a5d00;
}

.how-sb-type-activity {
  background: var(--color-green-extra-light);
  color: var(--color-green-dark);
}

.how-sb-duration {
  margin-left: auto;
  font-size: 0.5rem;
  color: var(--color-fg-tertiary);
}

.how-sb-slide-cols {
  display: flex;
  gap: 8px;
}

.how-sb-narration,
.how-sb-visuals {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how-sb-col-label {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-fg-tertiary);
  margin-bottom: 1px;
}

.how-sb-text-placeholder {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.how-sb-tl {
  height: 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.05);
}

.how-sb-tl-1 { width: 100%; }
.how-sb-tl-2 { width: 85%; }
.how-sb-tl-3 { width: 65%; }

.how-sb-mcq {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.how-sb-mcq-options {
  display: flex;
  gap: 5px;
}

.how-sb-mcq-opt {
  flex: 1;
  padding: 6px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
}

.how-sb-mcq-correct {
  background: rgba(159, 242, 172, 0.2);
  border: 1px solid rgba(60, 200, 79, 0.2);
}

.how-sb-mcq-wrong {
  background: rgba(242, 172, 159, 0.15);
  border: 1px solid rgba(240, 104, 68, 0.15);
}

.how-sb-mcq-marker {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.how-correct-marker {
  background: var(--color-green-dark);
  color: #fff;
}

.how-wrong-marker {
  background: var(--color-brand);
  color: #fff;
}

.how-sb-signoff {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 18px;
}

.how-sb-signoff-bubble {
  border-color: rgba(60, 200, 79, 0.2);
}

.how-sb-approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--color-green-dark);
  margin-top: 5px;
  padding: 2px 8px;
  background: rgba(159, 242, 172, 0.2);
  border-radius: 4px;
}

.how-sb-approved-badge svg {
  width: 11px;
  height: 11px;
}

/* Collaborative by design — matches examples/collab-section.html */
.collab-section {
  position: relative;
  text-align: center;
  max-width: 52rem;
  width: 100%;
  margin: 2.5rem auto 0;
  padding: 5.5rem 1.5rem 5rem;
  overflow: hidden;
}

.collab-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--color-fg-strong);
  position: relative;
  z-index: 2;
}

.collab-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-fg-secondary);
  max-width: 30rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Floating cursor tags (decorative) */
.cursor-person {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  pointer-events: none;
  animation: cursorDrift 8s ease-in-out infinite;
}

.cursor-arrow {
  width: 14px;
  height: 18px;
  flex-shrink: 0;
  margin-bottom: -3px;
  margin-left: 2px;
}

.cursor-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes cursorDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: var(--drift); }
}

.cursor-ld { top: 8%; left: 4%; --drift: translate(3px, 2px); animation-delay: 0s; }
.cursor-ld .cursor-tag { background: var(--color-brand); }
.cursor-ld .cursor-arrow path { fill: var(--color-brand); }
/* Left-side roles should point inward toward the center content. */
.cursor-ld,
.cursor-stakeholder,
.cursor-mls {
  align-items: flex-end;
}
.cursor-stakeholder .cursor-arrow,
.cursor-mls .cursor-arrow {
  margin-left: 0;
  margin-right: 2px;
  transform: scaleX(-1);
  transform-origin: center;
}
/* Top roles place the cursor under the tag, angled toward center. */
.cursor-ld .cursor-arrow,
.cursor-manager .cursor-arrow {
  order: 2;
  margin-bottom: 0;
  margin-top: -3px;
}
.cursor-ld .cursor-arrow {
  margin-left: 0;
  margin-right: 2px;
  transform: scale(-1, -1);
  transform-origin: center;
}

.cursor-manager { top: 4%; right: 8%; --drift: translate(-3px, 2px); animation-delay: 1.2s; }
.cursor-manager .cursor-tag { background: var(--color-blue-dark); }
.cursor-manager .cursor-arrow path { fill: var(--color-blue-dark); }
.cursor-manager .cursor-arrow { transform: scaleY(-1); }

.cursor-sme { top: 44%; right: 2%; --drift: translate(-3px, -1px); animation-delay: 0.6s; }
.cursor-sme .cursor-tag { background: var(--color-green-dark); }
.cursor-sme .cursor-arrow path { fill: var(--color-green-dark); }

.cursor-stakeholder { bottom: 18%; left: 2%; --drift: translate(3px, -2px); animation-delay: 1.8s; }
.cursor-stakeholder .cursor-tag { background: #7c5cbf; }
.cursor-stakeholder .cursor-arrow path { fill: #7c5cbf; }

.cursor-learner { bottom: 6%; right: 12%; --drift: translate(-2px, -2px); animation-delay: 2.4s; }
.cursor-learner .cursor-tag { background: var(--color-yellow-main); color: #333; }
.cursor-learner .cursor-arrow path { fill: var(--color-yellow-main); }

.cursor-mls {
  top: 42%;
  left: 0%;
  --drift: translate(3px, 1px);
  animation-delay: 0.8s;
  /* Keep MLS arrow physically attached to the badge edge. */
  flex-direction: row-reverse;
  align-items: flex-start;
}
.cursor-mls .cursor-tag { background: #d4655a; }
.cursor-mls .cursor-arrow path { fill: #d4655a; }
.cursor-mls .cursor-arrow {
  margin: 2px 0 0 -2px;
  transform: scaleX(-1) rotate(-28deg);
  transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
  .cursor-person,
  .science-visual-ring,
  .science-visual-ring::before,
  .science-visual-icon {
    animation: none;
  }

  .hero-inner > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-headline-highlight {
    animation: none;
    background-size: 100% 100%;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-label {
    opacity: 0.85;
    transform: none;
    transition: none;
  }

  .section-divider-bar {
    transform: skewX(-12deg) scaleX(1.2);
    transition: none;
  }
}

@media (max-width: 768px) {
  .collab-section {
    padding: 4rem 1rem 4rem;
  }
  .cursor-person {
    display: none;
  }
}


/* ──────────────────────────────────────
   Social proof
   ────────────────────────────────────── */

.social-proof {
  position: relative;
  z-index: 1;
  padding: 5.5rem 2rem 6rem;
  background: var(--color-green-extra-light);
  overflow: hidden;
}

.social-proof-inner {
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.social-proof-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-fg-strong);
  letter-spacing: -0.015em;
  max-width: 38rem;
  margin-bottom: 1rem;
}

.social-proof-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-fg-secondary);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial {
  position: relative;
  margin: 0;
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(60, 200, 79, 0.1);
}

.testimonial-top {
  flex: 1;
}

.testimonial-quote-mark {
  display: block;
  color: var(--color-green-main);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-fg);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-divider);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-green-light);
  flex-shrink: 0;
}

.testimonial-avatar--placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border: 2px solid var(--color-divider);
  color: var(--color-fg-tertiary);
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-fg-strong);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--color-fg-tertiary);
  line-height: 1.3;
}

.testimonial-company-logo {
  flex-shrink: 0;
  height: 16px;
  width: auto;
  opacity: 1;
  display: block;
  object-fit: contain;
  object-position: right center;
}

.testimonial-company-logo--scania {
  height: 18px;
}


/* ──────────────────────────────────────
   Webinar CTA (below social proof)
   ────────────────────────────────────── */

.webinar-cta {
  position: relative;
  z-index: 1;
  padding: 0 2rem 5.5rem;
  margin-top: -1px;
  background: var(--color-green-extra-light);
  overflow: hidden;
}

.webinar-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 72rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(60, 200, 79, 0.35) 20%,
    rgba(255, 205, 81, 0.5) 50%,
    rgba(60, 200, 79, 0.35) 80%,
    transparent
  );
  pointer-events: none;
}

.webinar-cta-inner {
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.webinar-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem 3rem;
  align-items: center;
  padding: 2.75rem 2.5rem 2.75rem 2.75rem;
  background: var(--color-bg-white);
  border-radius: 20px;
  border: 1px solid var(--color-green-light);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 50px rgba(60, 200, 79, 0.07),
    0 4px 16px rgba(0, 0, 0, 0.04);
}

.webinar-cta-copy {
  min-width: 0;
}

.webinar-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-fg-strong);
  letter-spacing: -0.02em;
  margin: 0.85rem 0 1.15rem;
  max-width: 26rem;
}

.webinar-cta-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-fg);
  max-width: 36rem;
  margin-bottom: 1rem;
}

.webinar-cta-lead strong {
  color: var(--color-fg-strong);
  font-weight: 600;
}

.webinar-cta-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-fg-secondary);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.webinar-cta-urgency {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-brand);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.webinar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: 0 4px 14px rgba(60, 200, 79, 0.35);
}

.webinar-cta-btn:hover {
  box-shadow: 0 6px 20px rgba(60, 200, 79, 0.45);
  transform: translateY(-1px);
}

.webinar-cta-btn-arrow {
  font-size: 1.15em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.webinar-cta-btn:hover .webinar-cta-btn-arrow {
  transform: translateX(4px);
}

.webinar-cta-aside {
  flex-shrink: 0;
}

.webinar-cta-date-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(
    160deg,
    var(--color-yellow-extra-light) 0%,
    var(--color-yellow-light) 100%
  );
  border: 1px solid rgba(255, 189, 25, 0.35);
  box-shadow: 0 8px 24px rgba(255, 189, 25, 0.12);
}

.webinar-cta-date-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-fg-secondary);
  margin-bottom: 0.25rem;
}

.webinar-cta-date-day {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-fg-strong);
  letter-spacing: -0.03em;
}

.webinar-cta-date-time {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-yellow-dark);
}

@media (max-width: 900px) {
  .webinar-cta-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1.75rem;
    text-align: center;
  }

  .webinar-cta-headline {
    margin-left: auto;
    margin-right: auto;
  }

  .webinar-cta-lead,
  .webinar-cta-body {
    margin-left: auto;
    margin-right: auto;
  }

  .webinar-cta-aside {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .webinar-cta-date-card {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 1.5rem;
    min-width: 0;
  }

  .webinar-cta-date-month {
    margin-bottom: 0;
  }

  .webinar-cta-date-day {
    font-size: 1.75rem;
  }

  .webinar-cta-date-time {
    margin-top: 0;
    align-self: center;
  }
}


/* ──────────────────────────────────────
   Trust strip (enterprise badges inside social-proof)
   ────────────────────────────────────── */

.trust-strip {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding: 1rem 0 0;
}

.trust-strip-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.trust-strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-green-extra-light);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-strip-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.trust-strip-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-fg-strong);
  line-height: 1.3;
  white-space: nowrap;
}

.trust-strip-desc {
  font-size: 0.8125rem;
  color: var(--color-fg-tertiary);
  line-height: 1.3;
  white-space: nowrap;
}

.trust-strip-divider {
  width: 1px;
  height: 28px;
  background: var(--color-divider);
  flex-shrink: 0;
}

.trust-strip-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.trust-strip-badge img {
  display: block;
  height: 120px;
  width: auto;
  object-fit: contain;
}


/* ──────────────────────────────────────
   Learning science
   ────────────────────────────────────── */

.science {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 7rem;
  background: var(--color-bg);
  overflow: hidden;
}

.science-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.science-content {
  flex: 1;
}

.science-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-fg-strong);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.science-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-fg-secondary);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-fg-strong);
  border-bottom: 2px solid var(--color-fg-strong);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.btn-text:hover {
  opacity: 0.7;
}

.science-visual {
  flex-shrink: 0;
}

.science-visual-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow-light), var(--color-green-extra-light));
  border: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.science-visual-ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1.5px dashed var(--color-divider);
}

.science-visual-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--color-bg-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
}


/* ──────────────────────────────────────
   Final CTA
   ────────────────────────────────────── */

.final-cta {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem 8rem;
  text-align: center;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-divider);
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 205, 81, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.final-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-fg-strong);
  letter-spacing: -0.02em;
  max-width: 28rem;
  margin: 0 auto 1rem;
}

.final-cta-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-fg-secondary);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.final-cta-email {
  font-size: 0.9rem;
  color: var(--color-fg-secondary);
}

.final-cta-email a {
  color: var(--color-fg-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta-email a:hover {
  opacity: 0.8;
}


/* ──────────────────────────────────────
   Footer
   ────────────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}

.footer-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-logo img {
  display: block;
  opacity: 1;
  height: 26px;
  width: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--color-fg-tertiary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-fg-strong);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-badge-img {
  display: block;
  /* Match readable size to enterprise badge; SVG scales by height */
  height: clamp(44px, 5vw, 56px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-fg-tertiary);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social svg {
  display: block;
}

.footer-social:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--color-fg-strong);
}


/* ──────────────────────────────────────
   Scroll Animations
   ────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-visible.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-visible.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-visible.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-visible.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Hero entrance ── */

.hero-inner > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-inner > .hero-trust-pill { animation-delay: 0.1s; }
.hero-inner > .hero-headline   { animation-delay: 0.25s; }
.hero-inner > .hero-subheadline { animation-delay: 0.4s; }
.hero-inner > .hero-ctas       { animation-delay: 0.55s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Section labels slide in from left ── */

.section-label {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.05s, transform 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.05s;
}

.reveal-visible .section-label,
.section-label.label-visible {
  opacity: 0.85;
  transform: translateX(0);
}

/* ── Section divider bars wipe in ── */

.section-divider-bar {
  transform: skewX(-12deg) scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-divider.divider-visible .section-divider-bar--yellow { transform: skewX(-12deg) scaleX(1.2); transition-delay: 0s; }
.section-divider.divider-visible .section-divider-bar--green  { transform: skewX(-12deg) scaleX(1.2); transition-delay: 0.1s; }
.section-divider.divider-visible .section-divider-bar--blue   { transform: skewX(-12deg) scaleX(1.2); transition-delay: 0.2s; }

/* ── How-it-works illustrations slide from right ── */

.how-step-visual {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1) 0.15s, transform 0.75s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
}

.reveal-visible .how-step-visual {
  opacity: 1;
  transform: translateX(0);
}

/* ── Highlight quote lift ── */

.highlight-quote-card.reveal {
  transform: translateY(32px) scale(0.98);
}

.highlight-quote-card.reveal-visible {
  transform: translateY(0) scale(1);
}

/* ── Science ring slow spin ── */

.science-visual-ring {
  animation: ringSpin 50s linear infinite;
}

.science-visual-ring::before {
  animation: ringSpin 60s linear infinite reverse;
}

.science-visual-icon {
  animation: ringSpin 50s linear infinite reverse;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* ── Nav scroll state ── */

.nav {
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav.nav-scrolled {
  background: rgba(250, 250, 247, 0.95);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}


/* ──────────────────────────────────────
   Responsive (tablet)
   ────────────────────────────────────── */

@media (max-width: 1024px) {
  .testimonials {
    grid-template-columns: 1fr;
  }

  .how-step-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
  }

  .how-step-visual {
    min-height: 240px;
  }

  .how-outline-illustration {
    flex-direction: column;
  }

  .how-outline-chat-side {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
