/* We Build Any Software — premium BEM stylesheet v2 */

/* ─── Custom properties ──────────────────────────────────────────────────── */
:root {
  /* Palette */
  --clr-dark:          #0D0D10;
  --clr-dark-surface:  #16161C;
  --clr-dark-border:   rgba(255,255,255,0.08);
  --clr-dark-muted:    rgba(255,255,255,0.45);
  --clr-bg:            #FFFFFF;
  --clr-bg-alt:        #F7F7F8;
  --clr-border:        #E4E4E7;
  --clr-text:          #0F0F11;
  --clr-muted:         #6B6B80;
  --clr-primary:       #E8572A;
  --clr-primary-hover: #D44D22;
  --clr-primary-soft:  rgba(232,87,42,0.10);
  --clr-success:       #1A9E6A;
  --clr-error:         #C0392B;

  /* Typography */
  --font:   'Inter', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md:   0 2px 8px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg:   0 4px 16px rgba(0,0,0,0.10), 0 24px 56px rgba(0,0,0,0.12);

  /* Layout */
  --max-w:        720px;
  --pad:          24px;
  --transition:   0.2s ease;

  /* Site header height (JS may override via CSS var) */
  --site-header-offset: 64px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-offset);
  overscroll-behavior-y: none;
}

body {
  font-family: var(--font);
  background: var(--clr-dark);
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ─── Android device overrides ───────────────────────────────────────────── */
html.device-android,
html.device-android body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.device-android .header {
  min-height: 44px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 6px);
  padding-bottom: 6px;
  gap: 6px;
}

html.device-android .header__logo {
  flex-shrink: 0;
  align-self: center;
}

html.device-android .header__link {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
}

html.device-android {
  scroll-padding-top: 52px;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(13,13,16,0.92);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--clr-dark-border);
}

@media (max-width: 1024px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    padding-top: env(safe-area-inset-top, 0px);
    flex-wrap: nowrap;
  }

  .header__logo {
    white-space: nowrap;
  }

  main.funnel {
    padding-top: 0;
    overflow-x: hidden;
  }

  .static-page__content {
    padding: 48px 24px 80px;
    overflow-x: hidden;
  }

  .step--active {
    min-height: calc(100vh - var(--site-header-offset, 64px));
    min-height: calc(100dvh - var(--site-header-offset, 64px));
  }
}

@media (max-width: 560px) {
  .header {
    height: auto;
    min-height: 56px;
    padding-top: calc(env(safe-area-inset-top, 0px) + 10px);
    padding-bottom: 10px;
    gap: 12px;
  }
}

.header__logo {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  max-width: 100%;
}

.header__logo-mark {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
  min-width: 0;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

@media (min-width: 901px) {
  .header__logo-mark {
    height: clamp(36px, 3.8vw, 56px);
    max-width: min(52rem, calc(100vw - 7.5rem));
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .header__logo-mark {
    height: clamp(28px, 4vw, 40px);
    max-width: min(52rem, calc(100vw - 7.5rem));
  }
}

@media (max-width: 640px) {
  .header__logo-mark {
    height: clamp(52px, 16vw, 76px);
    max-width: min(26rem, calc(100vw - 72px));
  }

  html.device-android .header__logo-mark {
    height: clamp(52px, 16vw, 76px);
  }
}

.header__logo:hover .header__logo-mark {
  opacity: 0.8;
}

.header__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__link {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.header__link:hover,
.header__link:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  outline: none;
}

.header__link:focus-visible {
  box-shadow: 0 0 0 2px var(--clr-primary);
}

.header__link--current {
  color: var(--clr-primary);
  border-color: rgba(232,87,42,0.35);
  background: rgba(232,87,42,0.08);
  pointer-events: none;
}

@media (max-width: 560px) {
  .header__link {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Static page header close button */
.header__static-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.header__close:hover,
.header__close:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  outline: none;
}

/* Static legal page header */
body.static-page .header.header--static-subnav {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 12px;
}

body.static-page .header__logo-mark {
  max-width: min(38rem, calc(100vw - 12.5rem));
}

@media (max-width: 560px) {
  body.static-page .header.header--static-subnav {
    flex-direction: row;
    height: auto;
    min-height: 56px;
    padding-top: calc(env(safe-area-inset-top, 0px) + 10px);
    padding-bottom: 12px;
  }

  body.static-page .header__logo-mark {
    max-width: min(22rem, calc(100vw - 8rem));
  }
}

/* ─── Funnel container ───────────────────────────────────────────────────── */
.funnel {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
}

/* ─── Step visibility ────────────────────────────────────────────────────── */
.step {
  display: none;
  opacity: 0;
}

.step--active {
  display: block;
  animation: wbas-fade-in var(--transition) forwards;
}

.step--exit {
  animation: wbas-fade-out var(--transition) forwards;
}

@keyframes wbas-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes wbas-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--transition), color var(--transition),
              box-shadow var(--transition), transform 0.15s ease, opacity var(--transition);
}

.btn--primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 2px 0 rgba(140,50,10,0.5), 0 8px 24px rgba(232,87,42,0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--clr-primary-hover);
  box-shadow: 0 2px 0 rgba(140,50,10,0.5), 0 12px 32px rgba(232,87,42,0.35);
  transform: translateY(-1px);
  outline: none;
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 rgba(140,50,10,0.5), 0 4px 12px rgba(232,87,42,0.20);
}

.btn--primary:disabled {
  opacity: 1;
  background: transparent;
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn--primary:disabled:hover,
.btn--primary:disabled:focus-visible {
  background: transparent;
  color: var(--clr-muted);
  border-color: var(--clr-border);
  box-shadow: none;
  transform: none;
}

.btn--outline-primary {
  background: #fff;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  transition: background var(--transition), color var(--transition);
}

.btn--outline-primary:hover,
.btn--outline-primary:focus-visible {
  background: var(--clr-primary-soft);
  color: var(--clr-primary-hover);
  outline: none;
}

.btn--outline-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn--ghost {
  background: transparent;
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  font-size: 14px;
  min-height: 44px;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--clr-text);
  border-color: var(--clr-text);
  outline: none;
}

/* ─── Loader ─────────────────────────────────────────────────────────────── */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
  min-height: 28px;
}

.loader--hidden { display: none; }

.loader__dot {
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  opacity: 0.35;
  animation: wbas-dot 0.9s infinite ease-in-out;
}

.loader__dot:nth-child(2) { animation-delay: 0.15s; }
.loader__dot:nth-child(3) { animation-delay: 0.30s; }

@keyframes wbas-dot {
  0%, 60%, 100% { transform: translateY(0);     opacity: 0.35; }
  30%           { transform: translateY(-8px);  opacity: 1; }
}

/* ─── Error message ──────────────────────────────────────────────────────── */
.error-message {
  margin-top: 16px;
  padding: 16px;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--r-md);
  text-align: center;
}

.error-message--hidden { display: none; }

.error-message__text {
  color: var(--clr-error);
  font-size: 14px;
  margin-bottom: 12px;
}

.error-message__retry {
  display: inline-block;
  width: auto;
  padding: 8px 20px;
}

/* ─── Step 1: Problem (hero) ──────────────────────────────────────────────── */
.problem {
  padding-top: 48px;
  container-type: inline-size;
  container-name: problem;
}

.problem__headline {
  font-family: var(--font);
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.03em;
}

.problem__headline-line {
  display: inline;
  white-space: normal;
  overflow-wrap: break-word;
}

