/* ========================================================================
   Manufacturing LP — mobile-first, desktop from 900px
   Design tokens sourced from Figma node 559:4821
   ======================================================================== */

:root {
  --purple-dark: #39045b;
  --purple: #7f06c3;
  --purple-light: #d19aff;
  --lime: #adf45d;
  --lime-dark: #459904;
  --coral: #ff746c;
  --red-dark: #9b001b;
  --yellow: #ffc900;
  --black: #191919;
  --text: #191919;
  --text-muted: rgba(25, 25, 25, 0.75);
  --border: #cecece;
  --gray-mid: #aeaeae;
  --gray-bg: #f6f6f6;
  --card-dark: #191919;
  --font: 'Barlow', system-ui, -apple-system, sans-serif;
  --container: 1280px;
  --gutter: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.text-purple { color: var(--purple); }
.text-lime { color: var(--lime); }

.section-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--black);
  margin: 0 0 24px;
}

/* ========================================================================
   NAVBAR
   ======================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  min-height: 64px;
  display: flex;
  align-items: center;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.navbar__brand { display: inline-flex; }
.navbar__logo { height: 32px; width: auto; }
.hamburger {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform .2s, opacity .2s;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a:not(.btn) {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--pill {
  background: var(--black);
  color: #fff;
  padding: 12px 16px 12px 24px;
  border-radius: 63px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.18px;
  gap: 10px;
  line-height: 1.3;
}
.btn--pill .btn__caret { width: 26px; height: 26px; }
.btn--submit {
  background: var(--purple);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  letter-spacing: -0.2px;
}
.form-wrap--manufacturing .btn--submit { background: #000; }
.form-wrap--manufacturing .form__input:focus,
.form-wrap--manufacturing .form__select:focus { box-shadow: 0 0 0 2px #000; }

/* Hide the desktop nav CTA on mobile, hide the hamburger on desktop */
.navbar .btn--pill { display: none; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
  background: #fff;
}
.hero__green-panel {
  display: none;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero__label {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #39045b, #7f06c3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1.6px;
  color: var(--black);
}
.hero__subtitle {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(25,25,25,0.75);
  letter-spacing: -0.34px;
}
.hero__clients { margin-top: 8px; }
.hero__clients-label {
  margin: 0 0 16px;
  font-weight: 600;
  color: rgba(0,0,0,.7);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.2px;
}
.hero__clients-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: center;
}
.hero__client-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: .75;
  filter: grayscale(1);
}
.hero__client-logo--basf    { height: 14px; }
.hero__client-logo--pepsico { height: 22px; }

/* Hero form card */
.hero__right {
  width: 100%;
}

/* ========================================================================
   FORM
   ======================================================================== */
/* Form container — no frame; sits directly on hero panel gradient */
.form-wrap { display: block; }

.form {
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 18px 6px 7.9px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form__header { display: flex; flex-direction: column; gap: 16px; }
.form__title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #000;
  line-height: 1.15;
}
.form__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  color: rgba(0,0,0,.85);
  font-weight: 500;
}
.form__fields { display: flex; flex-direction: column; gap: 24px; }
.form__row { display: flex; flex-wrap: wrap; gap: 16px; }
.form__group {
  flex: 1 1 calc(50% - 8px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.form__group--full { flex-basis: 100%; }
.form__label {
  font-size: 12px;
  font-weight: 500;
  color: #000;
}
.form__input,
.form__select {
  width: 100%;
  height: 37px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: rgba(206,206,206,.25);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  outline: none;
  transition: box-shadow .15s;
  letter-spacing: -0.3px;
}
.form__input:focus,
.form__select:focus { box-shadow: 0 0 0 2px var(--purple); }
.form__input::placeholder { color: rgba(0,0,0,.7); letter-spacing: -.5px; }
.form__select-wrapper { position: relative; }
.form__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1l5 5 5-5' stroke='%23191919' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form__privacy {
  margin: 8px 0 0;
  font-size: 11px;
  color: rgba(0,0,0,.55);
  text-align: center;
  line-height: 1.4;
}

/* ========================================================================
   PROBLEMS
   ======================================================================== */
.problems { padding: 48px 0; background: var(--gray-bg); }
.problems__title {
  font-size: 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
  letter-spacing: -.72px;
}
.problems__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.problems-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.problems-card__chart {
  height: 230px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.problems-card__chart::before,
.problems-card__chart::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  border-top: 1px dashed rgba(0,0,0,.18);
  pointer-events: none;
  z-index: 2;
}
.problems-card__chart::before { top: 24%; }
.problems-card__chart::after  { top: 68%; }
.chart-bars {
  position: absolute;
  inset: 0 0 22px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}
.chart-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 8px;
  background: var(--gray-mid);
  opacity: .22;
  position: relative;
}
.chart-bar--gray { opacity: .55; }
.chart-bar--red {
  opacity: 1;
  background: linear-gradient(180deg, var(--red-dark), var(--coral));
  box-shadow: 0 0 22px rgba(255,116,108,.45);
}
.chart-bar__label {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.3px;
  white-space: nowrap;
}
.chart-bar__label--red { color: var(--red-dark); font-weight: 700; }
.chart-bar__label--gray { color: rgba(0,0,0,.6); font-weight: 400; }
.chart-days {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(0,0,0,.55);
  letter-spacing: -.15px;
}
.chart-days span { flex: 1; text-align: center; }

