:root {
  color-scheme: light;
  --brand-ink: oklch(19.9% 0.0226 53.5);
  --brand-brown: oklch(28.21% 0.0382 61.9);
  --brand-teal: oklch(75.87% 0.1346 177.6);
  --brand-coral: oklch(68.48% 0.2066 34.7);
  --brand-amber: oklch(82.82% 0.1488 74.6);
  --brand-paper: oklch(98.21% 0.0141 74.4);
  --ink: var(--brand-ink);
  --ink-soft: oklch(39% 0.032 62);
  --muted: oklch(56% 0.026 62);
  --cloud: oklch(99.1% 0.004 74);
  --mist: oklch(96.5% 0.01 74);
  --panel: oklch(99.7% 0.004 74);
  --slate: var(--brand-brown);
  --line: oklch(89% 0.012 74);
  --line-dark: oklch(42% 0.031 62);
  --blue: var(--brand-teal);
  --blue-deep: var(--brand-brown);
  --blue-soft: oklch(95.5% 0.035 178);
  --violet: var(--brand-coral);
  --teal: var(--brand-teal);
  --teal-deep: oklch(42% 0.105 178);
  --orange: var(--brand-coral);
  --amber: var(--brand-amber);
  --green: var(--brand-teal);
  --max: 1240px;
  --shadow-panel: 0 26px 58px color-mix(in oklch, var(--ink) 9%, transparent);
  --shadow-lift: 0 14px 30px color-mix(in oklch, var(--ink) 7%, transparent);
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--panel) 0%, var(--cloud) 42%, var(--mist) 100%);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 12px max(40px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid color-mix(in oklch, var(--line) 70%, transparent);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.site-header[data-scrolled] {
  background: color-mix(in oklch, var(--panel) 96%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  width: 174px;
  height: 54px;
  overflow: hidden;
}

.brand img {
  width: 170px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 11px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: background 170ms ease, color 170ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: color-mix(in oklch, var(--blue) 9%, transparent);
  color: var(--blue-deep);
  outline: none;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.primary,
.header-cta {
  background: var(--teal-deep);
  color: var(--panel);
  box-shadow: 0 14px 30px color-mix(in oklch, var(--teal-deep) 18%, transparent);
}

.ghost {
  border-color: color-mix(in oklch, var(--line) 86%, transparent);
  background: color-mix(in oklch, var(--panel) 78%, transparent);
  color: var(--ink);
}

.section,
.hero,
.stats-strip,
.cta-band,
.case-section,
.guarantee,
.contact,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  padding: clamp(58px, 8vw, 104px) 0 clamp(56px, 7vw, 86px);
}

.hero-prototype {
  grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.22fr);
  min-height: 700px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  right: max(-6vw, -72px);
  bottom: 72px;
  width: min(56vw, 760px);
  height: 300px;
  border-radius: 42px;
  background: var(--teal);
  transform: rotate(-18deg);
}

.hero::after {
  right: min(18vw, 260px);
  top: 18px;
  width: min(34vw, 470px);
  height: 210px;
  border-radius: 34px;
  background: var(--orange);
  transform: rotate(62deg);
  opacity: 0.9;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  min-width: 0;
}

.hero > *,
.intro > *,
.stepper > *,
.sectors > *,
.case-section > *,
.service-row > *,
.guarantee > *,
.contact > * {
  position: relative;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Montserrat, system-ui, sans-serif;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--blue-deep);
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  overflow-wrap: normal;
  hyphens: manual;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1;
  font-weight: 800;
}

h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.58;
}

.hero-subtitle {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.08;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 650px;
}

.hero-note span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid color-mix(in oklch, var(--line) 80%, transparent);
  border-radius: 8px;
  background: color-mix(in oklch, var(--panel) 76%, transparent);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.hero-brief {
  min-height: 438px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -18px;
  margin-bottom: clamp(48px, 7vw, 88px);
  border-block: 0;
}

.stats-strip div {
  min-height: 176px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-content: start;
  align-items: start;
  gap: 12px;
  padding: 26px 24px;
  border: 1px solid color-mix(in oklch, var(--line) 90%, transparent);
  border-radius: 18px;
  background: var(--panel);
  text-align: left;
  box-shadow: var(--shadow-lift);
}

.stats-strip div:first-child {
  border-inline-start: 1px solid color-mix(in oklch, var(--line) 90%, transparent);
}

.stats-strip strong {
  color: var(--blue-deep);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.15;
}

.stats-strip span {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.stat-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: color-mix(in oklch, var(--blue) 17%, var(--panel));
  color: var(--teal-deep) !important;
  font-size: 16px !important;
  font-weight: 900;
  line-height: 1;
}

.hero-console {
  position: relative;
  z-index: 1;
  min-height: 452px;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--blue) 18%, var(--line));
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 30px 80px color-mix(in oklch, var(--blue-deep) 15%, transparent);
  contain: paint;
}

.hero-console::before {
  content: none;
}

.hero-console::after {
  content: none;
}

.booking-title {
  padding: 28px 36px;
  color: var(--blue-deep);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 850;
  line-height: 1.08;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.86fr) minmax(240px, 1.14fr) minmax(172px, 0.84fr);
  min-height: 340px;
  border-top: 1px solid var(--line);
}

.booking-profile,
.booking-calendar,
.booking-times {
  padding: 28px 30px;
}

.booking-profile,
.booking-calendar {
  border-right: 1px solid var(--line);
}

.booking-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.booking-profile span,
.booking-calendar span,
.booking-times span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.booking-profile h3 {
  margin: 12px 0 18px;
  color: var(--blue-deep);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 21px;
  line-height: 1.16;
}