/* "instant quote" — clean bold inline highlight, no pill */
.problem__headline-magic {
  color: var(--clr-primary);
  font-weight: 800;
}

/* Underswoosh — remove decoration, just a colour shift */
.problem__headline-underswoosh,
.problem__lede-underswoosh {
  color: var(--clr-primary);
  font-weight: inherit;
}

.problem__headline-underswoosh::after,
.problem__lede-underswoosh::after {
  display: none;
}

/* Optional desktop / mobile comma fragments */
.problem__headline-fragment--workcomma-desk { display: none; }
.problem__headline-fragment--workcomma-mob  { display: inline; }

@media (min-width: 641px) {
  .problem__headline-fragment--workcomma-desk { display: inline; }
  .problem__headline-fragment--workcomma-mob  { display: none; }
}

.problem__lede {
  display: none;
}

.mob-trust {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.mob-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text-secondary);
  line-height: 1.3;
}

.mob-trust__item--offer {
  color: var(--clr-primary);
  font-weight: 600;
}

.mob-trust__icon {
  font-size: 16px;
  flex-shrink: 0;
}

.problem__lede-kicker {
  color: var(--clr-primary);
  font-weight: 600;
}

.problem__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem__input-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.problem__input-wrap:focus-within {
  overflow: visible;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,87,42,0.15);
  z-index: 2;
}

.problem__input-wrap .problem__textarea {
  padding-bottom: 26px;
}

.problem__loader {
  padding: 8px 0 2px;
}

.problem__textarea {
  width: 100%;
  min-height: 160px;
  padding: 18px 20px 26px;
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: var(--r-lg);
  color: #fff;
  font-family: ui-monospace, 'SF Mono', 'Cascadia Code', 'Fira Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
  outline: none;
  transition: background var(--transition);
}

.problem__textarea::placeholder {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  font-style: normal;
}

.problem__textarea:hover {
  background: rgba(255,255,255,0.06);
}

.problem__textarea:focus {
  background: rgba(255,255,255,0.06);
  outline: none;
}

.problem__input-wrap:has(.too-vague:not([hidden])) .problem__textarea {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 640px) {
  .problem {
    overflow-x: hidden;
    padding-top: 40px;
  }

  .problem__headline {
    font-size: clamp(36px, 11vw, 52px);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  .problem__headline-line {
    display: block;
  }

  .problem__lede {
    display: none;
  }

  .mob-trust {
    flex-direction: column;
    gap: 10px;
    margin: 0 0 28px;
    align-items: flex-start;
  }

  .mob-trust__item {
    font-size: 16px;
    gap: 12px;
  }

  .mob-trust__icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
  }

  .promo-banner {
    display: none;
  }

  .problem__textarea {
    min-height: 180px;
    height: 38vh;
    max-height: 320px;
    overflow-y: auto;
    resize: none;
  }

  .problem__textarea:placeholder-shown {
    overflow-y: hidden;
  }

  .problem__textarea:not(:placeholder-shown) {
    overflow-y: auto;
  }
}

html.device-android .problem__lede {
  font-size: 15px;
  line-height: 1.45;
}

html.device-android .problem__textarea {
  font-size: 14px;
  min-height: 144px;
  padding: 12px 14px 22px;
}

html.device-android .problem__textarea:placeholder-shown {
  overflow-y: hidden;
}

html.device-android .problem__textarea:not(:placeholder-shown) {
  overflow-y: auto;
}

@supports (width: 1cqi) {
  @media (max-width: 640px) {
    .problem__headline {
      font-size: clamp(26px, calc(1rem + 6cqi), 36px);
    }
  }
}

@media (min-width: 1025px) {
  .funnel {
    max-width: 860px;
  }

  .problem {
    padding-top: 60px;
  }

  .problem__headline {
    font-size: clamp(38px, 4.8vw, 56px);
    margin-bottom: 24px;
  }

  .problem__lede {
    font-size: 19px;
    margin-bottom: 36px;
  }

  .problem__textarea {
    min-height: 176px;
  }
}

.problem__disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0;
}

/* ─── Trust strip ────────────────────────────────────────────────────────── */
.trust-strip {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0;
  transition: border-color var(--transition), color var(--transition);
}

.trust-strip__item:hover {
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}

.trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-primary-soft);
  color: var(--clr-primary);
  font-size: 10px;
  flex-shrink: 0;
}

/* ─── Step 2: Questions ──────────────────────────────────────────────────── */
.questions {
  padding-top: 40px;
}

.questions__title {
  font-family: var(--font);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.2;
  text-align: center;
}

.questions__title--accent {
  color: var(--clr-primary);
  max-width: min(34rem, 92vw);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .questions__title--accent {
    max-width: min(42rem, 78vw);
  }
}

.questions__problem-recap {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--clr-primary);
  padding: 12px 16px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: 32px;
  line-height: 1.5;
}

.questions__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.question-block__back-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.question-block__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.45);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.question-block__back:hover,
.question-block__back:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  outline: none;
}

.question-block__back-arrow {
  font-size: 14px;
  line-height: 1;
}

.question-block__progress {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.question-block__progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}

.question-block__progress-fill {
  height: 100%;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.question-block__text {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.question-block__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-btn {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  color: rgba(255,255,255,0.80);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.option-btn:hover,
.option-btn:focus-visible {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.06);
  color: #fff;
  outline: none;
}

.option-btn--selected {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
  font-weight: 600;
}

.option-btn--other {
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.option-btn--other.option-btn--selected {
  color: #fff;
  font-style: normal;
}

.question-block__options--chips {
  flex-wrap: wrap;
  gap: 8px;
}

.option-btn--chip {
  border-radius: 999px;
  flex: 1 1 auto;
  min-width: calc(50% - 5px);
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 520px) {
  .option-btn--chip {
    min-width: 140px;
    flex: 0 1 auto;
  }
}

.option-other-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 6px;
}

.option-other-wrap--hidden { display: none; }

.option-other-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--clr-primary);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 16px;
  color: #fff;
  background: rgba(255,255,255,0.04);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.option-other-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,87,42,0.15);
}

.option-other-confirm {
  padding: 12px 20px;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), opacity var(--transition);
}

.option-other-confirm:hover {
  background: var(--clr-primary-hover);
}

/* Open-text input (Q3/Q4) */
.option-text-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .option-text-wrap {
    flex-direction: column;
  }

  .option-text-confirm {
    width: 100%;
  }
}

.option-text-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--clr-primary);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 16px;
  color: #fff;
  background: rgba(255,255,255,0.04);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.option-text-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,87,42,0.15);
}

.option-text-confirm {
  padding: 12px 20px;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.option-text-confirm:hover {
  background: var(--clr-primary-hover);
}

.questions__submit--hidden { display: none; }

.questions__summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.questions__summary-row {
  font-size: 14px;
  line-height: 1.5;
}

.questions__summary-q {
  color: rgba(255,255,255,0.40);
  display: block;
  margin-bottom: 2px;
}

.questions__summary-a {
  color: var(--clr-primary);
  font-weight: 600;
}

@media (min-width: 600px) {
  .question-block__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .option-btn {
    min-width: 0;
  }
}

/* ─── Thinking / loading scene ───────────────────────────────────────────── */
.thinking {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0 12px;
}

.thinking__label {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 20px;
}

/* Reflection teaser (shown while AI processes) */
.reflection-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
  text-align: center;
  max-width: min(34rem, 92vw);
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .reflection-teaser {
    max-width: min(42rem, 78vw);
  }
}