.problems-card__cards {
  position: relative;
  height: 220px;
  margin-bottom: 24px;
  overflow: hidden;
}
.salary-card {
  position: absolute;
  top: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  min-width: 0;
}
.salary-card--front {
  left: 0;
  top: 0;
  width: 49%;
  height: 100%;
  z-index: 3;
}
.salary-card--mid {
  left: 30%;
  top: 4.5%;
  width: 44.3%;
  height: 91%;
  z-index: 2;
}
.salary-card--back {
  left: 56%;
  top: 9%;
  width: 40.4%;
  height: 83%;
  z-index: 1;
}
.salary-card--dark {
  background: linear-gradient(180deg, var(--purple-dark), var(--purple));
  color: #fff;
  border-color: transparent;
}
.salary-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.salary-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 2px solid #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.salary-card--dark .salary-card__avatar { background: #d19aff; }
.salary-card:not(.salary-card--dark) .salary-card__avatar {
  background: linear-gradient(135deg, var(--gray-mid), var(--border));
  border-color: var(--border);
}
.salary-card__avatar--photo { background: transparent; }
.salary-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.salary-card__id { min-width: 0; }
.salary-card__name { font-weight: 600; font-size: 12px; line-height: 1.3; }
.salary-card__salary { font-size: 10px; opacity: .85; line-height: 1.3; }
.salary-card__loss {
  margin-top: auto;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.5px;
  line-height: 1.2;
}
.salary-card__pct {
  display: inline-block;
  font-size: 9px;
  opacity: .8;
  margin-left: 4px;
  vertical-align: middle;
}
.salary-card__annual { font-size: 9px; opacity: .6; }
.problems-card__stat {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -.36px;
}
.problems-card__stat strong { font-weight: 700; }
.problems-card__desc {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-muted);
  letter-spacing: -.3px;
}

.problems__strip {
  height: 260px;
  margin: 32px 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.problems__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.problems__mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: background-color .25s ease, border-color .25s ease;
}
.mini-card:hover { background: var(--lime); border-color: transparent; }
.mini-card--lime { background: var(--lime); border-color: transparent; }
.mini-card__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.4px;
  color: var(--black);
}
.mini-card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--black);
}

/* ========================================================================
   ASSESSMENTS
   ======================================================================== */
