@font-face {
	font-family: 'Avenir Next LT Pro';
	src: url('/mindpump/fonts/AvenirNextLTPro-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Avenir Next LT Pro';
	src: url('/mindpump/fonts/AvenirNextLTPro-It.otf') format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Avenir Next LT Pro';
	src: url('/mindpump/fonts/AvenirNextLTPro-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Montserrat', sans-serif;
	background: #0a0a0a;
	color: #101010;
	-webkit-font-smoothing: antialiased;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	display: block;
}

/* ── Tokens ── */
:root {
	--dark: #101010;
	--grey-700: #4d4d4d;
	--grey-500: #878787;
	--warm-25: #faf8f3;
	--warm-50: #f7f7f7;
	--border: #e8e2d4;
	--accent: #d9724c;
	--red: #f8302d;
	--font-montserrat: 'Montserrat', sans-serif;
	--font-avenir: 'Avenir Next LT Pro', system-ui, sans-serif;
	--max-w: 1440px;
	--max-w-1920: 1920px;
	--pad-x: clamp(24px, 5.56vw, 80px);
	--section-py: clamp(64px, 7.78vw, 112px);
}

/* ── Eyebrow ── */
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 21px;
	font-weight: 700;
	color: var(--dark);
	text-transform: uppercase;
	text-align: start;
}

.eyebrow-footer {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: 1.7px;
	font-weight: 700;
	color: var(--dark);
	text-transform: uppercase;
}
.eyebrow--light {
	color: #fff;
}
.eyebrow--light::before {
	background: #fff;
}

/* ── Section inner container ── */
.inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0px;
}

.inner-cont-1920 {
	max-width: var(--max--1920);
	margin: 0 auto;
	padding: 0px;
}

/* Offset anchor scrolling so sticky nav doesn't cover headings */
#products,
#team,
#diagram,
#testimonials,
#faq,
#research {
	scroll-margin-top: 90px;
}

/* ════════════════════════════════════
       NAV
    ════════════════════════════════════ */
.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 64px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav__logo {
	height: 40px;
	width: auto;
}
.nav__links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}
.nav__links a {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	color: var(--dark);
}
.nav__cart {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--dark);
	border: 1px solid var(--dark);
	border-radius: 999px;
	padding: 8px 16px;
}

/* ════════════════════════════════════
       HERO
    ════════════════════════════════════ */
.hero {
	position: relative;
	width: 100%;
	aspect-ratio: 1920 / 1080;
	min-height: 100svh;
	background: var(--warm-25);
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}
.hero__content,
.content {
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.cta {
	display: flex;
	flex-direction: column;
	gap: 100px;
}
.cta .btn {
	display: flex;
}
.hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	justify-content: center;
}
.hero__title {
	/* position: absolute;
      top: 32.04%;
      left: 19.86%; */
	text-align: left;
	transform: none;
	white-space: nowrap;
	color: #fff;
	font-size: clamp(2rem, 6.25vw, 120px);
	line-height: 1;
}
.hero__title b {
	font-weight: 800;
}
.hero__title span {
	font-weight: 500;
}
.hero__body {
	/* position: absolute;
      top: 50%;
      left: 19.86%; */
	/* width: 80%; */
	color: #fff;
	font-weight: 500;
	font-size: clamp(0.875rem, 1.5625vw, 30px);
	line-height: 1;
}
.hero__highlight {
	/* position: absolute;
      top: 66.85%;
      left: 19.86%; */
	width: 80%;
	color: #fff;
	font-weight: 500;
	font-size: clamp(0.875rem, 1.5625vw, 30px);
	line-height: 1;
}
.hero__cta {
	/* position: absolute;
      top: 73.8%;
      left: 19.86%; */
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #e8e2e2;
	color: var(--dark);
	border-radius: 999px;
	padding: clamp(10px, 1.67vw, 18px) clamp(16px, 1.67vw, 32px);
	font-weight: 900;
	font-size: clamp(9px, 0.677vw, 13px);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.15s;
}
.hero__cta:hover {
	background: #d4cecc;
	transform: translateY(-1px);
}
.hero__fine-print {
	/* position: absolute;
      top: 87%;
      left: 19.86%; */
	width: 80%;
	color: #fff;
	font-weight: 500;
	font-size: clamp(8px, 0.729vw, 14px);
	opacity: 0.8;
	line-height: 1.5;
}