/* Mini bulb replaced: just use the loader dots */
.reflection-teaser__bulb {
  width: 56px;
  height: 70px;
  margin: 0 auto 12px;
}

.reflection-teaser__bulb svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.reflection-teaser__text {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1023px) {
  .reflection-teaser__text {
    font-size: 16px;
  }
}

.reflection-teaser__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 240px;
  max-width: 100%;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 auto;
}

.reflection-teaser__btn-arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.reflection-teaser__btn:hover .reflection-teaser__btn-arrow,
.reflection-teaser__btn:focus-visible .reflection-teaser__btn-arrow {
  transform: translateX(3px);
}

/* Think scene — simplified, no bulb animation */
.think-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 36px;
}

.think-scene__stage {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.think-scene__bulb {
  width: 100px;
  height: 140px;
}

.think-scene__bulb svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.9;
}

.think-scene__halo,
.think-scene__filament,
.think-scene__filament-node,
.think-scene__glass {
  /* No animation — clean static rendering */
}

.think-scene__spark { display: none; }

.think-scene__label {
  margin: 16px 0 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-align: center;
  min-height: 1.4em;
  transition: opacity 0.28s ease;
}

.think-scene__label--in {
  opacity: 1;
}

.think-scene__label:not(.think-scene__label--in) {
  opacity: 0;
}

/* Security seal — removed decoration, keeps element for JS compatibility */
.security-seal {
  width: 100px;
  height: 100px;
  margin: 32px auto 8px;
  opacity: 0.70;
  transition: opacity var(--transition);
}

.security-seal:hover {
  opacity: 0.90;
}

.security-seal svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Step 3: Solution deck ──────────────────────────────────────────────── */
.solution {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution:not(.solution--plan-mode) .sol-deck {
  display: none;
}

.solution--plan-mode .solution__proposal {
  display: none;
}

.solution--plan-mode .sol-deck {
  display: flex;
}

/* Proposal first card */
.solution__proposal {
  max-width: 32rem;
  margin: 0 auto;
  width: 100%;
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
}

@media (min-width: 560px) {
  .solution__proposal {
    padding: 32px 32px;
  }
}

.solution__proposal-kicker {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-primary);
  margin: 0 0 12px;
  line-height: 1.25;
}

.solution__proposal-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0 0 16px;
  font-weight: 400;
}

.solution__proposal-build {
  margin: 0 0 16px;
}

.solution__proposal-build-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.solution__proposal-build-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  white-space: nowrap;
}

.solution__proposal-build-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.solution__proposal-build-original {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.35);
}

.solution__proposal-build-discounted {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.solution__proposal-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.solution__proposal-offer-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--clr-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}

.solution__proposal-offer-expiry {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.solution__proposal-ownership {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
}

.solution__proposal-assumptions {
  list-style: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  border: 1px dashed rgba(255,255,255,0.12);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.solution__proposal-assumptions:not([hidden]) {
  display: block;
}

.solution__proposal-assumption {
  margin: 0 0 8px;
  padding-left: 1em;
  position: relative;
}

.solution__proposal-assumption::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
  font-weight: 700;
}

.solution__proposal-assumption:last-child {
  margin-bottom: 0;
}

.solution__proposal-prompt {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
  font-weight: 500;
}

.solution__proposal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.solution__proposal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: var(--r-sm);
  min-height: 52px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.solution__proposal-cta-arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.solution__proposal-cta:hover .solution__proposal-cta-arrow,
.solution__proposal-cta:focus-visible .solution__proposal-cta-arrow {
  transform: translateX(3px);
}

.solution__proposal-micro {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 0 0 6px;
}

.solution__proposal-plan {
  width: 100%;
  min-height: 44px;
  border-radius: var(--r-sm);
  background: transparent;
  color: rgba(255,255,255,0.40);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 500;
  font-size: 14px;
  box-shadow: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition), border-color var(--transition);
}

.solution__proposal-plan:hover,
.solution__proposal-plan:focus-visible {
  color: rgba(255,255,255,0.70);
  border-color: rgba(255,255,255,0.20);
  outline: none;
}

/* Solution section meta */
.solution__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.solution__problem-summary {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  font-weight: 500;
}

.solution__section-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.solution__tab-panel {
  padding: 8px 4px 4px;
  border: none;
  background: transparent;
}

.solution__tab-panel + .solution__tab-panel {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.solution__tab-panel--hidden { display: none; }

.solution__reflection-wrap { margin: 0; }

.solution__reflection {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1024px) {
  .solution__reflection {
    font-size: 16px;
    line-height: 1.68;
  }
}

/* ─── Sol-deck grid ──────────────────────────────────────────────────────── */
.sol-deck {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .sol-deck__overlay {
    display: block;
  }

  .sol-deck__overlay-scrim {
    display: none;
  }
}

@media (max-width: 767px) {
  .sol-deck__overlay:not(.sol-deck__overlay--open) {
    display: none;
  }

  .sol-deck__overlay--open {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: var(--clr-dark);
    padding: env(safe-area-inset-top, 0px) 0 env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
    min-height: 0;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .sol-deck__overlay--open .sol-deck__overlay-scrim {
    display: none;
  }

  .sol-deck__overlay--open .sol-deck__stage {
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    align-self: stretch;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    overflow-anchor: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    border-radius: 0;
    box-shadow: none;
  }
}

html.sol-deck-modal-open {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body.sol-deck-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.sol-deck__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 560px) {
  .sol-deck__grid { grid-template-columns: 1fr; }
}

.sol-deck__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  cursor: pointer;
  color: #fff;
  font-family: var(--font);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition), background var(--transition);
  overflow: hidden;
}

.sol-deck__tile:hover {
  transform: translateY(-2px);
  border-color: rgba(232,87,42,0.35);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}

.sol-deck__tile:hover .sol-stamp {
  transform: scale(1.05);
}

.sol-deck__tile:focus-visible {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 2px var(--clr-primary);
}

.sol-deck__tile--active {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.06);
}

.sol-deck__tile-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}

.sol-deck__tile-hint {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.40);
  line-height: 1.35;
  max-width: 22ch;
}

/* Wax stamp — simplified to a clean icon circle */
.sol-stamp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232,87,42,0.12);
  border: 1px solid rgba(232,87,42,0.25);
  transition: transform var(--transition);
}

.sol-stamp::before,
.sol-stamp::after { display: none; }

.sol-stamp__icon {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 1;
  color: var(--clr-primary);
  transition: color var(--transition);
}

.sol-stamp__icon i { color: inherit; }

/* Stage panel */
.sol-deck__stage {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 24px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.sol-deck__stage--open {
  opacity: 1;
  transform: translateY(0);
}

.sol-deck__stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sol-deck__stage-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.sol-deck__stage-stamp {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232,87,42,0.12);
  border: 1px solid rgba(232,87,42,0.25);
}

.sol-deck__stage-stamp::before { display: none; }

.sol-deck__stage-stamp .sol-stamp__icon {
  font-size: 16px;
}

.sol-deck__stage-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.sol-deck__stage-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}

.sol-deck__stage-close:hover {
  background: rgba(232,87,42,0.10);
  border-color: rgba(232,87,42,0.35);
  color: var(--clr-primary);
  transform: rotate(90deg);
}