.assessments {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.assessments__title {
  text-align: center;
  font-size: 26px;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.2;
}
.assessments__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px var(--gutter) 12px;
  margin: 10px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%);
}
.assessments__grid::-webkit-scrollbar { display: none; }
.assessments__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: .4px;
  text-transform: uppercase;
}
.assessments__hint::before { content: '\2190'; font-size: 16px; }
.assessments__hint::after  { content: '\2192'; font-size: 16px; }
.assess-card {
  position: relative;
  flex: 0 0 260px;
  scroll-snap-align: start;
  height: 475px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 25px;
  color: #fff;
}
.assess-card--inview { background-color: #ffc900; }
.assess-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition: transform .5s ease;
  z-index: 0;
  pointer-events: none;
}
.assess-card:hover .assess-card__bg { transform: scale(1.1); }
.assess-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 45%, rgba(0,0,0,.9) 100%);
  pointer-events: none;
  z-index: 1;
}
.assess-card__logo-img,
.assess-card__role {
  position: relative;
  z-index: 2;
}
.assess-card__logo-img {
  width: auto;
  height: auto;
  max-height: 39px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.assess-card__logo-img--igrade    { max-width: 123px; }
.assess-card__logo-img--safetydna { max-width: 102px; }
.assess-card__logo-img--caliper   { max-width: 136px; }
.assess-card__logo-img--inview    { max-width: 76px; }
.assess-card__logo-img--spotlight { max-width: 124px; }
.assess-card__role {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.54px;
  line-height: 1;
  color: #fff;
}

/* ========================================================================
   RESULTS
   ======================================================================== */
.results { padding: 48px 0; background: var(--gray-bg); }
.results__title {
  font-size: 26px;
  max-width: 640px;
  margin: 0 0 32px;
}
.result-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.result-card__media {
  height: 260px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 16px;
}
.result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.result-card__media--lime { background: var(--lime); }
.result-card__media--lime img {
  object-fit: cover;
  object-position: top center;
}
.result-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.result-card__stat {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1.32px;
  margin: 0;
  line-height: 1.1;
}
.result-card__text {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.36px;
  margin: 0;
  color: var(--black);
}
.result-card__source {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -.28px;
  color: rgba(0,0,0,.55);
  margin: 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  padding: 40px 0;
}
.stat__value {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--black);
}
.stat__label {
  font-size: 14px;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
}

.testimonial {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  color: #fff;
  background: #191919;
  backdrop-filter: blur(35.25px);
  -webkit-backdrop-filter: blur(35.25px);
}
.testimonial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9) 25%, rgba(0,0,0,.3) 85%);
  z-index: 2;
  pointer-events: none;
}
.testimonial__slider { position: absolute; inset: 0; }
.testimonial__slide {
  display: flex;
  align-items: center;
  padding: 32px 24px;
}
.testimonial__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.testimonial__body {
  position: relative;
  z-index: 3;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__quote-mark {
  width: 32px;
  height: auto;
  display: block;
}
.testimonial__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.3px;
}

/* ========================================================================
   STEPS
   ======================================================================== */
.steps {
  background: #191919;
  padding: 48px 0;
  color: #fff;
  border-bottom: 1px solid #585858;
}
.steps__title {
  text-align: center;
  color: #fff;
  font-size: 26px;
  letter-spacing: -.78px;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto 32px;
}
.steps__grid { display: flex; flex-direction: column; gap: 16px; }
.steps__hero {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--lime);
  backdrop-filter: blur(35.25px);
  -webkit-backdrop-filter: blur(35.25px);
}
.steps__slider { position: absolute; inset: 0; }
.steps__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.steps__row { display: flex; flex-direction: column; gap: 16px; }
.step-card {
  background: var(--card-dark);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.step-card--yellow { background: linear-gradient(130.07deg, rgba(255,201,0,.12) 0%, rgba(255,201,0,0) 45%), #191919; }
.step-card--purple { background: linear-gradient(151.45deg, rgba(153,47,255,.18) 0%, rgba(153,47,255,0) 45%), #191919; }
.step-card--lime   { background: linear-gradient(165.73deg, rgba(170,248,87,.20) 0%, rgba(170,248,87,0) 45%), #191919; }
.step-card__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: #191919;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 32px;
  margin: 0;
}
.step-card--purple .step-card__num { background: var(--purple); color: #fff; }
.step-card--lime .step-card__num { background: var(--lime); color: #191919; }
.step-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
}
.step-card__body {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ========================================================================
   CTA FINAL
   ======================================================================== */
.cta-final {
  padding: 48px 0;
  background: var(--gray-bg);
  position: relative;
}
.cta-final__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cta-final__headline {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.52px;
  color: var(--black);
  margin: 0 0 24px;
}
.cta-final__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0,0,0,.75);
  letter-spacing: -0.32px;
  margin: 0 0 24px;
}
.cta-final__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 543 / 311;
  background: #191919;
}
.cta-final__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.cta-final__panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-final__panel-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.cta-final__panel-body {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: -0.1px;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: #fff;
  color: var(--black);
  padding: 40px 0 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.28px;
}
.footer__inner { display: flex; flex-direction: column; gap: 45px; }
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 45px 0;
}
.footer__logo { width: 160px; height: auto; }
.footer__social { display: flex; gap: 20px; }
.footer__social img { width: 26px; height: 26px; }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 45px 0;
  font-size: 14px;
  align-items: center;
  text-align: center;
}
.footer__copyright { margin: 0; color: var(--black); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: center;
}
.footer__links a {
  color: var(--black);
  text-decoration: none;
}
.footer__dev { color: var(--black); display: inline-flex; align-items: center; gap: 8px; }
.footer__dev a { color: var(--black); text-decoration: none; display: inline-flex; align-items: center; }
.footer__dev-logo { height: 20px; width: auto; display: block; }