.booking-profile ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-profile li {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.booking-calendar strong {
  display: block;
  margin: 16px 0 18px;
  color: var(--blue-deep);
  font-size: 15px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.calendar-grid b,
.calendar-grid i {
  display: grid;
  place-items: center;
  min-height: 28px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.calendar-grid i {
  color: var(--blue-deep);
}

.calendar-grid i.soft {
  background: color-mix(in oklch, var(--blue) 10%, transparent);
  color: var(--blue);
}

.calendar-grid i.active {
  background: var(--teal);
  color: var(--ink);
}

.booking-calendar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.booking-times {
  display: grid;
  align-content: start;
  gap: 10px;
}

.booking-times span {
  margin-bottom: 12px;
  color: var(--blue-deep);
}

.booking-times button {
  min-height: 44px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: color-mix(in oklch, var(--blue) 3%, var(--panel));
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.booking-times button.selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--teal);
  color: var(--ink);
  padding-inline: 14px;
}

.booking-times small {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding-inline: 10px;
  border-radius: 6px;
  background: color-mix(in oklch, var(--cloud) 20%, transparent);
  font-size: 11px;
  font-weight: 900;
}

.console-top,
.meeting-card,
.eligibility-card,
.route-map,
.deadline-strip {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px;
  color: color-mix(in oklch, var(--cloud) 76%, transparent);
  font-size: 14px;
  font-weight: 800;
}

.console-top strong {
  color: var(--cloud);
}

.meeting-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(480px, calc(100% - 56px));
  margin: 82px auto 18px;
  padding: 24px;
  border: 1px solid color-mix(in oklch, var(--cloud) 18%, transparent);
  border-radius: 14px;
  background: color-mix(in oklch, var(--panel) 94%, transparent);
  box-shadow: var(--shadow-lift);
}

.meeting-card span,
.eligibility-card span,
.deadline-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.meeting-card strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 36px;
}

.meeting-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--ink);
  font-weight: 900;
}

.eligibility-card {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(420px, calc(100% - 78px));
  margin-left: auto;
  margin-right: 28px;
  padding: 18px;
  border: 1px solid color-mix(in oklch, var(--teal) 44%, transparent);
  border-radius: 14px;
  background: color-mix(in oklch, var(--ink) 56%, transparent);
}

.eligibility-card .score {
  display: inline-grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--teal) 62%, transparent);
  border-radius: 50%;
  color: var(--teal);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 28px;
}

.eligibility-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cloud);
  font-size: 20px;
}

.route-map {
  display: grid;
  gap: 12px;
  width: min(520px, calc(100% - 56px));
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.route-map li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 62px;
  padding: 9px 14px;
  border: 1px solid color-mix(in oklch, var(--cloud) 14%, transparent);
  border-radius: 10px;
  background: color-mix(in oklch, var(--cloud) 7%, transparent);
  color: var(--cloud);
  font-weight: 800;
}

.route-map span {
  color: var(--amber);
  font-size: 13px;
}

.deadline-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(520px, calc(100% - 56px));
  margin: 26px auto 0;
}

.deadline-strip span {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 8px;
  background: color-mix(in oklch, var(--teal) 18%, transparent);
  color: color-mix(in oklch, var(--cloud) 84%, var(--teal));
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(40px, 6vw, 76px) 0;
  border-top: 0;
}

.intro h2 {
  max-width: 11ch;
  color: var(--blue-deep);
  font-size: clamp(38px, 5vw, 64px);
}

.intro-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid color-mix(in oklch, var(--line) 88%, transparent);
  border-radius: 22px;
  background: color-mix(in oklch, var(--panel) 96%, transparent);
  box-shadow: var(--shadow-lift);
}

.intro-panel p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.64;
}

.intro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.intro-list span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid color-mix(in oklch, var(--blue) 28%, var(--line));
  border-radius: 999px;
  background: color-mix(in oklch, var(--blue) 7%, var(--panel));
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 900;
}

.process-section {
  padding: clamp(48px, 7vw, 86px) 0;
}

.section-head {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--blue-deep);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
}

.stepper {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid color-mix(in oklch, var(--line) 88%, transparent);
  border-radius: 24px;
  background: color-mix(in oklch, var(--panel) 94%, transparent);
  box-shadow: var(--shadow-panel);
}

.step-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step-tab {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid color-mix(in oklch, var(--line) 86%, transparent);
  border-radius: 14px;
  background: color-mix(in oklch, var(--panel) 96%, transparent);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.step-tab:last-child {
  border-bottom: 1px solid color-mix(in oklch, var(--line) 86%, transparent);
}

.step-tab:nth-child(even) {
  background: color-mix(in oklch, var(--panel) 96%, transparent);
}

.step-tab:hover {
  background: color-mix(in oklch, var(--blue) 8%, var(--panel));
}

.step-tab:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--blue) 62%, white);
  outline-offset: -5px;
}

.step-tab.is-active {
  border-color: color-mix(in oklch, var(--blue) 40%, var(--line));
  background: color-mix(in oklch, var(--blue) 11%, var(--panel));
  color: var(--blue-deep);
  box-shadow: none;
}

.step-tab span,
.mini-process span {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: color-mix(in oklch, var(--mist) 72%, var(--panel));
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.step-tab.is-active span {
  background: var(--teal-deep);
  color: var(--panel);
}

.step-tab strong {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.2;
}

.step-panels {
  min-width: 0;
}

.step-panel {
  display: none;
}

.step-panel[hidden] {
  display: none !important;
}

.step-panel.is-active {
  display: grid;
  gap: 20px;
  align-content: start;
  min-height: 100%;
  padding: 0;
}

.step-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.map-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--blue) 18%, var(--line));
  border-radius: 22px;
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--blue-soft) 66%, var(--panel)) 0%, var(--panel) 64%),
    var(--panel);
  box-shadow: 0 20px 52px color-mix(in oklch, var(--blue-deep) 8%, transparent);
}

.map-visual.compact {
  min-height: 330px;
}

.map-visual.compact .path-a {
  left: 76px;
  top: 176px;
  width: 500px;
}

.map-visual.compact .path-b {
  left: 88px;
  top: 212px;
  width: 380px;
}

.map-visual.compact .path-c {
  right: 68px;
  top: 86px;
  width: 250px;
}