.sol-deck__stage-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--clr-primary);
}

.sol-deck__panel {
  padding: 4px 0 0;
  animation: wbas-fade-in 0.22s ease forwards;
}

@media (max-width: 560px) {
  .sol-deck__stage { padding: 18px; }
  .sol-deck__stage-title { font-size: 18px; }
  .sol-deck__stage-stamp { width: 34px; height: 34px; }
  .sol-deck__stage-stamp .sol-stamp__icon { font-size: 13px; }
  .sol-deck__tile { padding: 18px 14px 16px; }
  .sol-stamp { width: 56px; height: 56px; }
  .sol-stamp__icon { font-size: 20px; }
  .sol-deck__tile-title { font-size: 15px; }
  .sol-deck__tile-hint { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .sol-deck__tile,
  .sol-deck__stage,
  .sol-stamp,
  .sol-deck__stage-close { transition: none; }
  .sol-deck__tile:hover { transform: none; }
  .sol-deck__tile:hover .sol-stamp { transform: none; }
  .sol-deck__panel { animation: none; }
}

/* ─── Requirements / How it works / Demo panels ──────────────────────────── */
.req__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.req__block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.req__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.req__problem {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  font-weight: 500;
}

.req__answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.req__row {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req__question {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.req__answer {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
}

.solution__how-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  margin-top: 14px;
}

.solution__how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: howsteps;
  padding: 0;
  margin: 0;
}

.solution__how-steps li {
  counter-increment: howsteps;
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 14px 16px;
}

.solution__how-steps li::before {
  content: counter(howsteps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Demo before/after */
.demo {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.demo__block {
  border-radius: var(--r-md);
  overflow: hidden;
}

.demo__block--before {
  border: 1px solid rgba(255,100,50,0.20);
  background: rgba(255,100,50,0.04);
}

.demo__block--after {
  border: 1px solid rgba(26,158,106,0.20);
  background: rgba(26,158,106,0.04);
}

.demo__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,87,42,0.80);
  padding: 10px 16px 6px;
  border-bottom: 1px solid rgba(255,100,50,0.15);
  background: rgba(255,100,50,0.04);
}

.demo__label--after {
  color: rgba(26,158,106,0.90);
  border-bottom-color: rgba(26,158,106,0.15);
  background: rgba(26,158,106,0.04);
}

.demo__content {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
  padding: 14px 16px;
  margin: 0;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo__text {
  white-space: pre-wrap;
  display: block;
}

.demo__photo {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-self: flex-start;
  max-width: 220px;
  margin: 0;
}

.demo__photo-frame {
  width: 200px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px dashed rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

.demo__block--before .demo__photo-frame {
  border-color: rgba(232,87,42,0.25);
}

.demo__block--after .demo__photo-frame {
  border-color: rgba(26,158,106,0.25);
}

.demo__photo-icon {
  font-size: 26px;
  line-height: 1;
  opacity: 0.5;
  color: rgba(255,255,255,0.60);
}

.demo__photo-caption {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.40);
  font-style: italic;
  max-width: 200px;
}

@media (max-width: 480px) {
  .demo__photo-frame {
    width: 100%;
    max-width: 260px;
    height: 120px;
  }
  .demo__photo,
  .demo__photo-caption {
    max-width: 100%;
  }
}

.demo__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.demo__divider::before,
.demo__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.demo__divider-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  padding: 0 12px;
  white-space: nowrap;
}

/* Tier badge */
.solution__tier-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--clr-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}

.solution__tier-badge:empty { display: none; }

.solution__currency-note {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.40);
  text-align: center;
  margin: 0 auto 12px;
  max-width: 480px;
}

.solution__currency-note--hidden { display: none; }

/* Investment block */
.solution__investment {
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 16px;
}

.solution__investment-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  margin-bottom: 16px;
}

.solution__investment-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.solution__investment-row:last-of-type {
  border-bottom: none;
}

.solution__investment-label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.solution__investment-sublabel {
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  font-weight: 400;
}

.solution__investment-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.solution__investment-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-primary);
}

.solution__investment-value--original {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.40);
}

.solution__investment-value--discounted {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1.1;
}

.solution__investment-offer {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

.solution__investment-value--ongoing {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
  text-align: right;
  max-width: 58%;
  white-space: pre-line;
}

@media (max-width: 599px) {
  .solution__investment-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .solution__investment-value,
  .solution__investment-value--ongoing {
    max-width: 100%;
    text-align: left;
  }
}

.solution__roi {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-style: italic;
}

.solution__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.solution__cta { margin-top: 0; }

/* Footer inside solution/funnel */
.solution__site-footer,
.funnel__site-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.solution__site-footer { margin-top: 28px; }
.funnel__site-footer   { margin-top: 40px; padding-bottom: 8px; }

/* ─── Next steps panel ───────────────────────────────────────────────────── */
.next__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.next__notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(232,87,42,0.06);
  border: 1px solid rgba(232,87,42,0.15);
  border-left: 3px solid var(--clr-primary);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
}

.next__notice-icon {
  color: var(--clr-primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.next__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.next__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.next__step:last-child { border-bottom: none; }

.next__step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.next__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.next__step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.next__step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
}

.next__cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

.next__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: var(--r-sm);
  min-height: 50px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.next__cta-arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.next__cta--primary:hover .next__cta-arrow,
.next__cta--primary:focus-visible .next__cta-arrow {
  transform: translateX(3px);
}

.next__cta--decline {
  background: transparent;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 500;
  box-shadow: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition), border-color var(--transition);
}

.next__cta--decline:hover,
.next__cta--decline:focus-visible {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.20);
  outline: none;
}

.next__cta--decline[aria-expanded="true"] {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.20);
}

@media (min-width: 560px) {
  .next__cta-row { flex-direction: row; }
  .next__cta     { flex: 1; width: auto; }
}

/* ─── Step 4: Contact ────────────────────────────────────────────────────── */
.contact {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact__heading {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.contact__subheading {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact__back {
  align-self: flex-start;
  width: auto;
  min-height: 40px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
}

.contact__optional {
  font-weight: 400;
  color: rgba(255,255,255,0.30);
}

.contact__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact__input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,87,42,0.15);
}

.contact__input::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact__field--consent { gap: 10px; }

.contact__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
}

.contact__consent-input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--clr-primary);
  cursor: pointer;
}

/* ─── Thank you ──────────────────────────────────────────────────────────── */
.thankyou {
  padding-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thankyou--hidden { display: none; }

.thankyou__icon {
  width: 64px;
  height: 64px;
  background: var(--clr-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}

.thankyou__icon i { line-height: 1; }

.thankyou__heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.thankyou__message {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  max-width: 320px;
  line-height: 1.6;
}

.thankyou__close {
  margin-top: 8px;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
}

/* ─── Modals ─────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal--hidden { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__box {
  position: relative;
  background: var(--clr-dark-surface);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: wbas-fade-in 0.2s ease forwards;
}

.modal__icon {
  font-size: 44px;
  margin-bottom: 12px;
  line-height: 1;
}

.modal__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.modal__message {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal__close {
  max-width: 280px;
  margin: 0 auto;
}

.modal__countdown {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-primary);
  margin-top: 8px;
}

/* ─── Too-vague inline feedback ──────────────────────────────────────────── */
.too-vague {
  border-top: 1px solid rgba(232,87,42,0.20);
  background: rgba(232,87,42,0.06);
  padding: 14px 16px 16px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  animation: wbas-fade-in 0.2s ease forwards;
}

.too-vague[hidden] { display: none; }

.problem__input-wrap:has(.too-vague:not([hidden])) {
  border-color: rgba(232,87,42,0.50) !important;
  box-shadow: 0 0 0 3px rgba(232,87,42,0.10) !important;
}

.too-vague__message {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.70);
  margin: 0 0 10px;
}

.too-vague__suggestion-wrap { margin: 0; }
.too-vague__suggestion-wrap[hidden] { display: none; }

.too-vague__suggestion-btn {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,87,42,0.25);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  cursor: pointer;
  line-height: 1.45;
  transition: border-color var(--transition), background var(--transition);
}