/* ========================================================================
   ANIMATIONS (initial state; animations.v3.js reveals them)
   ======================================================================== */
.anim-fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }
.anim-fade-right { opacity: 0; transform: translateX(-20px); transition: opacity .6s ease, transform .6s ease; }
.anim-fade-right.visible { opacity: 1; transform: translateX(0); }
.anim-scale-in { opacity: 0; transform: scale(.95); transition: opacity .6s ease, transform .6s ease; }
.anim-scale-in.visible { opacity: 1; transform: scale(1); }

/* ========================================================================
   SLIDER (shared: testimonial + steps hero)
   ======================================================================== */
.slider { position: relative; width: 100%; height: 100%; min-height: inherit; }
.slider__stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
  pointer-events: none;
}
.slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.slider__bars {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider__bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.slider__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: #fff;
  border-radius: inherit;
}
.slider__bar.is-past::after { width: 100%; }
.slider__bar.is-active::after {
  width: 100%;
  animation: slider-fill var(--slider-interval, 6000ms) linear forwards;
}
/* Steps slider colors: lime active bar */
.steps__slider .slider__bar { background: rgba(255,255,255,.4); }
.steps__slider .slider__bar::after { background: var(--lime); }

@keyframes slider-fill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ========================================================================
   DESKTOP (>= 900px)
   ======================================================================== */