/* ════════════════════════════════════
       DIVIDER
    ════════════════════════════════════ */
.divider {
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
}

/* ════════════════════════════════════
       QUOTE CAROUSEL
    ════════════════════════════════════ */
.quote {
	background: var(--warm-50);
	padding: 64px var(--pad-x);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 44px;
}
.quote__carousel {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 32px;
}
.quote__chevron {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 40px;
	line-height: 1;
	color: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s;
	user-select: none;
}
.quote__chevron:hover {
	color: #4d4d4d;
}
.quote__viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}
.quote__track {
	display: flex;
	will-change: transform;
	transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quote__slide {
	min-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 64px 16px;
}
.quote__icon {
	font-size: 64px;
	line-height: 1;
	color: var(--dark);
	font-family: Georgia, serif;
}
.quote__text {
	font-size: clamp(1.25rem, 2.78vw, 40px);
	font-weight: 700;
	font-style: italic;
	line-height: 1.5;
	text-align: center;
	max-width: 1024px;
	color: var(--dark);
}

.quote__text_info {
	display: flex;
	max-width: 1440px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 28px;
	flex: 1 0 0;
}

.quote__author {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.quote__author-name {
	font-size: 21px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.5;
}
.quote__author-title {
	font-size: 14px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.5;
}
.quote__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}
.quote__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid var(--grey-700);
	cursor: pointer;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	transition:
		width 0.25s ease,
		border-radius 0.25s ease;
}
.quote__dot--active {
	width: 64px;
	border-radius: 32px;
	border-color: var(--grey-700);
}
/* fill sweeps left→right over the slide duration */
.quote__dot--active::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--grey-700);
	transform: scaleX(0);
	transform-origin: left center;
	animation: quoteFill 4s linear 0.25s forwards;
}
@keyframes quoteFill {
	to {
		transform: scaleX(1);
	}
}

/* ════════════════════════════════════
       PRODUCTS
    ════════════════════════════════════ */
.products {
	background: #fff;
	padding: var(--section-py) 0;
}
.products .inner {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.products__header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
	text-align: left;
}
.products__headline {
	font-size: clamp(2rem, 4.17vw, 60px);
	font-weight: 700;
	line-height: 1;
	color: var(--dark);
	text-transform: uppercase;
	letter-spacing: 0;
}
.products__headline-kicker {
	font-size: clamp(14px, 1.04vw, 20px);
	font-weight: 700;
	display: block;
	letter-spacing: 0;
	text-transform: uppercase;
}
.products__subhead {
	font-size: 18px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.6;
}
.product-grid {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.product-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}
.product-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.product-card__img-wrap {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: clamp(280px, 35.6vw, 512px);
}
.product-card__img {
	height: 100%;
	width: auto;
	object-fit: contain;
}
.product-card__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}
.product-card__name {
	font-size: clamp(18px, 1.94vw, 28px);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--dark);
	letter-spacing: -0.224px;
	line-height: 1;
}
.product-card__desc {
	font-size: 18px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.5;
}
.product-card__actions {
	display: flex;
	gap: 8px;
	margin-top: 4px;
}
.btn-primary {
	background: var(--dark);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 12px 28px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.2s;
	text-transform: uppercase;
}
.btn-primary:hover {
	background: #333;
}
.btn-secondary {
	background: transparent;
	color: var(--dark);
	border: 1px solid var(--dark);
	border-radius: 999px;
	padding: 12px 28px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.2s;
	text-transform: uppercase;
}
.btn-secondary:hover {
	background: var(--warm-50);
}

/* ════════════════════════════════════
       PERFORMANCE TEAM
    ════════════════════════════════════ */