.too-vague__suggestion-btn::before {
  content: "→";
  flex-shrink: 0;
  font-size: 12px;
  color: var(--clr-primary);
  margin-top: 1px;
}

.too-vague__suggestion-btn:hover {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.08);
}

.too-vague__suggestion-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--clr-primary);
}

/* ─── Broad modal extras ─────────────────────────────────────────────────── */
.broad-modal__box {
  max-width: 480px;
  text-align: left;
}

.broad-modal__icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}

.broad-modal__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.broad-modal__message {
  text-align: left;
  margin-bottom: 18px;
}

.broad-modal__examples { margin-bottom: 22px; }

.broad-modal__examples-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 10px;
}

.broad-modal__examples-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.broad-modal__example-btn {
  width: 100%;
  text-align: left;
  padding: 11px 14px 11px 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition), background var(--transition), transform 0.12s ease;
  line-height: 1.4;
}

.broad-modal__example-btn::before {
  content: "→";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--clr-primary);
  transition: transform var(--transition);
}

.broad-modal__example-btn:hover {
  border-color: rgba(232,87,42,0.35);
  background: rgba(232,87,42,0.06);
  transform: translateX(2px);
}

.broad-modal__example-btn:hover::before {
  transform: translateY(-50%) translateX(2px);
}

.broad-modal__example-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--clr-primary);
}

.broad-modal__close {
  max-width: 100%;
  width: 100%;
}

/* ─── Decline modal ──────────────────────────────────────────────────────── */
.decline-modal {
  position: fixed;
  inset: 0;
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.decline-modal[hidden] { display: none !important; }

.decline-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
  backdrop-filter: blur(4px);
  animation: wbas-backdrop-in 0.2s ease forwards;
}

@keyframes wbas-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.decline-modal__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--clr-dark-surface);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  animation: wbas-sheet-in 0.28s cubic-bezier(0.34,1.36,0.64,1) forwards;
}

@keyframes wbas-sheet-in {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.decline-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px 0;
}

.decline-modal__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.decline-modal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.decline-modal__close:hover {
  background: rgba(232,87,42,0.10);
  color: var(--clr-primary);
  transform: rotate(90deg);
}

.decline-modal__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--clr-primary);
}

.decline-feedback {
  padding: 16px 24px 24px;
}

.decline-feedback__lead {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0 0 16px;
  font-style: italic;
}

.decline-feedback__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.decline-feedback__option {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.decline-feedback__option:hover,
.decline-feedback__option:focus-visible {
  border-color: rgba(232,87,42,0.35);
  box-shadow: 0 0 0 2px rgba(232,87,42,0.10);
  outline: none;
}

.decline-feedback__option--selected {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.08);
  color: #fff;
}

.decline-feedback__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(232,87,42,0.10);
  color: var(--clr-primary);
  font-size: 12px;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.decline-feedback__option--selected .decline-feedback__option-icon {
  background: var(--clr-primary);
  color: #fff;
}

.decline-feedback__option-label { flex: 1; }

.decline-feedback__text-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.decline-feedback__text-optional {
  font-weight: 400;
  color: rgba(255,255,255,0.30);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.decline-feedback__text {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.80);
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.decline-feedback__text::placeholder {
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

.decline-feedback__text:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 2px rgba(232,87,42,0.15);
}

.decline-feedback__actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.decline-feedback__submit {
  width: auto;
  min-width: 160px;
  padding: 11px 22px;
  min-height: 44px;
  border-radius: var(--r-sm);
  font-size: 14px;
}

.decline-feedback__thanks {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(26,158,106,0.08);
  border: 1px solid rgba(26,158,106,0.20);
  border-radius: var(--r-md);
  margin-top: 10px;
  animation: wbas-fade-in 0.3s ease;
}

.decline-feedback__thanks[hidden] { display: none; }

.decline-feedback__thanks-icon {
  color: var(--clr-success);
  font-size: 17px;
  flex-shrink: 0;
}

.decline-feedback__thanks p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING EXTRAS — below-fold sections on white/light background
   ═══════════════════════════════════════════════════════════════════════════ */

/* The page transitions from dark (funnel) to light (landing extras) */
.landing-extras {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.landing-extras--hidden { display: none; }

/* Shared section inner */
.landing-extras .what-we-build__inner,
.landing-extras .examples__inner,
.landing-extras .about-dtg__inner,
.landing-extras .steps__inner,
.landing-extras .faq__inner {
  /* font colour reset for light sections */
  color: var(--clr-text);
}

/* ─── What we build ──────────────────────────────────────────────────────── */
.what-we-build {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 72px 24px 80px;
  font-family: var(--font);
}

.what-we-build__inner {
  max-width: 680px;
  margin: 0 auto;
}

.what-we-build__heading {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--clr-text);
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.15;
}

.what-we-build__intro {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0 0 20px;
  line-height: 1.5;
  text-align: left;
}

.what-we-build__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-we-build__item {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  padding: 0 0 0 1.25rem;
}

.what-we-build__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary);
}

.what-we-build__tagline {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-primary);
  text-align: center;
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .what-we-build { padding: 56px 20px 60px; }
}

/* ─── Examples strip ─────────────────────────────────────────────────────── */
.examples {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  padding: 80px 24px;
}

.examples__inner {
  max-width: 680px;
  margin: 0 auto;
}

.examples__heading {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--clr-text);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.15;
}

.examples__lede {
  font-size: 16px;
  color: var(--clr-muted);
  text-align: center;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 40px;
}

.examples__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.examples__card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-primary);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.examples__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.examples--js .examples__card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow var(--transition);
}

.examples--js .examples__card--visible {
  opacity: 1;
  transform: translateY(0);
}

.examples--js .examples__card--visible:hover {
  transform: translateY(-2px);
}

.examples__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-border);
  order: -1;
}

.examples__stat-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  letter-spacing: -3px;
}

.examples__stat-label {
  font-size: 11px;
  color: var(--clr-muted);
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.examples__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.examples__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.examples__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.examples__input {
  font-size: 15px;
  font-style: italic;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.6;
}

.examples__result {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-primary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .examples__card {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .examples__body {
    flex: 0 0 70%;
    padding-right: 28px;
    border-right: 1px solid var(--clr-border);
  }

  .examples__stat {
    flex: 0 0 30%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 24px;
    border-bottom: none;
    order: 0;
    gap: 6px;
  }

  .examples__stat-num { font-size: 64px; }
}

/* ─── About ──────────────────────────────────────────────────────────────── */
.about-dtg {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 72px 24px 80px;
}

.about-dtg__inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-dtg__heading {
  font-family: var(--font);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  text-align: center;
  margin: 0 0 20px;
}

.about-dtg__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-text);
  margin: 0;
  text-align: center;
}