@media (min-width: 900px) {
  :root { --gutter: 40px; }

  .section-title { font-size: 40px; letter-spacing: -1.2px; }

  .navbar { min-height: 84px; }
  .navbar__inner { padding-top: 11px; padding-bottom: 11px; }
  .navbar__logo { height: 36px; }
  .hamburger { display: none; }
  .navbar .btn--pill { display: inline-flex; }

  /* Hero */
  .hero { padding: 60px 0 80px; }
  .hero__green-panel {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(180deg, #2f8a12 0%, #7bc934 100%);
    pointer-events: none;
    z-index: 0;
  }
  .hero__wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    position: relative;
    z-index: 1;
  }
  .hero__left { flex: 1 1 55%; padding-top: 60px; }
  .hero__right { flex: 1 1 45%; }
  .hero__label { font-size: 18px; letter-spacing: -0.36px; }
  .hero__title {
    font-size: 54px;
    letter-spacing: -2.16px;
  }
  .hero__subtitle { font-size: 20px; letter-spacing: -0.4px; }
  .hero__clients-strip { gap: 36px; }
  .hero__client-logo { height: 34px; }
  .hero__client-logo--basf    { height: 16px; }
  .hero__client-logo--pepsico { height: 26px; }

  .form { padding: 40px 32px; gap: 24px; }
  .form__title { font-size: 24px; }
  .form__group { flex: 1 1 calc(50% - 8px); }
  .form__group[style*="100%"] { flex: 1 1 100% !important; }

  /* Problems */
  .problems { padding: 96px 0; }
  .problems__title { font-size: 40px; max-width: 720px; margin-bottom: 48px; letter-spacing: -1.2px; }
  .problems__row { flex-direction: row; gap: 24px; }
  .problems-card { flex: 1; min-height: 495px; padding: 31px; }
  .problems-card__chart { height: 250px; margin-bottom: 40px; }
  .chart-bars { inset: 0 0 26px 0; gap: 10px; }
  .chart-bar { border-radius: 11px; }
  .chart-bar__label { top: -26px; font-size: 20px; letter-spacing: -.4px; }
  .chart-days { font-size: 11px; }
  .problems-card__cards { height: 290px; margin-bottom: 40px; }
  .salary-card { padding: 14px 12px; border-radius: 14px; }
  .salary-card__avatar { width: 44px; height: 44px; }
  .salary-card__name { font-size: 15px; }
  .salary-card__salary { font-size: 12px; }
  .salary-card__loss { font-size: 32px; letter-spacing: -.6px; }
  .salary-card__pct { font-size: 10px; }
  .salary-card__annual { font-size: 10px; }
  .problems-card__stat { font-size: 26px; letter-spacing: -.79px; }
  .problems-card__desc { font-size: 18px; letter-spacing: -.36px; }
  .problems__strip { height: 389px; margin: 48px 0; }
  .problems__mini { flex-direction: row; gap: 24px; }
  .mini-card { flex: 1; padding: 32px 32px 54px; border-radius: 16px; }
  .mini-card__title { font-size: 24px; margin-bottom: 20px; }
  .mini-card__body { font-size: 18px; letter-spacing: -.18px; }

  /* Assessments */
  .assessments { padding: 100px 0; }
  .assessments__title { font-size: 40px; max-width: 900px; margin-bottom: 60px; }
  .assessments__grid {
    display: grid;
    grid-template-columns: repeat(5, 216px);
    justify-content: center;
    gap: 16px;
    overflow: visible;
    padding: 0;
    margin: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .assess-card { flex: 0 0 auto; height: 571px; padding: 20px 20px 25px; }
  .assessments__hint { display: none; }
  .assess-card__bg { background-position: center; }
  .steps__slide img { object-position: center center; }

  /* Results */
  .results { padding: 96px 0; }
  .results__title { font-size: 40px; max-width: 720px; margin-bottom: 40px; }
  .result-card {
    flex-direction: row;
    height: 422px;
    min-height: 0;
    align-items: stretch;
    margin-bottom: 24px;
    overflow: hidden;
  }
  .result-card--reverse { flex-direction: row-reverse; }
  .result-card__media {
    height: auto;
    flex: 1 1 0;
    min-width: 0;
  }
  .result-card__body {
    flex: 0 0 587px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
  .result-card__stat { font-size: 54px; letter-spacing: -2.16px; }
  .result-card__text { font-size: 24px; letter-spacing: -.48px; }
  .result-card__source { font-size: 18px; letter-spacing: -.36px; }

  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 80px 0;
    gap: 32px;
  }
  .stat__value { font-size: 64px; letter-spacing: -1.28px; }
  .stat__label { font-size: 18px; letter-spacing: -.36px; }

  .testimonial { min-height: 498px; }
  .testimonial__slide { padding: 60px; }
  .testimonial__text { font-size: 24px; letter-spacing: -.48px; }
  .testimonial__body { max-width: 560px; }
  .testimonial__quote-mark { width: 37px; }
  .testimonial__slider .slider__bars { left: 46px; right: 46px; bottom: 48px; gap: 18px; }
  .testimonial__slider .slider__bar { height: 2px; }

  /* Steps */
  .steps { padding: 100px 0; }
  .steps__title { font-size: 40px; letter-spacing: -1.2px; margin-bottom: 60px; }
  .steps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
  }
  .steps__hero {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: auto;
    min-height: 668px;
  }
  .steps__slider .slider__bars { left: 26px; right: 26px; bottom: 29px; gap: 10px; }
  .steps__slider .slider__bar { height: 5px; }
  .step-card--yellow {
    grid-column: 2;
    grid-row: 1;
  }
  .steps__row {
    grid-column: 2;
    grid-row: 2;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
  }
  .step-card--purple, .step-card--lime { flex: 1; }

  /* CTA final */
  .cta-final { padding: 100px 0; }
  .cta-final__wrapper { flex-direction: row; align-items: flex-start; gap: 48px; }
  .cta-final__left { flex: 1 1 45%; }
  .cta-final__right { flex: 1 1 45%; }
  .cta-final__headline { font-size: 32px; letter-spacing: -0.64px; margin-bottom: 24px; }
  .cta-final__subtitle { font-size: 18px; letter-spacing: -0.36px; }
  .cta-final__image { margin-top: 32px; aspect-ratio: 543 / 311; }
  .cta-final__panel { padding: 40px 32px; }

  /* Footer */
  .footer { padding: 60px 0 40px; }
  .footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer__bottom { text-align: left; align-items: stretch; }
  .footer__logo { width: 185px; }
  .footer__inner { gap: 77px; }
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .footer__copyright { justify-self: start; }
  .footer__links { flex-wrap: nowrap; justify-self: center; }
  .footer__dev { justify-self: end; }
}