.step-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid color-mix(in oklch, var(--line) 84%, transparent);
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in oklch, var(--panel) 98%, transparent);
}

.step-benefits span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-inline-start: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  color: var(--ink-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.step-benefits span:first-child {
  border-inline-start: 0;
}

.process-copy-visual {
  display: grid;
  align-content: start;
  gap: 26px;
}

.process-copy-visual p,
.service-copy p,
.sector-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.cta-band {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid color-mix(in oklch, var(--blue) 22%, var(--line));
  border-radius: 24px;
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--blue) 11%, transparent), transparent 54%),
    color-mix(in oklch, var(--panel) 96%, transparent);
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.cta-band h2 {
  max-width: 820px;
  color: var(--blue-deep);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.06;
}

.cta-band p,
.cta-band span {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.56;
}

.cta-band .button {
  margin-top: 8px;
}

.map-label {
  position: absolute;
  left: 28px;
  top: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform-origin: left center;
}

.path-a {
  left: 90px;
  top: 380px;
  width: 560px;
  transform: rotate(-23deg);
}

.path-b {
  left: 128px;
  top: 436px;
  width: 410px;
  transform: rotate(14deg);
  opacity: 0.7;
}

.path-c {
  right: 72px;
  top: 230px;
  width: 320px;
  transform: rotate(64deg);
  opacity: 0.55;
}

.map-node {
  position: absolute;
  width: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--panel);
  border: 7px solid var(--blue);
  box-shadow: 0 0 0 14px color-mix(in oklch, var(--blue) 12%, transparent);
}

.node-one {
  left: 108px;
  bottom: 172px;
}

.node-two {
  right: 160px;
  top: 210px;
}

.node-three {
  right: 104px;
  bottom: 148px;
  border-color: var(--orange);
  box-shadow: 0 0 0 14px color-mix(in oklch, var(--orange) 14%, transparent);
}

.node-four {
  left: 46%;
  top: 48%;
  border-color: var(--amber);
}

.program-ticket {
  position: absolute;
  left: 38px;
  bottom: 38px;
  width: min(330px, calc(100% - 76px));
  padding: 20px;
  border: 1px solid color-mix(in oklch, var(--blue) 18%, var(--line));
  border-radius: 14px;
  background: color-mix(in oklch, var(--panel) 94%, transparent);
  box-shadow: 0 18px 44px color-mix(in oklch, var(--blue-deep) 10%, transparent);
}

.program-ticket strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.program-ticket span {
  color: var(--muted);
  font-weight: 800;
}

.sectors {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 86px);
  padding: clamp(30px, 4.8vw, 58px);
  border: 1px solid color-mix(in oklch, var(--line) 88%, transparent);
  border-radius: 26px;
  background: color-mix(in oklch, var(--panel) 96%, transparent);
  box-shadow: var(--shadow-lift);
}

.sector-copy {
  align-self: start;
  position: static;
}

.sector-copy h2 {
  color: var(--blue-deep);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
}

.sector-copy .button {
  width: fit-content;
  margin-top: 26px;
}

.sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.sector-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid color-mix(in oklch, var(--blue) 34%, var(--line));
  border-radius: 999px;
  background: color-mix(in oklch, var(--panel) 96%, transparent);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  margin-top: clamp(48px, 7vw, 86px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  border-radius: 26px;
  background: color-mix(in oklch, var(--panel) 97%, transparent);
  color: var(--ink);
  box-shadow: var(--shadow-panel);
}

.case-image,
.case-card {
  min-height: 360px;
  border-radius: 20px;
}

.person {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 32px;
  margin: 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 15px;
  line-height: 1.45;
}

.linkedin-mark {
  position: absolute;
  left: 50%;
  bottom: 104px;
  transform: translateX(-50%);
  color: var(--teal-deep);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.case-image {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--blue) 20%, var(--line));
  background:
    radial-gradient(circle at 30% 18%, color-mix(in oklch, var(--blue) 22%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in oklch, var(--blue) 9%, var(--panel)), var(--panel));
}

.case-photo {
  position: absolute;
  left: 50%;
  top: 52px;
  width: 154px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--blue) 28%, transparent);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 30%, color-mix(in oklch, var(--amber) 44%, var(--panel)), transparent 23%),
    linear-gradient(145deg, color-mix(in oklch, var(--blue) 22%, var(--panel)), color-mix(in oklch, var(--orange) 20%, var(--panel)));
}

.case-photo span {
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--panel) 92%, transparent);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
}

.case-badge {
  position: absolute;
  right: 28px;
  top: 28px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.case-card {
  display: grid;
  align-content: center;
  padding: clamp(18px, 3vw, 32px);
  border: 0;
  background: transparent;
}

.case-card .section-kicker {
  color: var(--teal-deep);
}

.case-card h2 {
  color: var(--blue-deep);
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 800;
}

.case-amount {
  width: fit-content;
  margin-bottom: 24px;
  padding: 12px 16px;
  border: 1px solid color-mix(in oklch, var(--blue) 38%, transparent);
  border-radius: 12px;
  background: color-mix(in oklch, var(--blue) 10%, var(--panel));
  color: var(--blue-deep);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 800;
}

.case-card p {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.service-stack {
  display: grid;
  gap: 34px;
  padding: clamp(54px, 7vw, 94px) 0;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
}

.mini-process,
.document-visual,
.consortium-visual {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in oklch, var(--panel) 88%, transparent);
}

.mini-process {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
}

.mini-process strong {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.08;
}

.mini-process strong:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.document-visual,
.consortium-visual {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px color-mix(in oklch, var(--blue-deep) 8%, transparent);
}

.short-visual {
  min-height: 260px;
  margin-bottom: 22px;
}

.document-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid color-mix(in oklch, var(--line-dark) 30%, transparent);
  border-radius: 10px;
  background: var(--panel);
}

.doc-toolbar {
  position: absolute;
  left: 58px;
  right: 58px;
  top: 58px;
  height: 42px;
  border-radius: 8px;
  background: color-mix(in oklch, var(--mist) 84%, transparent);
}