.about-dtg__link {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
}

.about-dtg__link:hover {
  text-decoration: underline;
}

.about-dtg__product { margin: 0; }

.about-dtg__product + .about-dtg__product {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}

.about-dtg__product-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--clr-text);
}

.about-dtg__product-link {
  color: var(--clr-primary);
  text-decoration: none;
}

.about-dtg__product-link:hover {
  text-decoration: underline;
}

.about-dtg__product-desc {
  text-align: left;
  color: var(--clr-muted);
}

/* ─── Steps (how it works) ───────────────────────────────────────────────── */
.steps {
  padding: 80px 24px;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  font-family: var(--font);
}

.steps__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.steps__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.steps__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  font-weight: 700;
  margin: 0 0 14px;
}

.steps__title {
  font-family: var(--font);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--clr-text);
}

.steps__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-muted);
  margin: 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.steps__item {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.steps__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.steps__item-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--clr-primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin: 0 0 18px;
}

.steps__item-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.steps__item-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
  box-shadow: 0 4px 12px rgba(232,87,42,0.30);
}

.steps__item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 10px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
}

.steps__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-muted);
  margin: 0;
}

@media (max-width: 960px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .steps { padding: 56px 20px; }
  .steps__grid { grid-template-columns: 1fr; gap: 14px; }
  .steps__item { padding: 28px 20px 24px; }
  .steps__item-title { min-height: 0; }
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 72px 24px 80px;
  font-family: var(--font);
}

.faq__inner {
  max-width: 680px;
  margin: 0 auto;
}

.faq__title {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.15;
}

.faq__lede {
  font-size: 16px;
  line-height: 1.5;
  color: var(--clr-muted);
  text-align: center;
  margin: 0 0 36px;
}

.faq__list {
  margin: 0;
  padding: 0 0 0 1.5rem;
  list-style: decimal;
  list-style-position: outside;
  color: var(--clr-text);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__item { margin: 0; }

.faq__item::marker {
  color: var(--clr-primary);
  font-weight: 700;
}

.faq__item-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--clr-text);
  margin: 0 0 8px;
}

.faq__item-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .faq { padding: 56px 20px 60px; }
  .faq__list { padding-left: 1.25rem; }
}

/* ─── Second CTA ─────────────────────────────────────────────────────────── */
.second-cta {
  background: var(--clr-bg);
  padding: 56px 24px;
  text-align: center;
  border-top: 1px solid var(--clr-border);
}