.team {
	background: var(--warm-50);
	padding: var(--section-py) 0;
	overflow: hidden;
}
.team__header {
	padding: 0 var(--pad-x);
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 60px;
}
.team__eyebrow-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}
.team__eyebrow-line {
	width: 32px;
	height: 1px;
	background: var(--grey-700);
}
.team__eyebrow-text {
	font-family: var(--font-avenir);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.42px;
	text-transform: uppercase;
	color: var(--grey-700);
}
.team__headline-kicker {
	font-family: var(--font-avenir);
	font-size: 21px;
	font-weight: 700;
	color: #0f0f0f;
	line-height: 1.24;
	display: block;
	margin-bottom: 0;
}
.team__headline {
	font-family: var(--font-avenir);
	font-size: clamp(2rem, 4.17vw, 60px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.76px;
	color: #101010;
	text-transform: uppercase;
}
.team__subtext {
	font-family: var(--font-avenir);
	font-size: 18px;
	font-weight: 400;
	color: var(--grey-700);
	line-height: 1.625;
	align-self: end;
	padding-bottom: 4px;
	width: 440px;
}
.team__scroll {
	display: flex;
	gap: 0;
	overflow-x: auto;
	padding-left: max(var(--pad-x), calc((100% - var(--max-w)) / 2 + var(--pad-x)));
	padding-right: var(--pad-x);
	scrollbar-width: none;
}
.team__scroll::-webkit-scrollbar {
	display: none;
}
.team__card {
	flex: 0 0 calc(25% - 12px);
	min-width: 280px;
}
.team__card:last-child {
	margin-right: 0;
}
.team__portrait {
	width: 100%;
	aspect-ratio: 422 / 528;
	object-fit: cover;
	border-radius: 4px;
	background: #ccc;
	display: block;
}
.team__card-meta {
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.team__card-role {
	font-family: var(--font-avenir);
	font-size: clamp(14px, 1.25vw, 18px);
	font-weight: 700;
	color: #0f0f0f;
	letter-spacing: -0.6px;
	line-height: 1.2;
}
.team__card-org {
	font-family: var(--font-avenir);
	font-size: 14px;
	font-weight: 500;
	color: var(--grey-700);
}
.team__card-name {
	font-family: var(--font-avenir);
	font-size: 12px;
	font-weight: 400;
	color: var(--grey-500);
	letter-spacing: 1.92px;
	text-transform: uppercase;
	margin-top: 2px;
}
.team__card-tags {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	flex-wrap: wrap;
}
.team__tag {
	border: 1px solid rgba(15, 15, 15, 0.2);
	border-radius: 9999px;
	padding: 5px 12px;
	font-family: var(--font-avenir);
	font-size: 11px;
	font-weight: 500;
	color: var(--grey-700);
	letter-spacing: 1.54px;
	text-transform: uppercase;
}
.team__card-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 16px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: var(--font-avenir);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.42px;
	text-transform: uppercase;
	color: #0f0f0f;
}
.team__card-link-text {
	border-bottom: 1px solid rgba(15, 15, 15, 0.4);
	padding-bottom: 2px;
}
.team__card-link-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}
.team__card.bio-open .team__card-link-arrow {
	transform: rotate(90deg);
}
.team__bio {
	font-family: var(--font-avenir);
	font-size: 14px;
	font-weight: 400;
	color: var(--grey-700);
	line-height: 1.6;
	display: grid;
	grid-template-rows: 0fr;
	transition:
		grid-template-rows 0.35s ease,
		margin-top 0.35s ease;
}
.team__bio > div {
	overflow: hidden;
}
.team__card.bio-open .team__bio {
	grid-template-rows: 1fr;
	margin-top: 12px;
}
.team__footer {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 40px var(--pad-x) 0;
	border-top: 1px solid rgba(15, 15, 15, 0.1);
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.team__footer-text {
	font-family: var(--font-avenir);
	font-size: 14px;
	font-weight: 400;
	color: var(--grey-700);
}
.team__footer-link {
	font-family: var(--font-avenir);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.42px;
	text-transform: uppercase;
	color: #0f0f0f;
	border-bottom: 1px solid #0f0f0f;
	padding-bottom: 2px;
}
.team__nav-btns {
	display: flex;
	gap: 8px;
	visibility: hidden;
}
.team__nav-btns.visible {
	visibility: visible;
}
.team__nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(15, 15, 15, 0.3);
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--dark);
	transition: background 0.2s;
}
.team__nav-btn:hover {
	background: rgba(0, 0, 0, 0.05);
}