@media (min-width: 1200px) {
  .hero__green-panel { width: 30%; }
  .hero__title { font-size: 60px; }
}

/* ========================================================================
   FORM — searchable selects, phone picker, consent block
   (fields mirror mid-market-awareness for parity)
   ======================================================================== */
.form__searchable { position: relative; }
.form__searchable-input { width: 100%; cursor: pointer; }
.form__searchable-dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 4px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.form__searchable-dropdown.open { display: block; }
.form__searchable-option {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #191919;
}
.form__searchable-option:hover,
.form__searchable-option.highlighted { background: #f0edff; }
.form__searchable-option.hidden { display: none; }

.form__phone-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 37px;
  border-radius: 10px;
  background: rgba(206,206,206,.25);
  padding: 0 12px;
  transition: box-shadow .15s, background .15s;
}
.form__phone-row:focus-within {
  box-shadow: 0 0 0 2px var(--purple);
  background: #fff;
}
.form__phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  color: #191919;
  user-select: none;
  cursor: pointer;
  padding: 4px 6px 4px 2px;
  margin-left: -2px;
  border-radius: 6px;
  transition: background .15s;
}
.form__phone-prefix:hover,
.form__phone-prefix:focus-visible {
  background: rgba(127,6,195,.08);
  outline: none;
}
.form__phone-flag {
  display: block;
  width: 20px; height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.form__phone-caret {
  font-size: 16px;
  line-height: 1;
  color: rgba(0,0,0,.5);
  transition: transform .15s;
  margin-left: 2px;
}
.form__phone-prefix[aria-expanded="true"] .form__phone-caret { transform: rotate(180deg); }
.form__input--phone {
  flex: 1;
  height: auto;
  border-radius: 0;
  background: transparent !important;
  padding: 0;
  box-shadow: none !important;
}
.form__input--phone:focus { box-shadow: none !important; background: transparent !important; }

.form__phone-dropdown {
  position: absolute;
  z-index: 100;
  top: calc(100% + 6px);
  left: 0;
  width: min(340px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  overflow: hidden;
}
.form__phone-search {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  background: #fafafa;
}
.form__phone-search:focus {
  background: #fff;
  border-bottom-color: var(--purple);
}
.form__phone-list { max-height: 280px; overflow-y: auto; }
.form__phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
}
.form__phone-item:hover,
.form__phone-item.is-active { background: rgba(127,6,195,.10); }
.form__phone-item img {
  width: 20px; height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.form__phone-item-name {
  flex: 1;
  color: #191919;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form__phone-item-dial {
  color: #666;
  font-size: 12px;
  flex-shrink: 0;
}

.form__consent {
  padding: 16px 18px;
  border: 1.5px solid var(--purple);
  border-radius: 10px;
  background: rgba(127,6,195,.04);
}
.form__consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form__consent-checkbox {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin: 2px 0 0 0;
  accent-color: var(--purple);
  cursor: pointer;
}
.form__consent-checkbox:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 3px;
}
.form__consent-copy {
  font-size: 13px;
  line-height: 1.5;
  color: #191919;
  font-weight: 400;
}
.form__consent-copy a {
  color: var(--purple);
  text-decoration: underline;
  font-weight: 500;
}
.form__consent-links {
  margin: 10px 0 0 32px;
  font-size: 12px;
  color: #8a8a8a;
}
.form__consent-links a {
  color: var(--purple);
  text-decoration: underline;
  font-weight: 500;
}