.second-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.second-cta__nudge {
  font-size: 14px;
  color: var(--clr-muted);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.second-cta__btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* ─── Trust line ─────────────────────────────────────────────────────────── */
.trust-line {
  background: var(--clr-bg-alt);
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid var(--clr-border);
}

.trust-line__text {
  font-size: 13px;
  color: var(--clr-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Site footer ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px;
  text-align: center;
}

.site-footer__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.site-footer__brand {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.site-footer__nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__link {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__link:hover {
  color: rgba(255,255,255,0.70);
}

.site-footer__sep {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
}

.site-footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  line-height: 1.5;
}

html[data-theme="light"] .site-footer {
  background: #F7F7F8;
  border-top-color: #E4E4E7;
}

html[data-theme="light"] .site-footer__brand {
  color: #4A4A5A;
}

html[data-theme="light"] .site-footer__copy {
  color: #9898A8;
}

html[data-theme="light"] .site-footer__link {
  color: #6B6B80;
}

html[data-theme="light"] .site-footer__link:hover {
  color: #0F0F11;
}

html[data-theme="light"] .site-footer__sep {
  color: #ADADBC;
}

html[data-theme="light"] .site-footer__legal {
  color: #ADADBC;
}

/* ─── Cookie bar ─────────────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  max-width: 440px;
  background: var(--clr-dark-surface);
  color: rgba(255,255,255,0.70);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: 9000;
}

.cookie-bar--hidden { display: none; }

.cookie-bar__text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.50);
  flex: 1;
  margin: 0;
}

.cookie-bar__link {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__btn {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}

.cookie-bar__btn:hover {
  background: rgba(255,255,255,0.16);
}

@media (min-width: 640px) {
  .cookie-bar {
    right: auto;
    max-width: 420px;
  }
}

/* ─── Static pages ───────────────────────────────────────────────────────── */
.static-page {
  background: var(--clr-dark);
}

.static-page__content {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.static-page__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}

.static-page__section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-bottom: 18px;
}

.static-page__section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.static-page__list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.static-page__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.static-page__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0 0 14px;
}

.static-page__text:last-child { margin-bottom: 0; }

.static-page__content--about {
  max-width: 720px;
}

.static-page__back {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 600;
}

.static-page__back:hover { text-decoration: underline; }

/* ─── Theme toggle button ────────────────────────────────────────────────── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.60);
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  outline: none;
}

.theme-toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--clr-primary);
}

/* Show the correct icon per theme */
.theme-toggle__icon--light { display: none; }
.theme-toggle__icon--dark  { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   LIGHT MODE  (html[data-theme="light"])
   Clean, spacious, HubSpot-calibre — white base, slate text, orange accent.
   ═══════════════════════════════════════════════════════════════════════════ */
html[data-theme="light"] {
  /* Override colour tokens */
  --clr-dark:          #FFFFFF;
  --clr-dark-surface:  #F5F5F5;
  --clr-dark-border:   rgba(0,0,0,0.08);
  --clr-dark-muted:    #6B6B80;
}

html[data-theme="light"] body {
  background: #FFFFFF;
  color: #0F0F11;
}

/* ── Header ── */
html[data-theme="light"] .header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #E4E4E7;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

html[data-theme="light"] .header__logo-mark {
  filter: none;
}

html[data-theme="light"] .header__link {
  color: #3D3D4E;
  border-color: #E4E4E7;
}

html[data-theme="light"] .header__link:hover,
html[data-theme="light"] .header__link:focus-visible {
  color: var(--clr-primary);
  border-color: rgba(232,87,42,0.35);
  background: rgba(232,87,42,0.05);
}

html[data-theme="light"] .header__link--current {
  color: var(--clr-primary);
  border-color: rgba(232,87,42,0.35);
  background: rgba(232,87,42,0.05);
}

html[data-theme="light"] .theme-toggle {
  border-color: #E4E4E7;
  color: #6B6B80;
}

html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .theme-toggle:focus-visible {
  color: var(--clr-text);
  border-color: #ADADBC;
  background: #F5F5F5;
}

html[data-theme="light"] .theme-toggle__icon--light { display: block; }
html[data-theme="light"] .theme-toggle__icon--dark  { display: none; }

/* ── Funnel / hero ── */
html[data-theme="light"] .problem__headline {
  color: #0F0F11;
}

html[data-theme="light"] .problem__lede {
  color: #4A4A5A;
}

html[data-theme="light"] .mob-trust__item {
  color: #4A4A5A;
}

html[data-theme="light"] .mob-trust__item--offer {
  color: var(--clr-primary);
}

html[data-theme="light"] .problem__input-wrap {
  border: 1px solid #D4D4D9;
  background: #FFFFFF;
  border-radius: var(--r-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

html[data-theme="light"] .problem__input-wrap:focus-within {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,87,42,0.12);
}

html[data-theme="light"] .problem__textarea {
  background: transparent;
  border: none;
  color: #0F0F11;
  font-family: ui-monospace, 'SF Mono', 'Cascadia Code', 'Fira Mono', monospace;
}

html[data-theme="light"] .problem__textarea::placeholder {
  color: #888899;
}

html[data-theme="light"] .problem__textarea:hover,
html[data-theme="light"] .problem__textarea:focus {
  background: transparent;
  border: none;
}

html[data-theme="light"] .problem__disclaimer {
  color: #9898A8;
}

/* ── Trust strip ── */
html[data-theme="light"] .trust-strip__item {
  background: #F7F7F8;
  border-color: #E4E4E7;
  color: #3D3D4E;
}

html[data-theme="light"] .trust-strip__item:hover {
  border-color: #ADADBC;
  color: #0F0F11;
}

/* ── Questions ── */
html[data-theme="light"] .questions__title {
  color: #0F0F11;
}

html[data-theme="light"] .questions__problem-recap {
  background: #F7F7F8;
  color: #6B6B80;
}

html[data-theme="light"] .question-block__back {
  border-color: #E4E4E7;
  color: #6B6B80;
}

html[data-theme="light"] .question-block__back:hover,
html[data-theme="light"] .question-block__back:focus-visible {
  color: #0F0F11;
  border-color: #ADADBC;
  background: #F5F5F5;
}

html[data-theme="light"] .question-block__progress {
  color: #9898A8;
}

html[data-theme="light"] .question-block__progress-bar {
  background: #E4E4E7;
}

html[data-theme="light"] .question-block__text {
  color: #0F0F11;
}

html[data-theme="light"] .option-btn {
  background: #FFFFFF;
  border-color: #D4D4D9;
  color: #3D3D4E;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

html[data-theme="light"] .option-btn:hover,
html[data-theme="light"] .option-btn:focus-visible {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.03);
  color: #0F0F11;
}

html[data-theme="light"] .option-btn--selected {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

html[data-theme="light"] .option-btn--other {
  color: #9898A8;
}

html[data-theme="light"] .option-other-input,
html[data-theme="light"] .option-text-input {
  background: #FFFFFF;
  border-color: var(--clr-primary);
  color: #0F0F11;
}

html[data-theme="light"] .questions__summary {
  background: #F7F7F8;
  border-color: #E4E4E7;
}

html[data-theme="light"] .questions__summary-q {
  color: #9898A8;
}

/* ── Loader / error ── */
html[data-theme="light"] .error-message {
  background: rgba(192,57,43,0.06);
}

/* ── Solution deck ── */
html[data-theme="light"] .solution__proposal {
  background: #FFFFFF;
  border-color: #E4E4E7;
  box-shadow: var(--shadow-sm);
}

html[data-theme="light"] .solution__proposal-lead {
  color: #4A4A5A;
}

html[data-theme="light"] .solution__proposal-build-label {
  color: #6B6B80;
}

html[data-theme="light"] .solution__proposal-build-original {
  color: #ADADBC;
  text-decoration-color: #ADADBC;
}

html[data-theme="light"] .solution__proposal-offer-expiry {
  color: #9898A8;
}

html[data-theme="light"] .solution__proposal-ownership {
  color: #6B6B80;
}

html[data-theme="light"] .solution__proposal-assumptions {
  background: #F7F7F8;
  border-color: #D4D4D9;
  color: #6B6B80;
}

html[data-theme="light"] .solution__proposal-prompt {
  color: #3D3D4E;
}

html[data-theme="light"] .solution__proposal-micro {
  color: #9898A8;
}

html[data-theme="light"] .solution__proposal-plan {
  color: #9898A8;
  border-color: #E4E4E7;
}

html[data-theme="light"] .solution__proposal-plan:hover,
html[data-theme="light"] .solution__proposal-plan:focus-visible {
  color: #6B6B80;
  border-color: #ADADBC;
}

html[data-theme="light"] .sol-deck__tile {
  background: #FFFFFF;
  border-color: #E4E4E7;
  color: #0F0F11;
  box-shadow: var(--shadow-sm);
}

html[data-theme="light"] .sol-deck__tile:hover {
  border-color: rgba(232,87,42,0.30);
  background: #FAFAFA;
  box-shadow: var(--shadow-md);
}

html[data-theme="light"] .sol-deck__tile--active {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.03);
}

html[data-theme="light"] .sol-deck__tile-title {
  color: #0F0F11;
}

html[data-theme="light"] .sol-deck__tile-hint {
  color: #9898A8;
}

html[data-theme="light"] .sol-stamp {
  background: rgba(232,87,42,0.08);
  border-color: rgba(232,87,42,0.20);
}

html[data-theme="light"] .sol-deck__stage {
  background: #FFFFFF;
  border-color: #E4E4E7;
  box-shadow: var(--shadow-md);
}

html[data-theme="light"] .sol-deck__stage-header {
  border-bottom-color: #E4E4E7;
}

html[data-theme="light"] .sol-deck__stage-title {
  color: #0F0F11;
}

html[data-theme="light"] .sol-deck__stage-close {
  border-color: #E4E4E7;
  color: #9898A8;
}

html[data-theme="light"] .sol-deck__stage-close:hover {
  background: rgba(232,87,42,0.06);
  border-color: rgba(232,87,42,0.30);
  color: var(--clr-primary);
}

html[data-theme="light"] .sol-deck__overlay--open {
  background: #FFFFFF;
}

/* ── Solution panels ── */
html[data-theme="light"] .solution__reflection {
  color: #3D3D4E;
}

html[data-theme="light"] .solution__how-steps li {
  background: #F7F7F8;
  border-color: #E4E4E7;
  color: #3D3D4E;
}

html[data-theme="light"] .req__block {
  background: #F7F7F8;
  border-color: #E4E4E7;
}

html[data-theme="light"] .req__problem {
  color: #3D3D4E;
}

html[data-theme="light"] .req__row {
  background: #FFFFFF;
  border-color: #E4E4E7;
}

html[data-theme="light"] .req__answer {
  color: #0F0F11;
}

html[data-theme="light"] .demo__block--before {
  border-color: rgba(232,87,42,0.20);
  background: rgba(232,87,42,0.03);
}

html[data-theme="light"] .demo__block--after {
  border-color: rgba(26,158,106,0.20);
  background: rgba(26,158,106,0.03);
}

html[data-theme="light"] .demo__content {
  color: #3D3D4E;
}

html[data-theme="light"] .demo__divider::before,
html[data-theme="light"] .demo__divider::after {
  background: #E4E4E7;
}

html[data-theme="light"] .demo__divider-text {
  color: #9898A8;
}

html[data-theme="light"] .solution__investment {
  background: #F7F7F8;
  border-color: #E4E4E7;
}

html[data-theme="light"] .solution__investment-row {
  border-bottom-color: #E4E4E7;
}

html[data-theme="light"] .solution__investment-label {
  color: #6B6B80;
}

html[data-theme="light"] .solution__investment-value--ongoing {
  color: #3D3D4E;
}

html[data-theme="light"] .solution__investment-value--original {
  color: #ADADBC;
  text-decoration-color: #ADADBC;
}

html[data-theme="light"] .solution__investment-offer {
  color: #9898A8;
}

html[data-theme="light"] .solution__label {
  color: #9898A8;
}

html[data-theme="light"] .solution__problem-summary {
  color: #3D3D4E;
}

html[data-theme="light"] .solution__section-title {
  color: #0F0F11;
}

html[data-theme="light"] .solution__how-label {
  color: #9898A8;
}

html[data-theme="light"] .solution__roi {
  color: #9898A8;
}

html[data-theme="light"] .solution__tab-panel + .solution__tab-panel {
  border-top-color: #E4E4E7;
}

html[data-theme="light"] .solution__currency-note {
  color: #9898A8;
}

html[data-theme="light"] .solution__proposal-assumptions {
  border-color: #D4D4D9;
}

html[data-theme="light"] .solution__proposal-assumption::before {
  color: var(--clr-primary);
}

/* ── Next steps ── */
html[data-theme="light"] .next__notice {
  background: rgba(232,87,42,0.04);
  border-color: rgba(232,87,42,0.12);
  color: #4A4A5A;
}

html[data-theme="light"] .next__step {
  border-bottom-color: #E4E4E7;
}

html[data-theme="light"] .next__step-title {
  color: #0F0F11;
}

html[data-theme="light"] .next__step-desc {
  color: #6B6B80;
}

html[data-theme="light"] .next__cta-row {
  border-top-color: #E4E4E7;
}

html[data-theme="light"] .next__cta--decline {
  color: #9898A8;
  border-color: #E4E4E7;
}

html[data-theme="light"] .next__cta--decline:hover,
html[data-theme="light"] .next__cta--decline:focus-visible {
  color: #4A4A5A;
  border-color: #ADADBC;
}

/* ── Think scene ── */
html[data-theme="light"] .think-scene__label {
  color: #9898A8;
}

html[data-theme="light"] .reflection-teaser__text {
  color: #3D3D4E;
}

html[data-theme="light"] .questions__title--accent {
  color: var(--clr-primary);
}

/* ── Contact ── */
html[data-theme="light"] .contact__heading {
  color: #0F0F11;
}

html[data-theme="light"] .contact__subheading {
  color: #6B6B80;
}

html[data-theme="light"] .contact__label {
  color: #6B6B80;
}

html[data-theme="light"] .contact__input {
  background: #FFFFFF;
  border-color: #D4D4D9;
  color: #0F0F11;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

html[data-theme="light"] .contact__input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,87,42,0.12);
}

html[data-theme="light"] .contact__input::placeholder {
  color: #9898A8;
}

html[data-theme="light"] .contact__consent-label {
  color: #6B6B80;
}

/* ── Thank you ── */
html[data-theme="light"] .thankyou__heading {
  color: #0F0F11;
}

html[data-theme="light"] .thankyou__message {
  color: #6B6B80;
}

/* ── Modals ── */
html[data-theme="light"] .modal__backdrop {
  background: rgba(15,15,17,0.50);
}

html[data-theme="light"] .modal__box {
  background: #FFFFFF;
  border-color: #E4E4E7;
  box-shadow: var(--shadow-lg);
}

html[data-theme="light"] .modal__message {
  color: #6B6B80;
}

html[data-theme="light"] .broad-modal__title {
  color: #0F0F11;
}

html[data-theme="light"] .broad-modal__examples-label {
  color: #9898A8;
}

html[data-theme="light"] .broad-modal__example-btn {
  background: #F7F7F8;
  border-color: #E4E4E7;
  color: #3D3D4E;
}

html[data-theme="light"] .broad-modal__example-btn:hover {
  border-color: rgba(232,87,42,0.35);
  background: rgba(232,87,42,0.04);
}

/* ── Too-vague ── */
html[data-theme="light"] .too-vague {
  background: rgba(232,87,42,0.04);
  border-top-color: rgba(232,87,42,0.15);
}

html[data-theme="light"] .too-vague__message {
  color: #3D3D4E;
}

html[data-theme="light"] .too-vague__suggestion-btn {
  background: #FFFFFF;
  border-color: rgba(232,87,42,0.25);
  color: #3D3D4E;
}

html[data-theme="light"] .too-vague__suggestion-btn:hover {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.04);
}

/* ── Decline modal ── */
html[data-theme="light"] .decline-modal__backdrop {
  background: rgba(15,15,17,0.50);
}

html[data-theme="light"] .decline-modal__sheet {
  background: #FFFFFF;
  border-color: #E4E4E7;
}

html[data-theme="light"] .decline-modal__title {
  color: #0F0F11;
}

html[data-theme="light"] .decline-modal__close {
  border-color: #E4E4E7;
  color: #9898A8;
}

html[data-theme="light"] .decline-modal__close:hover {
  background: rgba(232,87,42,0.06);
  color: var(--clr-primary);
}

html[data-theme="light"] .decline-feedback__lead {
  color: #6B6B80;
}

html[data-theme="light"] .decline-feedback__option {
  background: #FFFFFF;
  border-color: #E4E4E7;
  color: #3D3D4E;
}

html[data-theme="light"] .decline-feedback__option:hover,
html[data-theme="light"] .decline-feedback__option:focus-visible {
  border-color: rgba(232,87,42,0.30);
}

html[data-theme="light"] .decline-feedback__option--selected {
  border-color: var(--clr-primary);
  background: rgba(232,87,42,0.05);
  color: #0F0F11;
}

html[data-theme="light"] .decline-feedback__option-icon {
  background: rgba(232,87,42,0.08);
}

html[data-theme="light"] .decline-feedback__text-label {
  color: #6B6B80;
}

html[data-theme="light"] .decline-feedback__text {
  background: #FFFFFF;
  border-color: #D4D4D9;
  color: #0F0F11;
}

html[data-theme="light"] .decline-feedback__text::placeholder {
  color: #9898A8;
}

html[data-theme="light"] .decline-feedback__text:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 2px rgba(232,87,42,0.12);
}