.doc-lines,
.doc-lines::before,
.doc-lines::after {
  position: absolute;
  left: 58px;
  right: 110px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--line-dark) 18%, transparent);
}

.doc-lines {
  top: 144px;
}

.doc-lines::before,
.doc-lines::after {
  content: "";
  left: 0;
}

.doc-lines::before {
  top: 34px;
  right: 70px;
}

.doc-lines::after {
  top: 68px;
  right: 150px;
}

.doc-lines.short {
  top: 272px;
  right: 240px;
  background: var(--blue);
}

.doc-chip {
  position: absolute;
  right: 58px;
  bottom: 58px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
}

.consortium-visual {
  background: color-mix(in oklch, var(--blue-soft) 62%, var(--panel));
}

.partner {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow-lift);
}

.p1 {
  left: 18%;
  top: 28%;
}

.p2 {
  right: 22%;
  top: 18%;
  background: color-mix(in oklch, var(--blue) 12%, var(--panel));
}

.p3 {
  left: 48%;
  bottom: 20%;
  background: color-mix(in oklch, var(--amber) 24%, var(--panel));
}

.connector {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform-origin: left center;
}

.c1 {
  left: 28%;
  top: 43%;
  width: 300px;
  transform: rotate(-13deg);
}

.c2 {
  left: 36%;
  top: 54%;
  width: 250px;
  transform: rotate(28deg);
}

.consortium-visual strong {
  position: absolute;
  left: 34px;
  bottom: 30px;
  color: var(--blue-deep);
  font-size: 22px;
}

.guarantee {
  display: grid;
  grid-template-columns: minmax(240px, 0.43fr) minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid color-mix(in oklch, var(--line) 84%, transparent);
  border-radius: 26px;
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--blue) 9%, transparent), transparent 58%),
    color-mix(in oklch, var(--panel) 97%, transparent);
  color: var(--ink);
  box-shadow: var(--shadow-panel);
}

.guarantee-doc {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid color-mix(in oklch, var(--line) 86%, transparent);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.doc-head {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 34px;
  height: 56px;
  border-radius: 8px;
  background: color-mix(in oklch, var(--mist) 82%, transparent);
}

.doc-row {
  position: absolute;
  left: 34px;
  right: 80px;
  height: 12px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--line-dark) 18%, transparent);
}

.doc-row.wide {
  top: 142px;
}

.doc-row:not(.wide):not(.short) {
  top: 184px;
}

.doc-row.short {
  top: 226px;
  right: 170px;
}

.stamp {
  position: absolute;
  right: 42px;
  bottom: 76px;
  padding: 14px 18px;
  border: 3px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.guarantee-copy h2,
.contact h2 {
  color: var(--blue-deep);
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 800;
}

.guarantee .section-kicker {
  color: var(--teal-deep);
}

.guarantee-copy p,
.contact-copy p {
  max-width: 68ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.guarantee-points,
.contact-details {
  display: grid;
  gap: 10px;
}

.guarantee-points span,
.contact-details span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid color-mix(in oklch, var(--line) 84%, transparent);
  border-radius: 999px;
  background: color-mix(in oklch, var(--panel) 96%, transparent);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
}

.guarantee-aside {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border: 1px solid color-mix(in oklch, var(--amber) 34%, var(--line));
  border-radius: 18px;
  background: color-mix(in oklch, var(--amber) 12%, var(--panel));
}

.aside-icon {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--amber);
  color: var(--brand-brown);
  font-size: 28px;
  font-weight: 900;
}

.guarantee-aside strong {
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.22;
}

.guarantee-aside p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.52;
}

.guarantee-aside .button {
  width: fit-content;
  margin-top: 4px;
}

.news {
  padding: clamp(54px, 7vw, 94px) 0;
}

.news-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-row article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in oklch, var(--panel) 88%, transparent);
}

.news-row time {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-row h3 {
  max-width: 20ch;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 25px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  margin-bottom: 72px;
  margin-top: 22px;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  border-radius: 26px;
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--blue) 14%, transparent), transparent 48%),
    color-mix(in oklch, var(--panel) 88%, var(--blue-soft));
  color: var(--ink);
  box-shadow: 0 24px 64px color-mix(in oklch, var(--blue-deep) 7%, transparent);
}

.contact .section-kicker {
  color: var(--teal-deep);
}

.contact h2 {
  color: var(--blue-deep);
  max-width: 12ch;
}

.contact-copy p {
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  border-radius: 18px;
  background: color-mix(in oklch, var(--panel) 96%, transparent);
  box-shadow: 0 18px 42px color-mix(in oklch, var(--blue-deep) 7%, transparent);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cloud);
  color: var(--ink);
  outline: none;
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 126px;
  padding: 14px 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--teal) 22%, transparent);
}

.contact-form .button {
  width: fit-content;
  background: var(--teal-deep);
  color: var(--panel);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.72fr));
  gap: clamp(22px, 4vw, 46px);
  width: 100%;
  padding: 52px max(24px, calc((100vw - var(--max)) / 2)) 30px;
  border-top: 0;
  background: color-mix(in oklch, var(--brand-ink) 96%, black);
  color: color-mix(in oklch, var(--panel) 78%, transparent);
  text-align: left;
  font-weight: 700;
}

.site-footer div:last-child {
  grid-column: 1 / -1;
  color: color-mix(in oklch, var(--panel) 58%, transparent);
  font-size: 14px;
}