/* ════════════════════════════════════
       HOW IT WORKS — DIAGRAM
    ════════════════════════════════════ */
.diagram {
	background: #fff;
	padding: var(--section-py) 0;
}
.diagram .inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 80px;
}
.diagram__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	width: 100%;
}
.diagram__headline-kicker {
	font-size: clamp(12px, 1.09vw, 21px);
	font-weight: 700;
	letter-spacing: 1.6px;
	display: block;
}
.diagram__headline {
	font-size: clamp(1.75rem, 4.17vw, 60px);
	font-weight: 700;
	color: var(--dark);
	letter-spacing: -1.2px;
	line-height: 1;
	text-transform: uppercase;
}
.diagram__body {
	font-size: 17px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.65;
	max-width: 900px;
	text-align: left;
}
.diagram__cols {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 48px;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}
.diagram__left {
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-items: flex-end;
}
.diagram__right {
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-items: flex-start;
}
.diagram__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.diagram__item--left {
	align-items: flex-end;
	text-align: right;
	max-width: 360px;
}
.diagram__item--right {
	align-items: flex-start;
	text-align: left;
	max-width: 360px;
}
.diagram__item-label {
	display: flex;
	align-items: baseline;
	gap: 12px;
	white-space: nowrap;
}
.diagram__item--left .diagram__item-label {
	flex-direction: row-reverse;
}
.diagram__item-num {
	font-size: 14px;
	font-weight: 900;
	color: var(--accent);
	letter-spacing: 0.5px;
}
.diagram__item-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
	letter-spacing: -0.2px;
}
.diagram__item-text {
	font-size: 14px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.55;
}
.diagram__center {
	width: clamp(260px, 30.6vw, 440px);
	aspect-ratio: 440/480;
	background: var(--warm-25);
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}
.diagram__center img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.diagram__zoom-btn {
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}
.diagram__zoom-btn svg {
	width: 18px;
	height: 18px;
}
.diagram-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.diagram-modal.open {
	display: flex;
}
.diagram-modal__img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: 12px;
	object-fit: contain;
	background-color: #fff;
}
.diagram-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	cursor: pointer;
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 768px) {
	.diagram__zoom-btn {
		display: flex;
	}

	.diagram__header,
	.team__header,
	.products__header {
		gap: 10px;
	}
}
.diagram__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1280px;
	border-radius: 16px;
	padding: 28px 40px;
}
.diagram__bar-left {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 1.6px;
	color: var(--dark);
}
.diagram__bar-right {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.3px;
	color: var(--dark);
	cursor: pointer;
}
.diagram__bar-right:hover {
	opacity: 0.7;
}

/* ════════════════════════════════════
       HOW IT WORKS — STEPS
    ════════════════════════════════════ */
.steps {
	background: var(--warm-50);
	padding: var(--section-py) 0;
}
.steps .inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.steps__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.steps__eyebrow-text {
	font-family: var(--font-avenir);
	font-size: 21px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dark);
}
.steps__headline {
	font-family: var(--font-avenir);
	font-size: clamp(2rem, 5.28vw, 60px);
	line-height: 0.98;
	text-transform: uppercase;
}
.steps__headline--bold {
	display: block;
	font-weight: 700;
	letter-spacing: -2.28px;
	color: #0f0f0f;
}
.steps__headline--light {
	font-weight: 500;
	letter-spacing: -0.76px;
	color: var(--grey-700);
}
.steps__subtext {
	font-family: var(--font-avenir);
	font-size: 18px;
	font-weight: 400;
	color: var(--grey-700);
	line-height: 1.625;
	align-self: end;
	max-width: 440px;
}
.steps__container {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 56px;
	align-items: start;
	max-width: 1200px;
	margin-inline: auto;
}
.steps__photo {
	width: clamp(200px, 31.2vw, 449px);
	aspect-ratio: 449 / 599;
	object-fit: cover;
	border-radius: 24px;
	flex-shrink: 0;
}
.steps__list {
	display: flex;
	flex-direction: column;
}
.steps__item {
	border-top: 1px solid rgba(15, 15, 15, 0.15);
	padding: 28px 0;
	list-style: none;
}
.steps__item:last-child {
	border-bottom: 1px solid rgba(15, 15, 15, 0.15);
}
.steps__item-title {
	font-family: var(--font-avenir);
	font-size: clamp(1.5rem, 2.78vw, 40px);
	font-weight: 700;
	color: #0f0f0f;
	letter-spacing: -1.2px;
	margin-bottom: 12px;
}
.steps__item-desc {
	font-family: var(--font-avenir);
	font-size: 18px;
	font-weight: 400;
	color: var(--grey-700);
	line-height: 1.55;
	max-width: 510px;
}