html[data-theme="light"] .decline-feedback__thanks {
  background: rgba(26,158,106,0.06);
  border-color: rgba(26,158,106,0.18);
}

html[data-theme="light"] .decline-feedback__thanks p {
  color: #3D3D4E;
}

/* ── Cookie bar ── */
html[data-theme="light"] .cookie-bar {
  background: #FFFFFF;
  border-color: #E4E4E7;
  box-shadow: var(--shadow-md);
}

html[data-theme="light"] .cookie-bar__text {
  color: #6B6B80;
}

html[data-theme="light"] .cookie-bar__btn {
  background: #0F0F11;
  border-color: #0F0F11;
  color: #fff;
}

html[data-theme="light"] .cookie-bar__btn:hover {
  background: #2A2A35;
}

/* ── Error messages ── */
html[data-theme="light"] .error-message__text {
  color: var(--clr-error);
}

/* ── Ghost buttons in light mode ── */
html[data-theme="light"] .btn--ghost {
  color: #6B6B80;
  border-color: #D4D4D9;
}

html[data-theme="light"] .btn--ghost:hover,
html[data-theme="light"] .btn--ghost:focus-visible {
  color: #0F0F11;
  border-color: #6B6B80;
}

html[data-theme="light"] .btn--outline-primary {
  background: #FFFFFF;
}

/* ─── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .step--active { animation: none; opacity: 1; }
  .step--exit   { animation: none; }

  .loader__dot  { animation: none; opacity: 1; }

  .btn,
  .btn--primary,
  .btn--ghost { transition: none; }

  .sol-deck__tile,
  .sol-deck__stage,
  .sol-stamp,
  .sol-deck__stage-close { transition: none; }

  .sol-deck__tile:hover { transform: none; }
  .sol-deck__panel { animation: none; }

  .examples__card { transition: none; }
  .steps__item    { transition: none; }
}