.site-footer img {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span,
.site-footer a {
  display: block;
  max-width: 30ch;
  margin: 0 0 10px;
  color: color-mix(in oklch, var(--panel) 64%, transparent);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer strong {
  display: block;
  margin-bottom: 16px;
  color: var(--panel);
  font-size: 15px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid color-mix(in oklch, var(--panel) 14%, transparent);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-inline: 24px;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro,
  .stepper,
  .sectors,
  .case-section,
  .service-row,
  .guarantee,
  .contact {
    grid-template-columns: 1fr;
  }

  .sector-copy {
    position: static;
  }

  .hero-console {
    min-height: 0;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .section,
  .hero,
  .stats-strip,
  .cta-band,
  .case-section,
  .guarantee,
  .contact,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    top: 0;
    width: 100%;
    gap: 12px;
    min-height: 0;
    padding: 10px 12px;
    border-radius: 0;
  }

  .brand {
    width: 142px;
    height: 44px;
  }

  .brand img {
    width: 138px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .nav a {
    min-height: 44px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    overflow: clip;
    padding-top: 48px;
  }

  .hero::before {
    content: none;
  }

  .hero::after {
    content: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 54px);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero-console,
  .map-visual {
    min-height: 500px;
  }

  .hero-brief,
  .map-visual.compact,
  .short-visual {
    min-height: 360px;
  }

  .booking-title {
    padding: 22px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-profile,
  .booking-calendar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-profile,
  .booking-calendar,
  .booking-times {
    padding: 22px;
  }

  .stats-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stats-strip div {
    border-inline-start: 0;
    border-block-start: 1px solid color-mix(in oklch, var(--line) 74%, transparent);
  }

  .stats-strip div:first-child {
    border-block-start: 0;
  }

  .meeting-card,
  .route-map,
  .deadline-strip {
    width: calc(100% - 32px);
  }

  .meeting-card {
    margin-top: 58px;
    padding: 18px;
  }

  .meeting-card strong {
    font-size: 28px;
  }

  .eligibility-card {
    width: calc(100% - 32px);
    margin-right: 16px;
  }

  .step-tab {
    min-height: 0;
    padding: 20px;
  }

  .step-panel p {
    font-size: 16px;
  }

  .case-section,
  .guarantee,
  .contact {
    padding: 18px;
  }

  .case-image,
  .case-card,
  .guarantee-doc {
    min-height: 360px;
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .path-a {
    left: 36px;
    width: 300px;
  }

  .path-b {
    left: 40px;
    width: 250px;
  }

  .path-c {
    right: 18px;
    width: 210px;
  }

  .map-visual.compact .path-a {
    left: 34px;
    top: 218px;
    width: 300px;
  }

  .map-visual.compact .path-b {
    left: 40px;
    top: 252px;
    width: 240px;
  }

  .map-visual.compact .path-c {
    right: 24px;
    top: 106px;
    width: 180px;
  }

  .c1 {
    left: 24%;
    width: 210px;
  }

  .c2 {
    left: 30%;
    width: 190px;
  }
}

@media (max-width: 460px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-cta {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-note span,
  .sector-grid span {
    width: 100%;
  }

  .meeting-card,
  .eligibility-card {
    display: grid;
    gap: 14px;
  }

  .eligibility-card .score {
    width: 70px;
  }

  .route-map li {
    grid-template-columns: 42px 1fr;
  }

  .contact-form .button {
    width: 100%;
  }
}

.site-footer {
  width: 100%;
}

@media (max-width: 720px) {
  .site-footer {
    width: 100%;
    padding-inline: 24px;
  }
}

/* Calendly-like process showcase: one active visual, five timed route steps. */
.stepper {
  --step-duration: 6200ms;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.step-panels {
  order: 2;
}

.step-tabs {
  order: 1;
  border-block: 0;
}

.step-tab {
  position: relative;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 104px;
  padding: 24px 0;
  color: color-mix(in oklch, var(--blue-deep) 42%, var(--panel));
  opacity: 0.72;
}

.step-tab strong {
  color: inherit;
  font-size: clamp(19px, 1.75vw, 28px);
  line-height: 1.12;
}

.step-tab small {
  grid-column: 2;
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 260ms ease, margin-top 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.step-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-coral);
}

.step-tab.is-active {
  color: var(--blue-deep);
  opacity: 1;
}

.step-tab.is-active small {
  max-height: 128px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.step-tab.is-active::after {
  animation: stepProgress var(--step-duration) linear both;
}

@keyframes stepProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.step-panel.is-active {
  min-height: 100%;
  gap: 24px;
}

.step-panel .map-visual,
.step-panel .document-visual,
.step-panel .consortium-visual {
  min-height: clamp(460px, 40vw, 560px);
}

.step-panel .map-visual,
.step-panel .short-visual {
  margin-bottom: 0;
}

.step-panel > p {
  max-width: 72ch;
}

.audit-visual {
  min-height: clamp(460px, 40vw, 560px);
  display: grid;
  align-content: start;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--panel);
}

.audit-visual::before,
.audit-visual::after {
  content: none;
}

.audit-head,
.audit-bars,
.funding-range,
.audit-risks {
  position: relative;
  z-index: 2;
}

.audit-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.audit-head span,
.funding-range span,
.audit-risks span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-head strong {
  color: var(--blue-deep);
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.86;
}

.audit-bars {
  display: grid;
  gap: 14px;
}

.audit-bars div {
  display: grid;
  grid-template-columns: minmax(130px, 0.78fr) minmax(180px, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

.audit-bars span {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.audit-bars i,
.funding-range div {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in oklch, var(--line) 64%, transparent);
}

.audit-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-deep), var(--brand-teal));
}

.audit-bars b {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
}

.funding-range {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.funding-range strong {
  color: var(--blue-deep);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.funding-range i {
  position: absolute;
  left: 28%;
  right: 16%;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-amber), var(--brand-coral));
}

.audit-risks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 6px;
}

.audit-risks span {
  width: 100%;
}

.audit-risks b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid color-mix(in oklch, var(--brand-coral) 34%, var(--line));
  border-radius: 8px;
  background: color-mix(in oklch, var(--panel) 78%, transparent);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1060px) {
  .stepper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .step-panels,
  .step-tabs {
    order: initial;
  }
}

@media (max-width: 720px) {
  .step-tab {
    min-height: 88px;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 20px 0;
  }

  .step-tab strong {
    font-size: 15px;
  }

  .step-tab small {
    font-size: 14px;
    line-height: 1.5;
  }

  .step-tab::after {
    left: 0;
  }

  @keyframes stepProgress {
    from {
      width: 0;
    }

    to {
      width: 100%;
    }
  }

  .step-panel .map-visual,
  .step-panel .audit-visual,
  .step-panel .document-visual,
  .step-panel .consortium-visual {
    min-height: 380px;
  }

  .audit-bars div {
    grid-template-columns: 1fr 44px;
  }

  .audit-bars i {
    grid-column: 1 / -1;
    order: 3;
  }
}

/* Redesign reset: editorial bands and image-led proof, not framed section cards. */
.hero-art {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: clamp(30px, 7vw, 90px);
  width: min(68vw, 960px);
  opacity: 0.48;
  pointer-events: none;
}

.hero {
  overflow: clip;
  contain: paint;
}

.hero-copy,
.hero-console {
  z-index: 2;
}

.hero h1 {
  max-width: 470px;
  font-size: clamp(42px, 4.35vw, 58px);
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.stats-strip {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  margin-bottom: clamp(62px, 8vw, 112px);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
}

.stats-strip div {
  min-height: 154px;
  padding: clamp(24px, 3.4vw, 38px) clamp(18px, 3vw, 34px);
  border: 0;
  border-inline-start: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stats-strip div:first-child {
  border-inline-start: 0;
}

.stat-icon {
  border: 1px solid color-mix(in oklch, var(--blue) 30%, transparent);
  background: color-mix(in oklch, var(--blue) 10%, var(--panel));
}

.intro {
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.5fr);
  padding: clamp(28px, 6vw, 82px) 0 clamp(56px, 8vw, 108px);
}

.intro h2 {
  max-width: 14ch;
  overflow-wrap: normal;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro-art-image {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0 9%, 96% 0, 100% 87%, 8% 100%);
}

.intro-panel-copy {
  min-width: 0;
}

.intro-panel p {
  color: var(--ink-soft);
}

.intro-list span {
  border-radius: 8px;
  background: transparent;
}

.stepper {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: clamp(26px, 5vw, 70px);
}

.step-tabs {
  gap: 0;
  border-block: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
}

.step-tab {
  min-height: 86px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  border-radius: 0;
  background: transparent;
}

.step-tab:last-child {
  border-bottom: 0;
}

.step-tab:hover {
  background: color-mix(in oklch, var(--blue) 5%, transparent);
}

.step-tab.is-active {
  border-color: color-mix(in oklch, var(--line) 82%, transparent);
  background: transparent;
}

.step-tab.is-active strong {
  color: var(--blue-deep);
}

.step-tab span,
.mini-process span {
  width: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: color-mix(in oklch, var(--blue-deep) 34%, var(--panel));
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 850;
  line-height: 1;
}

.step-tab.is-active span {
  color: var(--brand-coral);
}

.map-visual {
  isolation: isolate;
  min-height: 430px;
  border: 0;
  border-radius: 0;
  background: color-mix(in oklch, var(--panel) 92%, transparent);
  box-shadow: none;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-visual::before {
  z-index: 0;
  background: url("./assets/grant-flow-field.svg") center / cover no-repeat;
  opacity: 0.78;
}

.map-visual::after {
  z-index: 1;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--panel) 88%, transparent), transparent 58%),
    linear-gradient(180deg, transparent 44%, color-mix(in oklch, var(--panel) 82%, transparent));
}

.map-label,
.path-line,
.map-node,
.program-ticket {
  z-index: 2;
}

.path-line {
  height: 4px;
  background: var(--teal-deep);
}

.program-ticket {
  border: 0;
  border-top: 1px solid color-mix(in oklch, var(--brand-brown) 18%, transparent);
  border-radius: 0;
  background: color-mix(in oklch, var(--panel) 86%, transparent);
  box-shadow: none;
}

.step-benefits {
  border: 0;
  border-block: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  border-radius: 0;
  background: transparent;
}

.step-benefits span {
  border-inline-start: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
}

.document-visual,
.consortium-visual {
  border: 0;
  border-radius: 0;
  background: color-mix(in oklch, var(--blue-soft) 58%, var(--panel));
  box-shadow: none;
}

.cta-band {
  position: relative;
  overflow: clip;
  contain: paint;
  width: 100%;
  max-width: none;
  min-height: 360px;
  justify-items: start;
  align-content: center;
  margin-top: clamp(58px, 8vw, 112px);
  padding: clamp(68px, 9vw, 118px) max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background: color-mix(in oklch, var(--brand-ink) 94%, var(--brand-brown));
  color: var(--panel);
  text-align: left;
  box-shadow: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0 0 0 44%;
  background: url("./assets/grant-flow-field.svg") center / cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 760px;
  color: var(--panel);
}

.cta-band p,
.cta-band span {
  max-width: 690px;
  color: color-mix(in oklch, var(--panel) 76%, transparent);
}

.cta-band .button {
  background: var(--teal);
  color: var(--brand-brown);
}

.sectors {
  width: min(calc(100% - 40px), var(--max));
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  margin-top: clamp(68px, 8vw, 112px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sector-grid {
  align-content: center;
  padding-block: 10px;
}

.sector-grid span {
  min-height: 40px;
  border-radius: 8px;
  background: color-mix(in oklch, var(--panel) 72%, transparent);
  width: auto;
}

.case-section {
  position: relative;
  overflow: clip;
  contain: paint;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1fr);
  margin-top: clamp(76px, 9vw, 128px);
  padding: clamp(74px, 9vw, 126px) max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--blue-soft) 62%, var(--panel)) 0%, var(--panel) 62%),
    var(--panel);
  box-shadow: none;
}