/* ════════════════════════════════════
       FINAL CTA
    ════════════════════════════════════ */
.cta-final {
	background: var(--dark);
	padding: clamp(40px, 5.56vw, 80px) 0;
}
.cta-final .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	flex-wrap: wrap;
}
.cta-final__copy {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cta-final__headline {
	font-size: clamp(1.5rem, 3.06vw, 44px);
	font-weight: 500;
	color: #fff;
	line-height: 1.05;
}
.cta-final__headline em {
	font-style: italic;
}
.cta-final__subtext {
	font-size: 15px;
	font-weight: 500;
	color: #b8b1a0;
	letter-spacing: 0.6px;
}
.btn-red {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--red);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 20px 32px 20px 36px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.56px;
	cursor: pointer;
	white-space: nowrap;
	transition:
		background 0.2s,
		transform 0.15s;
}
.btn-red:hover {
	background: #d02725;
	transform: translateY(-1px);
}

/* ════════════════════════════════════
       RESEARCH
    ════════════════════════════════════ */
.research {
	background: #f7f7f7;
	padding: var(--section-py) 0;
}
.research .inner {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 56px;
}
.research__header {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: start;
}
.research__headline {
	font-size: clamp(1.75rem, 4.17vw, 60px);
	font-weight: 900;
	color: var(--dark);
	line-height: 1;
	max-width: 820px;
	text-align: start;
}
.research__subtext {
	font-size: 18px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.6;
	max-width: 820px;
	text-align: start;
	margin-top: 20px;
}
.research__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-inline: auto;
}
.research__card {
	background: #fff;
	border: 1px solid #e8e2d4;
	border-radius: 16px;
	width: 305px;
	padding: 24px 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.research__journal {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 1.3px;
	color: var(--accent);
	text-transform: uppercase;
}
.research__study-title {
	font-size: 18px;
	font-weight: 900;
	color: var(--dark);
	line-height: 1.2;
	letter-spacing: -0.18px;
}
.research__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.research__stat-num {
	font-size: 56px;
	font-weight: 900;
	color: var(--dark);
	line-height: 0.95;
	letter-spacing: -1.68px;
}
.research__stat-label {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 1.3px;
	color: #8a8578;
	text-transform: uppercase;
}
.research__findings {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.research__finding {
	display: flex;
	gap: 8px;
	font-size: 12px;
	font-weight: 500;
	color: var(--grey-700);
	line-height: 1.45;
}
.research__finding::before {
	content: '✓';
	color: var(--accent);
	flex-shrink: 0;
}
.research__read {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1.3px;
	color: var(--dark);
	text-transform: uppercase;
	margin-top: auto;
	padding-top: 4px;
}
.research__read-size {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	color: #8a8578;
	text-transform: none;
}
.research__browse {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--dark);
	border: none;
	border-radius: 999px;
	padding: 18px 32px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s;
}
.research__browse:hover {
	background: #2a2a2a;
}

/* ════════════════════════════════════
       TESTIMONIALS CAROUSEL
    ════════════════════════════════════ */
.testimonials {
	background: #fff;
	padding: 56px 0 44px;
}

.testimonials .inner-cont-1920,
.testimonials .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	padding: 0px 20px;
}
.testimonials__headline {
	font-size: 36px;
	font-weight: 900;
	color: var(--dark);
	text-transform: uppercase;
	text-align: center;
	letter-spacing: -0.288px;
	line-height: 1;
}
.testimonials__viewport {
	width: 100%;
	overflow: hidden;
}
.testimonials__track {
	display: flex;
}
.testimonials__slide {
	flex: 0 0 25%; /* 4 visible on desktop */
	min-width: 0;
	display: flex;
	justify-content: center;
	padding: 16px 12px;
	opacity: 1;
}
@media (max-width: 1023px) {
	.testimonials__track {
		will-change: transform;
	}
	.testimonials__slide {
		flex: 0 0 50%; /* 2 visible on tablet */
	}
}
@media (max-width: 599px) {
	.testimonials__slide {
		flex: 0 0 100%; /* 1 visible on mobile */
	}
}
.testimonials__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
	flex-shrink: 0;
}
.testimonials__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonials__avatar img {
	display: block;
	max-width: 100%;
}
.testimonials__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
}
.testimonials__name {
	font-size: 21px;
	font-weight: 500;
	color: var(--grey-700);
	text-align: center;
	line-height: 1.5;
}
.testimonials__review {
	font-size: 18px;
	font-weight: 500;
	font-style: italic;
	color: var(--grey-700);
	text-align: center;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.testimonials__review.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}