.case-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  width: min(64vw, 860px);
  aspect-ratio: 16 / 9;
  background: url("./assets/grant-flow-field.svg") center / cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
}

.case-section > * {
  position: relative;
  z-index: 1;
}

.case-image,
.case-card {
  min-height: 0;
  border-radius: 0;
}

.case-image {
  position: relative;
  min-height: 440px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.case-photo {
  left: 0;
  top: 0;
  width: min(370px, 88%);
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.case-photo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 36px color-mix(in oklch, var(--ink) 13%, transparent));
}

.linkedin-mark {
  left: min(352px, 82%);
  bottom: 86px;
  transform: none;
}

.person {
  left: 0;
  right: auto;
  bottom: 8px;
  max-width: 260px;
  text-align: left;
}

.case-card {
  padding: 0;
}

.case-amount {
  width: min(100%, 430px);
  padding: 14px 0;
  border: 0;
  border-block: 1px solid color-mix(in oklch, var(--blue) 34%, var(--line));
  border-radius: 0;
  background: transparent;
}

.guarantee {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr) minmax(260px, 0.4fr);
  margin-top: 0;
  padding: clamp(74px, 9vw, 122px) max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background: color-mix(in oklch, var(--cloud) 72%, var(--blue-soft));
  box-shadow: none;
}

.guarantee-doc {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.guarantee-doc img {
  width: min(320px, 100%);
  filter: drop-shadow(0 28px 38px color-mix(in oklch, var(--ink) 12%, transparent));
}

.guarantee-points span,
.contact-details span {
  min-height: 40px;
  padding-inline: 0;
  border: 0;
  border-bottom: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
  border-radius: 0;
  background: transparent;
}

.guarantee-aside {
  padding: 26px 0;
  border: 0;
  border-block: 1px solid color-mix(in oklch, var(--amber) 42%, var(--line));
  border-radius: 0;
  background: transparent;
}

.contact {
  position: relative;
  overflow: clip;
  contain: paint;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(76px, 9vw, 124px) max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, var(--panel) 0%, color-mix(in oklch, var(--blue-soft) 64%, var(--panel)) 100%);
  box-shadow: none;
}

.contact::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(68vw, 860px);
  aspect-ratio: 16 / 9;
  background: url("./assets/grant-flow-field.svg") center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form {
  border-radius: 10px;
}

@media (max-width: 1060px) {
  .hero-art {
    right: 0;
    width: 92vw;
    opacity: 0.32;
  }

  .intro,
  .intro-panel,
  .stepper,
  .sectors,
  .case-section,
  .guarantee,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro h2 {
    max-width: 14ch;
    overflow-wrap: normal;
  }

  .intro-art-image {
    min-height: 280px;
  }

  .case-section,
  .guarantee,
  .contact {
    padding-block: clamp(58px, 9vw, 96px);
  }
}

@media (max-width: 720px) {
  .section,
  .hero,
  .sectors {
    width: min(calc(100% - 24px), var(--max));
  }

  .stats-strip,
  .cta-band,
  .case-section,
  .guarantee,
  .contact {
    width: 100%;
  }

  .hero-art {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 252px;
    object-fit: cover;
    margin: -4px 0 8px;
    opacity: 0.72;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 44px);
  }

  .stats-strip {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .stats-strip div {
    border-inline-start: 0;
    border-block-start: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
    padding-inline: 0;
  }

  .stats-strip div:first-child {
    border-block-start: 0;
  }

  .intro-panel {
    gap: 22px;
  }

  .intro-art-image {
    min-height: 220px;
  }

  .step-tabs {
    border-block: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  }

  .step-tab {
    padding: 18px 0;
  }

  .map-visual,
  .map-visual.compact {
    min-height: 420px;
  }

  .cta-band {
    min-height: 0;
    padding-block: 60px;
  }

  .cta-band::after {
    inset: auto 0 0 18%;
    height: 340px;
    opacity: 0.25;
  }

  .sector-grid span {
    width: auto;
  }

  .case-image {
    min-height: 340px;
  }

  .case-photo {
    width: min(300px, 94%);
  }

  .linkedin-mark {
    left: 262px;
    bottom: 70px;
  }

  .person {
    bottom: 0;
  }

  .guarantee-doc img {
    width: min(300px, 100%);
  }

  .contact-form {
    padding: 20px;
  }
}

.stepper {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.12fr);
  align-items: start;
}

.step-tabs {
  order: 1;
}

.step-panels {
  order: 2;
}

/* Contest rush polish: cleaner Calendly-like booking surface, generated SVG visuals. */
:root {
  --brand-ink: oklch(20% 0.055 252);
  --brand-brown: oklch(21% 0.06 252);
  --brand-teal: oklch(64% 0.18 250);
  --brand-coral: oklch(69% 0.2 31);
  --brand-amber: oklch(79% 0.14 78);
  --ink-soft: oklch(39% 0.045 252);
  --muted: oklch(55% 0.036 252);
  --cloud: oklch(99.2% 0.006 250);
  --mist: oklch(96.4% 0.014 250);
  --panel: oklch(99.7% 0.003 250);
  --line: oklch(89% 0.02 250);
  --blue: oklch(59% 0.22 257);
  --blue-deep: oklch(24% 0.076 252);
  --blue-soft: oklch(95.8% 0.032 250);
  --teal: oklch(72% 0.14 178);
  --teal-deep: oklch(44% 0.115 178);
  --orange: oklch(70% 0.2 31);
  --shadow-panel: 0 28px 74px color-mix(in oklch, var(--blue-deep) 12%, transparent);
  --shadow-lift: 0 18px 44px color-mix(in oklch, var(--blue-deep) 9%, transparent);
}