.testimonials__read-more {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	color: var(--grey-700);
	text-decoration: underline;
	text-underline-offset: 2px;
	margin-top: 4px;
}
.testimonials__dots {
	display: none;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
@media (max-width: 1023px) {
	.testimonials__dots {
		display: flex;
	}
}
.testimonials__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid var(--grey-700);
	flex-shrink: 0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition:
		width 0.25s ease,
		border-radius 0.25s ease;
}
.testimonials__dot--active {
	width: 64px;
	border-radius: 32px;
	border-color: var(--grey-700);
}
.testimonials__dot--active::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--grey-700);
	transform: scaleX(0);
	transform-origin: left center;
	animation: testimonialFill 4s linear 0.25s forwards;
}
@keyframes testimonialFill {
	to {
		transform: scaleX(1);
	}
}

/* ════════════════════════════════════
       FAQ
    ════════════════════════════════════ */
.faq {
	background: #f7f7f7;
	padding: 90px 0;
}
.faq .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
	max-width: 1280px;
	margin: 0 auto;
}
.faq__headline {
	font-size: 36px;
	font-weight: 900;
	color: var(--dark);
	text-transform: uppercase;
	text-align: center;
	letter-spacing: -0.288px;
	line-height: 1;
}
.faq__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px 48px;
	width: 100%;
	align-items: start;
}
.faq__item {
	border-bottom: 1px solid rgba(15, 15, 15, 0.15);
	padding-bottom: 20px;
	padding-top: 6px;
}
.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	width: 100%;
	text-align: left;
}
.faq__question-text {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.5;
	flex: 1;
}
.faq__chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
	color: var(--dark);
}
.faq__item.open .faq__chevron {
	transform: rotate(180deg);
}
.faq__answer {
	font-size: 18px;
	font-weight: 500;
	color: var(--dark);
	line-height: 1.5;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}
.faq__answer > * {
	overflow: hidden;
}
.faq__item.open .faq__answer {
	grid-template-rows: 1fr;
	margin-top: 12px;
}

/* ════════════════════════════════════
       WE ARE GLOBAL
    ════════════════════════════════════ */
.global {
	background: #fff;
	padding: 96px var(--pad-x);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.global__headline {
	font-size: clamp(1.5rem, 3.06vw, 44px);
	font-weight: 700;
	color: var(--dark);
	letter-spacing: -0.88px;
	line-height: 1;
	text-align: center;
}
.global__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 1100px;
}
.global__pill {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.3px;
	color: var(--dark);
	text-transform: uppercase;
}

/* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
.footer {
	background: var(--dark);
	padding: 65px 50px 40px;
}
.footer__top {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	gap: 132px;
	align-items: start;
	padding-bottom: 40px;
}
.footer__brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer__logo {
	height: 50px;
	width: auto;
	filter: invert(1);
}
@media (min-width: 769px) and (max-width: 1024px) {
	.footer__logo {
		height: auto;
		max-width: 220px;
	}
}

.footer__social {
	display: flex;
	gap: 24px;
	align-items: center;
}
.footer__social-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	opacity: 0.8;
}
.footer__nav {
	display: flex;
	gap: 148px;
	justify-content: end;
}
.footer__nav-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer__nav-heading {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.footer__nav-link {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	opacity: 0.8;
}
.footer__newsletter {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer__newsletter-heading {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.footer__email-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer__email-input {
	background: transparent;
	border: 1px solid #4d4d4d;
	border-radius: 32px;
	padding: 14px 18px;
	font-family: var(--font-montserrat);
	font-size: 12px;
	color: #fff;
	width: 280px;
	outline: none;
}
.footer__email-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}
.footer__email-input:focus {
	border-color: #fff;
}
.footer__email-submit {
	background: transparent;
	border: 1px solid #fff;
	border-radius: 128px;
	padding: 10px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
}
.footer__email-submit:hover {
	background: rgba(255, 255, 255, 0.1);
}
.footer__checkbox-row {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.footer__checkbox-row input {
	margin-top: 3px;
	flex-shrink: 0;
}
.footer__checkbox-label {
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}
.footer__divider {
	width: 100%;
	height: 1px;
	background: #606060;
	margin: 0 0 24px;
}
.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}
.footer__copyright {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.footer__legal-links {
	display: flex;
	gap: 24px;
}
.footer__legal-link {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.footer__disclaimer {
	font-size: 10px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
	margin-bottom: 20px;
}
.footer__locale {
	display: flex;
	gap: 12px;
}
.footer__locale-select {
	background: #101010;
	border: 1px solid rgba(77, 77, 77, 0.4);
	color: #fff;
	font-family: var(--font-montserrat);
	font-size: 12px;
	padding: 8px 16px;
	cursor: pointer;
}

/* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
@media (max-width: 1400px) {
	.hero {
		aspect-ratio: unset;
		min-height: auto;
	}
	.hero__content {
		justify-content: flex-start;
		padding-top: clamp(60px, 8svh, 100px);
		padding-bottom: clamp(80px, 12svh, 140px);
	}
}

@media (max-width: 1024px) {
	.product-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
	.product-row .product-card:nth-child(3) {
		display: none;
	}
	.research__card {
		width: calc(50% - 10px);
		min-width: 260px;
	}
	.team__header {
		grid-template-columns: 1fr;
	}
	.team__headline-kicker {
		font-size: 15px;
		white-space: normal;
		overflow-wrap: break-word;
	}
	.team__subtext {
		width: 100%;
	}
	.br-desktop {
		display: none;
	}
	.diagram__cols {
		grid-template-columns: 1fr;
	}
	.diagram__center {
		width: 100%;
		max-width: 440px;
		margin: 0 auto;
	}
	.steps__top {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.steps__container {
		grid-template-columns: 1fr;
	}
	.steps__photo {
		width: 100%;
		max-width: 449px;
	}
	.footer__top {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 1023px) {
	.nav {
		padding: 16px 24px;
	}
	.nav__links {
		gap: 20px;
	}
	.nav__links a {
		font-size: 11px;
		letter-spacing: 0.6px;
	}
}
@media (max-width: 768px) {
	.nav__links {
		display: none;
	}
	.hero {
		aspect-ratio: unset;
		min-height: auto;
	}
	.hero__content {
		justify-content: flex-start;
		padding-top: clamp(48px, 8svh, 80px);
		padding-bottom: clamp(60px, 10svh, 100px);
	}
	.hero__title {
		font-size: clamp(1.5rem, 7.5vw, 3rem);
		white-space: normal;
	}
	.hero__body,
	.hero__highlight {
		font-size: clamp(0.875rem, 3.5vw, 1.1rem);
		width: 100%;
	}
	.hero__highlight,
	.hero__fine-print {
		width: 100%;
	}
	.product-row {
		grid-template-columns: 1fr;
	}
	.product-row .product-card:nth-child(3) {
		display: flex;
	}
	.research__card {
		width: 100%;
		min-width: unset;
	}
	.cta-final .inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer__top {
		grid-template-columns: 1fr;
	}
	.footer__nav {
		flex-direction: column;
		gap: 40px;
	}
	.footer {
		padding: 40px 24px 32px;
	}
	.footer__brand {
		align-items: center;
	}
	.footer__social {
		justify-content: center;
	}
	.footer__bottom {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.footer__copyright {
		text-align: center;
	}
	.footer__legal-links {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.faq__grid {
		grid-template-columns: 1fr;
	}
	.testimonials__card {
		width: 100%;
		max-width: 340px;
	}
	.testimonials__cards {
		gap: 32px;
	}
	.diagram__bar {
		flex-direction: column;
		padding: 0;
		text-align: start;
		align-items: start;
		gap: 22px;
	}
}

@media (max-width: 1900px) {
	.hero__content.inner {
		padding: 54px 32px;
	}

	.inner {
		max-width: var(--max-w);
		margin: 0 auto;
		padding: 32px;
	}

	.inner-cont-1920 {
		max-width: var(--max--1920);
		margin: 0 auto;
		padding: 32px;
	}

	.hero__content,
	.content {
		gap: 22px;
	}

	.cta {
		gap: 38px;
	}

	.quote__slide {
		padding: 0;
	}

	.footer__top {
		gap: 30px;
	}
}
/* ── Cart ── */
body.cart-open {
	overflow: hidden;
}
.cart-overlay {
	position: fixed;
	inset: 0;
	backdrop-filter: blur(5px);
	z-index: 101;
	display: none;
	opacity: 0;
	transition: opacity 0.5s;
}
.cart-overlay.is-visible {
	display: block;
	opacity: 1;
}
.cart {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -586px;
	max-width: 586px;
	width: 100%;
	background: #fff;
	z-index: 102;
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	transition: right 0.5s ease;
	font-family: var(--font-montserrat);
}
.cart.is-visible {
	right: 0;
}
.cart__header {
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #0f0f0f;
	flex-shrink: 0;
}
.cart__header h5 {
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.2px;
	color: var(--dark);
}
.cart__header p {
	margin-top: 10px;
	color: #4d4d4d;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
}
.cart__close {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	background: none;
	border: none;
	color: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
}
.cart__content {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
}
.cart__products {
	margin-bottom: 24px;
}
.cart-product {
	display: flex;
	gap: 14px;
	margin-top: 24px;
	font-size: 15px;
}
.cart-product__img {
	width: 96px;
	height: 90px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-product__img--small {
	height: auto;
}
.cart-product__img img {
	max-height: 100%;
	width: auto;
	display: block;
}
.cart-product__details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.cart-product__details-row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
}
.cart-product__details-row .cart-strikethrough {
	text-decoration: line-through;
	color: #878787;
}
.cart-product__details-row .cart-grey {
	color: #878787;
}
.cart-product__counter {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 4px;
	padding: 0 6px;
	height: 28px;
	border: 1px solid var(--dark);
	border-radius: 14px;
	font-size: 13px;
	font-weight: 700;
}
.cart-product__counter button {
	width: 20px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	color: var(--dark);
}
.cart-product__counter input {
	width: 30px;
	text-align: center;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
}
.cart-product__counter input::-webkit-outer-spin-button,
.cart-product__counter input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
}
.cart-product__counter input[type='number'] {
	-moz-appearance: textfield;
	appearance: textfield;
}
.cart__sum {
	padding: 20px 0 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-top: 1px solid #e8e2d4;
	border-bottom: 1px solid #e8e2d4;
}
.cart__sum-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #4d4d4d;
}
.cart__footer {
	background: #f7f7f7;
	border-top: 1px solid #e8e2d4;
	padding: 20px 24px 24px;
	flex-shrink: 0;
}
.cart__footer-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	margin-bottom: 10px;
}
.cart__footer-total strong {
	font-size: 20px;
	font-weight: 800;
}
.cart__checkout {
	width: 100%;
	padding: 14px;
	background: var(--dark);
	color: #fff;
	border: none;
	cursor: pointer;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	border-radius: 4px;
	transition: background 0.2s;
}
.cart__checkout:hover {
	background: #333;
}
.cart__footer p {
	text-align: center;
	color: #878787;
	font-size: 12px;
	margin-top: 8px;
}
.js-total-counts,
.js-products-count {
	display: none;
}