body {
  background: linear-gradient(180deg, #fff 0%, var(--cloud) 46%, var(--mist) 100%);
}

.site-header {
  min-height: 64px;
  background: color-mix(in oklch, white 94%, transparent);
  border-bottom-color: color-mix(in oklch, var(--line) 70%, transparent);
}

.nav a {
  color: var(--blue-deep);
  font-weight: 760;
}

.primary,
.header-cta {
  background: #ff6d4a;
  color: white;
  box-shadow: 0 16px 38px color-mix(in oklch, var(--blue) 22%, transparent);
}

.hero {
  width: 100%;
  max-width: none;
  min-height: 700px;
  grid-template-columns: minmax(520px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(28px, 4vw, 64px);
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(46px, 6vw, 76px);
}

.hero-prototype {
  min-height: 700px;
  background: url("./assets/oh-my-grant-hero.png?v=20260515-1500") center center / cover no-repeat;
}

.hero-copy {
  max-width: 690px;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: #ff6d4a;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 680px;
  color: var(--blue-deep);
  font-size: clamp(46px, 4.6vw, 64px);
  line-height: 0.98;
  font-weight: 830;
}

.hero-subtitle {
  color: var(--blue-deep);
  font-weight: 760;
}

.lead {
  color: color-mix(in oklch, var(--blue-deep) 68%, var(--muted));
}

.hero-art {
  display: none;
}

.hero-console {
  display: none;
}

.booking-title {
  color: var(--blue-deep);
  font-weight: 860;
}

.booking-mark {
  background: #ff6d4a;
  color: white;
}

.booking-profile h3,
.booking-calendar strong,
.booking-times span {
  color: var(--blue-deep);
}

.calendar-grid i.soft {
  background: color-mix(in oklch, #ff6d4a 10%, transparent);
  color: #ff6d4a;
}

.calendar-grid i.active,
.booking-times button.selected {
  background: #ff6d4a;
  color: white;
}

.booking-times button {
  border-color: #ff6d4a;
  background: white;
  color: #ff6d4a;
}

.stats-strip {
  margin-bottom: clamp(72px, 8vw, 120px);
  background: color-mix(in oklch, white 78%, transparent);
}

.stats-strip strong {
  color: var(--blue-deep);
}

.stat-icon {
  border-color: color-mix(in oklch, #ff6d4a 28%, transparent);
  background: color-mix(in oklch, #ff6d4a 8%, white);
  color: #ff6d4a !important;
}

.intro {
  padding-top: clamp(54px, 7vw, 96px);
}

.intro h2,
.sector-copy h2,
.case-card h2,
.guarantee-copy h2,
.contact-copy h2,
.section-head h2 {
  color: var(--blue-deep);
}

.intro-art-image {
  clip-path: none;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgb(8 43 79 / 10%);
}

.intro-list span,
.sector-grid span {
  border-color: color-mix(in oklch, #ff6d4a 22%, var(--line));
  background: color-mix(in oklch, #ff6d4a 5%, white);
  color: var(--blue-deep);
}

.step-tab.is-active span {
  color: #ff6d4a;
}

.step-tab:hover {
  background: color-mix(in oklch, #ff6d4a 4%, transparent);
}

.audit-visual,
.document-visual,
.consortium-visual,
.map-visual {
  border-radius: 24px;
  border: 1px solid #d7e3f4;
  background: white;
  box-shadow: 0 22px 54px rgb(8 43 79 / 9%);
}

.map-visual::before,
.cta-band::after,
.case-section::after,
.contact::before {
  background-image: url("./assets/grant-flow-field.svg?v=calendly-20260515");
}

.cta-band {
  background: var(--blue-deep);
}

.cta-band .button {
  background: #ff6d4a;
  color: white;
}

.sectors {
  gap: clamp(42px, 6vw, 92px);
}

.case-section {
  background:
    linear-gradient(90deg, color-mix(in oklch, #ff6d4a 7%, white) 0%, white 64%),
    white;
}

.case-amount {
  color: #ff6d4a;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
}

.linkedin-mark {
  display: none;
}

.guarantee {
  background: linear-gradient(90deg, white 0%, color-mix(in oklch, #ff6d4a 7%, white) 100%);
}

.guarantee-aside {
  border-block-color: color-mix(in oklch, #ff6d4a 24%, var(--line));
}

.aside-icon {
  background: #ff6d4a;
  color: white;
}

.contact {
  background:
    linear-gradient(90deg, white 0%, color-mix(in oklch, #ff6d4a 7%, white) 100%);
}

.contact-form {
  border: 1px solid #d7e3f4;
  background: white;
  box-shadow: 0 28px 70px rgb(8 43 79 / 10%);
}

.site-footer {
  background: var(--blue-deep);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-prototype {
    background: url("./assets/oh-my-grant-hero.png?v=20260515-1500") center center / cover no-repeat;
    padding-bottom: clamp(300px, 48vw, 420px);
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(38px, 10vw, 48px);
  }

  .hero-prototype {
    background: url("./assets/oh-my-grant-hero.png?v=20260515-1500") center center / cover no-repeat;
    padding-bottom: 290px;
  }
}

.step-tab span {
  display: block;
  place-items: unset;
  justify-self: start;
  align-self: start;
  width: auto;
  min-width: 42px;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: color-mix(in oklch, var(--blue-deep) 36%, var(--panel));
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 0.95;
}

.step-tab.is-active span {
  background: transparent;
  color: var(--brand-coral);
}

/* Fast brand pass: Montserrat typography + logo-orange primary accent. */
:root {
  --blue: var(--brand-coral);
  --blue-soft: oklch(96.5% 0.03 34.7);
}

body,
button,
input,
textarea,
h1,
h2,
h3,
.booking-title,
.case-amount,
.step-tab span {
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.primary,
.header-cta,
.booking-mark,
.calendar-grid i.active,
.booking-times button.selected,
.cta-band .button,
.aside-icon {
  background: var(--brand-coral);
}

.eyebrow,
.section-kicker,
.step-tab.is-active span,
.step-tab.is-active strong,
.case-amount,
.stat-icon {
  color: var(--brand-coral) !important;
}

.booking-times button {
  border-color: var(--brand-coral);
  color: var(--brand-coral);
}

.stats-strip div {
  grid-template-columns: minmax(0, 1fr);
  min-height: 148px;
  padding: 30px 34px;
}

.stat-icon {
  display: none !important;
}

.step-tab::after {
  left: 0;
}

.step-tab.is-active::after {
  width: 100%;
}

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

@media (max-width: 720px) {
  .step-tab span {
    min-width: 34px;
    font-size: 30px;
  }
}
