:root {
	--bg: #000000;
	--bg-alt: #000000;
	--surface: #000000;
	--surface-strong: #000000;
	--text: #ffffff;
	--muted: #cccccc;
	--line: rgba(255, 255, 255, 0.12);
	--primary: #029051;
	--primary-strong: #029051;
	--primary-soft: #cccccc;
	--primary-2: #ffffff;
	--danger: #ff1717;
	--container: 1180px;
	--radius: 28px;
	--shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: "Manrope", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(2, 144, 81, 0.22), transparent 32%),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
		linear-gradient(180deg, #000000, #000000 45%, #000000);
	color: var(--text);
}

body > main {
	flex: 1 0 auto;
	width: 100%;
}

body.is-page-loaded .site-header {
	animation: page-enter-header 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-page-loaded .landing-page,
body.is-page-loaded .page-hero,
body.is-page-loaded .prose {
	animation: page-enter-main 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-page-loaded .site-footer {
	animation: page-enter-footer 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes page-enter-header {
	from {
		opacity: 0;
		transform: translate3d(0, -18px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes page-enter-main {
	from {
		opacity: 0;
		transform: translate3d(0, 28px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes page-enter-footer {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

html.menu-open,
body.menu-open {
	overflow: hidden;
	height: 100%;
	overscroll-behavior: none;
}

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

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

.container {
	width: min(calc(100% - 2rem), var(--container));
	margin: 0 auto;
}

.section {
	padding: 2rem 0;
}

[data-reveal] {
	opacity: 0;
	transform: translate3d(0, 32px, 0);
	transition:
		opacity 720ms ease,
		transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	body.is-page-loaded .site-header,
	body.is-page-loaded .landing-page,
	body.is-page-loaded .page-hero,
	body.is-page-loaded .prose,
	body.is-page-loaded .site-footer {
		animation: none;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.section--light {
	background: rgba(255, 255, 255, 0.02);
}

.section--accent {
	background:
		linear-gradient(135deg, rgba(2, 144, 81, 0.2), rgba(255, 255, 255, 0.02)),
		rgba(255, 255, 255, 0.02);
}

.section-kicker {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--primary-soft);
}

.section-heading {
	max-width: 900px;
	margin-bottom: 2rem;
}

.section-heading h2,
.hero h1,
.page-hero h1,
.prose h1 {
	margin: 0 0 1rem;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	line-height: 0.94;
	letter-spacing: -0.04em;
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 6.5rem);
	max-width: 10ch;
}

.hero h1 span {
	color: var(--primary);
}

.section-heading h2,
.page-hero h1,
.prose h1 {
	font-size: clamp(2rem, 5vw, 3.6rem);
}

.section-heading p,
.hero__lead,
.card p,
.trainer-card__body p,
.quote-card__text,
.price-card p,
.contact-box p,
.page-hero p,
.prose {
	color: var(--muted);
	line-height: 1.7;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(14px);
	background: rgba(12, 14, 17, 0.72);
	border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary), var(--primary-soft));
	color: #ffffff;
}

.custom-logo,
.custom-logo-link img,
.brand img {
	max-height: 48px;
	max-width: 200px;
	width: auto;
	height: auto;
}

.brand__text {
	color: var(--text);
}

.main-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
	color: var(--muted);
}

.main-nav__list a:hover {
	color: var(--text);
}

.main-nav__brand {
	display: none;
	align-items: center;
	max-width: calc(100% - 5rem);
}

.menu-close {
	display: none;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.28rem;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 1.1rem;
	height: 2px;
	border-radius: 999px;
	background: var(--text);
	transition: transform 220ms ease, opacity 220ms ease;
}

	.hero__grid,
	.contact-box {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 2rem;
	align-items: center;
}

.hero__content {
	padding: 3rem 0;
}

.hero__actions,
.section-action {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1.6rem 0 0;
}

#grafik .section-action {
	justify-content: center;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: 0.01em;
	transition:
		transform 160ms ease,
		box-shadow 160ms ease,
		background-color 160ms ease,
		border-color 160ms ease;
}

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

.button--primary {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 48%),
		linear-gradient(135deg, var(--primary), var(--primary));
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow:
		0 12px 28px rgba(2, 144, 81, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

.button--primary:hover {
	box-shadow:
		0 16px 34px rgba(2, 144, 81, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button--ghost {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
}

.button:disabled,
.button[disabled] {
	opacity: 0.42;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.card,
.trainer-card,
.quote-card,
.price-card,
.contact-card,
.hero__frame,
.page-info-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
	box-shadow: var(--shadow);
}

.hero__visual {
	position: relative;
}

.hero__frame {
	min-height: 620px;
	overflow: hidden;
	position: relative;
	background:
		linear-gradient(180deg, rgba(12, 16, 18, 0.08), rgba(12, 16, 18, 0.54)),
		linear-gradient(145deg, rgba(2, 144, 81, 0.44), rgba(255, 255, 255, 0.08));
	background-size: cover;
	background-position: center;
}

.hero__frame--slider {
	background: #050505;
}

.hero__slides,
.hero__slide {
	position: absolute;
	inset: 0;
}

.hero__slides {
	z-index: 0;
}

.hero__slide {
	opacity: 0;
	transition: opacity 420ms ease;
	background-size: cover;
	background-position: center;
}

.hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(12, 16, 18, 0.02), rgba(12, 16, 18, 0.14)),
		linear-gradient(145deg, rgba(2, 144, 81, 0.12), rgba(255, 255, 255, 0.02));
}

.hero__slide.is-active {
	opacity: 1;
}

.hero__badge {
	position: absolute;
	left: 1.4rem;
	bottom: 1.4rem;
	display: inline-flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.2rem;
	border-radius: 22px;
	background: rgba(11, 13, 16, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.08);
	z-index: 2;
}

.hero__float-card {
	position: absolute;
	top: 1.4rem;
	right: 1.4rem;
	max-width: 230px;
	padding: 1rem 1.2rem;
	border-radius: 22px;
	background: rgba(11, 13, 16, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.08);
	z-index: 2;
}

.hero__float-card p {
	margin: 0;
	color: var(--primary-soft);
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
}

.hero__float-card strong {
	display: block;
	margin-top: 0.4rem;
}

.hero__badge span,
.card__eyebrow,
.trainer-card__meta,
.quote-card__role,
.contact-card span,
.price-card__badge,
.page-info-card span {
	color: var(--primary-soft);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}
.hero__badge strong {
	display: block;
	margin-top: 0.35rem;
}

.hero__badge__title{
	color: var(--primary) !important;
	font-weight: 700;
}

.hero__controls {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.hero__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.hero__progress-bar {
	display: block;
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), var(--primary));
	transform-origin: left center;
}

.hero__control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	padding: 0;
	cursor: pointer;
	width: auto;
	height: auto;
	background: transparent;
	color: rgba(255, 255, 255, 0.76);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
	opacity: 0.92;
	transition: color 180ms ease, transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.hero__control svg {
	display: block;
	width: clamp(1.4rem, 2vw, 2rem);
	height: clamp(1.4rem, 2vw, 2rem);
}

.hero__control path {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero__control:hover {
	transform: translateY(-50%) scale(1.06);
	color: #ffffff;
	opacity: 1;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.38));
}

.hero__control:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 3px;
}

.hero__control--prev {
	left: 0.75rem;
}

.hero__control--next {
	right: 0.75rem;
}

.card-grid {
	display: grid;
	gap: 1.4rem;
}

.card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.quote-card,
.price-card,
.contact-card,
.page-info-card {
	padding: 1.5rem;
}

.offer-splide {
	position: relative;
	padding: 0 3.4rem;
}

.content-splide {
	position: relative;
	padding: 0 3.4rem;
}

.offer-slide {
	display: flex;
	flex-direction: column;
	min-height: 280px;
	padding: 2rem;
	height: 100%;
}

.offer-slide .card__link {
	margin-top: auto;
	padding-top: 1.4rem;
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.2rem;
}

.offer-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 430px;
	padding: 1.75rem;
	overflow: hidden;
	isolation: isolate;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1.2rem;
	background:
		linear-gradient(180deg, rgba(18, 22, 26, 0.92), rgba(9, 11, 13, 0.94)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 42%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow:
		0 26px 50px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	--mouse-x: 50%;
	--mouse-y: 50%;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	--shift-x: 0px;
	--shift-y: 0px;
	transition:
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 260ms ease,
		box-shadow 260ms ease,
		background-color 260ms ease;
	will-change: transform, box-shadow;
}

.offer-card.is-featured {
	border-color: rgba(0, 197, 111, 0.85);
	background:
		linear-gradient(180deg, rgba(10, 46, 30, 0.78), rgba(6, 15, 11, 0.94)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 42%);
}

.offer-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0.015) 54%, rgba(2, 144, 81, 0.09)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%);
	transition: opacity 260ms ease, transform 260ms ease;
	pointer-events: none;
}

.offer-card::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 0;
	border-radius: calc(1.2rem - 1px);
	opacity: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025) 18%, transparent 44%),
		linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 72%, rgba(2, 144, 81, 0.08));
	transition: opacity 260ms ease, background-position 260ms ease;
	pointer-events: none;
}

.offer-card > * {
	position: relative;
	z-index: 1;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-card:hover {
	transform:
		perspective(1200px)
		translate3d(0, -4px, 0)
		rotateX(var(--tilt-x))
		rotateY(var(--tilt-y));
	border-color: rgba(255, 255, 255, 0.24);
	background:
		linear-gradient(180deg, rgba(28, 34, 39, 0.9), rgba(12, 14, 17, 0.92)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 42%);
	box-shadow:
		0 24px 52px rgba(0, 0, 0, 0.34),
		0 0 0 1px rgba(255, 255, 255, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer-card:hover::before {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.offer-card:hover::after {
	opacity: 1;
}

.offer-card.is-featured:hover {
	border-color: rgba(0, 197, 111, 1);
	background:
		linear-gradient(180deg, rgba(13, 58, 38, 0.82), rgba(8, 19, 14, 0.92)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 42%);
	box-shadow:
		0 26px 58px rgba(0, 42, 24, 0.42),
		0 0 0 1px rgba(0, 197, 111, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.offer-card:hover .offer-card__top,
.offer-card:hover .offer-card__eyebrow,
.offer-card:hover h3 {
	transform: translate3d(calc(var(--shift-x) * 0.35), calc(var(--shift-y) * 0.35), 0);
}

.offer-card:hover .offer-card__text,
.offer-card:hover .offer-card__link {
	transform: translate3d(calc(var(--shift-x) * 0.18), calc(var(--shift-y) * 0.18), 0);
}

.offer-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.9rem;
}

.offer-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.8rem;
	background: rgba(0, 197, 111, 0.14);
	color: var(--primary-2);
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer-card__eyebrow {
	margin: 0 0 0.9rem;
	color: var(--primary-2);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.offer-card h3 {
	margin: 0 0 1rem;
	font-size: clamp(1.65rem, 2vw, 2.25rem);
	line-height: 1.08;
}

.offer-card__text {
	margin: 0;
	color: rgba(206, 214, 224, 0.84);
	font-size: 1.02rem;
	line-height: 1.65;
}

.offer-card__link {
	margin-top: auto;
	padding-top: 2rem;
	color: var(--primary-2);
	font-weight: 700;
}

@media (hover: none) {
	.offer-card:hover {
		transform: none;
	}

	.trainer-slide-card:hover,
	.testimonials-splide .quote-card:hover,
	.personal-pricing-card:hover {
		transform: none;
	}

	.offer-card::before,
	.offer-card::after,
	.offer-card:hover::before,
	.trainer-slide-card::before,
	.trainer-slide-card::after,
	.trainer-slide-card:hover::before,
	.testimonials-splide .quote-card::before,
	.testimonials-splide .quote-card::after,
	.testimonials-splide .quote-card:hover::before,
	.personal-pricing-card::before,
	.personal-pricing-card::after,
	.personal-pricing-card:hover::before {
		opacity: 0;
	}

	.offer-card:hover > *,
	.trainer-slide-card:hover > *,
	.testimonials-splide .quote-card:hover > *,
	.personal-pricing-card:hover > * {
		transform: none;
	}
}

@media (max-width: 1180px) {
	.offer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

	.offer-card {
		min-height: 0;
	}

	.offer-card__text {
		max-width: none;
	}
}

.offer-splide .splide__track {
	padding: 0.4rem 0 0.2rem;
}

.content-splide .splide__track {
	padding: 0.4rem 0 0.2rem;
}

.offer-splide .splide__slide {
	height: auto;
}

.content-splide .splide__slide {
	display: flex;
	height: auto;
}

.trainers-splide .splide__slide {
	height: 400px;
}

.offer-splide .splide__arrows {
	position: static;
}

.content-splide .splide__arrows {
	position: static;
}

.offer-splide .splide__arrow {
	position: absolute;
	top: calc(50% - 1.3rem);
	width: 2.6rem;
	height: 2.6rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(11, 13, 16, 0.72);
	opacity: 1;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	z-index: 3;
}

.content-splide .splide__arrow {
	position: absolute;
	top: calc(50% - 1.3rem);
	width: 2.6rem;
	height: 2.6rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(11, 13, 16, 0.72);
	opacity: 1;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	z-index: 3;
}

.offer-splide .splide__arrow--prev {
	left: 0;
}

.content-splide .splide__arrow--prev {
	left: 0;
}

.offer-splide .splide__arrow--next {
	right: 0;
}

.content-splide .splide__arrow--next {
	right: 0;
}

.offer-splide .splide__arrow svg {
	fill: var(--text);
	width: 1rem;
	height: 1rem;
}

.content-splide .splide__arrow svg {
	fill: var(--text);
	width: 1rem;
	height: 1rem;
}

.offer-splide .splide__arrow--prev svg {
	transform: rotate(180deg);
}

.content-splide .splide__arrow--prev svg {
	transform: rotate(180deg);
}

.offer-splide .splide__arrow:hover:not(:disabled) {
	background: rgba(2, 144, 81, 0.32);
}

.content-splide .splide__arrow:hover:not(:disabled) {
	background: rgba(2, 144, 81, 0.32);
}

.offer-splide .splide__arrow:disabled {
	opacity: 0.38;
}

.content-splide .splide__arrow:disabled {
	opacity: 0.38;
}

.offer-splide .splide__pagination {
	position: static;
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 1.2rem;
	padding: 0;
}

.content-splide .splide__pagination {
	position: static;
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 1.2rem;
	padding: 0;
}

.offer-splide .splide__pagination__page {
	width: 0.7rem;
	height: 0.7rem;
	margin: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.25);
	opacity: 1;
	transform: none;
}

.content-splide .splide__pagination__page {
	width: 0.7rem;
	height: 0.7rem;
	margin: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.25);
	opacity: 1;
	transform: none;
}

.offer-splide .splide__pagination__page.is-active {
	background: var(--primary-2);
}

.content-splide .splide__pagination__page.is-active {
	background: var(--primary-2);
}

.offer-splide.is-static .splide__arrows,
.offer-splide.is-static .splide__pagination,
.offer-splide--static .splide__arrows,
.offer-splide--static .splide__pagination {
	display: none;
}

.content-splide.is-static .splide__arrows,
.content-splide.is-static .splide__pagination,
.content-splide--static .splide__arrows,
.content-splide--static .splide__pagination {
	display: none;
}

.trainer-slide-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	overflow: hidden;
	isolation: isolate;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(18, 22, 26, 0.92), rgba(9, 11, 13, 0.94)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 42%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		0 18px 34px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	--mouse-x: 50%;
	--mouse-y: 50%;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	--shift-x: 0px;
	--shift-y: 0px;
	transition:
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 260ms ease,
		box-shadow 260ms ease,
		background-color 260ms ease;
	will-change: transform, box-shadow;
}

.trainer-slide-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0.015) 54%, rgba(2, 144, 81, 0.09)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%);
	transition: opacity 260ms ease, transform 260ms ease;
	pointer-events: none;
}

.trainer-slide-card::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 0;
	border-radius: 21px;
	opacity: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025) 18%, transparent 44%),
		linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 72%, rgba(2, 144, 81, 0.08));
	transition: opacity 260ms ease, background-position 260ms ease;
	pointer-events: none;
}

.trainer-slide-card > * {
	position: relative;
	z-index: 1;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.trainer-slide-card:hover {
	transform:
		perspective(1200px)
		translate3d(0, -4px, 0)
		rotateX(var(--tilt-x))
		rotateY(var(--tilt-y));
	border-color: rgba(255, 255, 255, 0.24);
	background:
		linear-gradient(180deg, rgba(28, 34, 39, 0.9), rgba(12, 14, 17, 0.92)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 42%);
	box-shadow:
		0 24px 52px rgba(0, 0, 0, 0.34),
		0 0 0 1px rgba(255, 255, 255, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trainer-slide-card:hover::before {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.trainer-slide-card:hover::after {
	opacity: 1;
}

.trainer-slide-card:hover .trainer-slide-card__body,
.trainer-slide-card:hover .trainer-slide-card__media {
	transform: translate3d(calc(var(--shift-x) * 0.18), calc(var(--shift-y) * 0.18), 0);
}

.trainer-slide-card:hover .card__eyebrow,
.trainer-slide-card:hover h3,
.trainer-slide-card:hover .trainer-slide-card__experience {
	transform: translate3d(calc(var(--shift-x) * 0.35), calc(var(--shift-y) * 0.35), 0);
}

.trainer-slide-card:hover .trainer-slide-card__bio,
.trainer-slide-card:hover .trainer-slide-card__link {
	transform: translate3d(calc(var(--shift-x) * 0.18), calc(var(--shift-y) * 0.18), 0);
}

.trainer-slide-card__media {
	overflow: hidden;
	height: 200px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
		linear-gradient(135deg, #141b1f, #101518);
}

.trainer-slide-card__media img,
.trainer-slide-card__media .trainer-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.trainer-slide-card__media .trainer-card__placeholder {
	position: relative;
	display: grid;
	place-items: center;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
		linear-gradient(135deg, #141b1f, #101518);
}

.trainer-slide-card__media .trainer-card__placeholder::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.18) 0 7px, transparent 8px),
		radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.1) 0 13px, transparent 14px);
	opacity: 0.48;
	transform: translate(-50%, -50%);
}

.trainer-slide-card__body {
	display: grid;
	flex: 1;
	grid-template-rows: auto auto 1.5rem minmax(0, 1fr) auto;
	min-height: 200px;
	padding: 0.8rem 0.8rem 0.85rem;
}

.trainer-slide-card__body p {
	color: var(--muted);
}

.trainers-splide .trainer-slide-card__body h3 {
	margin: 0.1rem 0 0.3rem;
	font-size: 0.92rem;
}

.trainers-splide .trainer-slide-card__body p {
	font-size: 0.76rem;
	line-height: 1.4;
}

.trainers-splide .card__eyebrow {
	margin-bottom: 0.35rem;
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.56);
}

.trainer-slide-card__experience {
	display: inline-flex;
	align-self: flex-start;
	margin: 0 0 0.4rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.58rem;
	font-weight: 700;
	line-height: 1.2;
}

.trainer-slide-card__experience.is-empty {
	visibility: hidden;
}

.trainer-slide-card__bio {
	margin: 0;
	line-height: 1.4;
	max-height: calc(2 * 1.4em);
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.trainer-slide-card__link {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	justify-content: center;
	margin-top: 0.65rem;
	padding: 0.56rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.94);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.trainer-slide-card__link:hover {
	transform: translateY(-1px);
	background: rgba(2, 144, 81, 0.18);
	border-color: rgba(2, 144, 81, 0.32);
	color: #ffffff;
}

.trainer-slide-card__link--empty {
	visibility: hidden;
}

.trainers-splide .splide__track {
	padding: 0.35rem 0;
}

.trainers-splide .splide__arrow {
	top: calc(50% - 1rem);
	width: 2.2rem;
	height: 2.2rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(12px);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.trainers-splide .splide__arrow:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.16);
}

.trainers-splide .splide__pagination__page {
	width: 0.58rem;
	height: 0.58rem;
	background: rgba(255, 255, 255, 0.2);
}

.trainers-splide .splide__pagination__page.is-active {
	background: var(--primary);
}

.testimonials-splide .quote-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	width: 100%;
	overflow: hidden;
	isolation: isolate;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	background:
		linear-gradient(180deg, rgba(18, 22, 26, 0.92), rgba(9, 11, 13, 0.94)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 42%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		0 18px 34px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	--mouse-x: 50%;
	--mouse-y: 50%;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	--shift-x: 0px;
	--shift-y: 0px;
	transition:
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 260ms ease,
		box-shadow 260ms ease,
		background-color 260ms ease;
	will-change: transform, box-shadow;
}

.testimonials-splide .quote-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0.015) 54%, rgba(2, 144, 81, 0.09)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%);
	transition: opacity 260ms ease, transform 260ms ease;
	pointer-events: none;
}

.testimonials-splide .quote-card::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 0;
	border-radius: calc(var(--radius) - 1px);
	opacity: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025) 18%, transparent 44%),
		linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 72%, rgba(2, 144, 81, 0.08));
	transition: opacity 260ms ease, background-position 260ms ease;
	pointer-events: none;
}

.testimonials-splide .quote-card > * {
	position: relative;
	z-index: 1;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-splide .quote-card:hover {
	transform:
		perspective(1200px)
		translate3d(0, -4px, 0)
		rotateX(var(--tilt-x))
		rotateY(var(--tilt-y));
	border-color: rgba(255, 255, 255, 0.24);
	background:
		linear-gradient(180deg, rgba(28, 34, 39, 0.9), rgba(12, 14, 17, 0.92)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 42%);
	box-shadow:
		0 24px 52px rgba(0, 0, 0, 0.34),
		0 0 0 1px rgba(255, 255, 255, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.testimonials-splide .quote-card:hover::before {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.testimonials-splide .quote-card:hover::after {
	opacity: 1;
}

.testimonials-splide .quote-card:hover .quote-card__stars,
.testimonials-splide .quote-card:hover .quote-card__text {
	transform: translate3d(calc(var(--shift-x) * 0.25), calc(var(--shift-y) * 0.25), 0);
}

.testimonials-splide .quote-card:hover .quote-card__author-row,
.testimonials-splide .quote-card:hover .quote-card__avatar,
.testimonials-splide .quote-card:hover .quote-card__author-meta {
	transform: translate3d(calc(var(--shift-x) * 0.18), calc(var(--shift-y) * 0.18), 0);
}

.testimonials-splide .splide__slide {
	display: block;
	height: auto;
}

.card__index {
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-2);
}

.card h3,
.trainer-card h3,
.quote-card__author,
.price-card h3 {
	margin: 0.5rem 0 0.7rem;
	font-size: 1.45rem;
	font-family: "Space Grotesk", sans-serif;
}

.card__link,
.trainer-card__meta a,
.trainer-card {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	padding: 0;
	overflow: hidden;
}

.trainer-card__media img,
.trainer-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background:
		linear-gradient(180deg, rgba(2, 144, 81, 0.16), rgba(0, 0, 0, 0.3)),
		linear-gradient(135deg, #2a323b, #171d23);
}

.trainer-card__body {
	padding: 1.6rem;
}

.trainer-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.2rem;
}

.trainer-profiles {
	display: grid;
	gap: 1.8rem;
}

.trainer-profile-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	overflow: hidden;
	scroll-margin-top: 7rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
	box-shadow: var(--shadow);
}

.trainer-profile-card__media img,
.trainer-profile-card__media .trainer-card__placeholder {
	width: 100%;
	height: 100%;
	min-height: 460px;
	object-fit: cover;
	object-position: top center;
}

.trainer-profile-card__body {
	display: flex;
	flex-direction: column;
	padding: 2rem;
}

.trainer-profile-card__body h3 {
	margin: 0.55rem 0 0.8rem;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-family: "Space Grotesk", sans-serif;
}

.trainer-profile-card__bio {
	margin: 0;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--muted);
}

.trainer-profile-card__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.6rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trainer-profile-card__detail {
	display: grid;
	gap: 0.35rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.02);
}

.trainer-profile-card__detail span {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary-soft);
}

.trainer-profile-card__detail strong,
.trainer-profile-card__detail a {
	font-size: 1rem;
	color: var(--text);
}

.quote-card__stars {
	font-size: 1.6rem;
	letter-spacing: 0.18em;
	line-height: 1;
	color: var(--primary-2);
}

.quote-card__author-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1.2rem;
}

.quote-card__author-meta {
	min-width: 0;
}

.quote-card__avatar {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 999px;
	object-fit: cover;
	flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(145deg, rgba(2, 144, 81, 0.34), rgba(255, 255, 255, 0.08));
}

.quote-card__avatar--placeholder {
	display: block;
}

.quote-card__author {
	margin: 0;
}

.quote-card__role {
	margin: 0.35rem 0 0;
}

.price-card__price {
	display: flex;
	align-items: baseline;
	gap: 0.7rem;
}

.price-card__price span {
	font-size: 2.4rem;
	font-weight: 800;
	font-family: "Space Grotesk", sans-serif;
	color: var(--text);
}

.price-card__features {
	margin: 1.1rem 0 1.4rem;
	padding-left: 1.1rem;
	color: var(--muted);
}

.pricing-section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-bottom: 2rem;
}

.pricing-section-head__content {
	margin-bottom: 0;
}

.pricing-meta-row {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 1rem;
}

.pricing-entry-fee {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

.pricing-entry-fee strong {
	color: var(--primary);
}

.pricing-entry-fee--padding {
	padding-bottom: 10px;
}

.pricing-image-stack {
	display: grid;
	gap: 1.4rem;
}

.pricing-image-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) + 4px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top left, rgba(2, 144, 81, 0.2), transparent 38%);
	box-shadow: var(--shadow);
}

.pricing-image-card--left {
	margin-right: 5.5rem;
}

.pricing-image-card--right {
	margin-left: 5.5rem;
}

.pricing-image-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 12, 15, 0.08), rgba(10, 12, 15, 0.22)),
		linear-gradient(135deg, rgba(2, 144, 81, 0.08), transparent 42%);
	pointer-events: none;
	z-index: 1;
}

.pricing-image-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 6px;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	z-index: 2;
}

.pricing-image-card img {
	display: block;
	width: 100%;
	max-height: 760px;
	object-fit: cover;
	object-position: center;
	transition: transform 420ms ease;
	transform: scale(1);
}

.pricing-image-card:hover img {
	transform: scale(1.035);
}

.pricing-layout {
	display: grid;
	gap: 2rem;
}

.pricing-block {
	display: grid;
	gap: 1rem;
}

.pricing-block__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"eyebrow fee"
		"title fee";
	gap: 0.4rem 1rem;
	align-items: end;
}

.pricing-block__eyebrow {
	grid-area: eyebrow;
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.pricing-block__title {
	grid-area: title;
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.pricing-block__header .pricing-entry-fee {
	grid-area: fee;
	align-self: end;
}

.pricing-table-shell {
	overflow-x: auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	background: #090909;
	box-shadow: var(--shadow);
}

.pricing-table {
	width: 100%;
	min-width: 780px;
	border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
	padding: 1.15rem 1.35rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.pricing-table thead th {
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.78);
	background: rgba(255, 255, 255, 0.02);
}

.pricing-table thead th:first-child {
	width: 22%;
}

.pricing-table tbody th {
	text-align: left;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.54);
	background: rgba(0, 0, 0, 0.82);
}

.pricing-table tbody td {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text);
	background: rgba(0, 0, 0, 0.82);
}

.pricing-table__row--savings td {
	color: var(--primary) !important;
}

.pricing-table .is-featured {
	color: var(--primary);
	background:
		linear-gradient(180deg, rgba(2, 144, 81, 0.14), rgba(2, 144, 81, 0.1)),
		rgba(1, 20, 11, 0.86);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
	border-bottom: 0;
}

.personal-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.personal-pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: visible;
	isolation: isolate;
	padding: 1.15rem 1rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.035), transparent 42%),
		rgba(8, 10, 12, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		0 18px 34px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	--mouse-x: 50%;
	--mouse-y: 50%;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	--shift-x: 0px;
	--shift-y: 0px;
	transition:
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 260ms ease,
		box-shadow 260ms ease,
		background-color 260ms ease;
	will-change: transform, box-shadow;
}

.personal-pricing-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0.015) 54%, rgba(2, 144, 81, 0.09)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%);
	transition: opacity 260ms ease, transform 260ms ease;
	pointer-events: none;
}

.personal-pricing-card::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 0;
	border-radius: 21px;
	opacity: 0;
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025) 18%, transparent 44%),
		linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 72%, rgba(2, 144, 81, 0.08));
	transition: opacity 260ms ease, background-position 260ms ease;
	pointer-events: none;
}

.personal-pricing-card > * {
	position: relative;
	z-index: 1;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.personal-pricing-card:hover {
	transform: translate3d(0, -4px, 0);
	border-color: rgba(255, 255, 255, 0.24);
	background:
		linear-gradient(180deg, rgba(28, 34, 39, 0.9), rgba(12, 14, 17, 0.92)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 42%);
	box-shadow:
		0 24px 52px rgba(0, 0, 0, 0.34),
		0 0 0 1px rgba(255, 255, 255, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.personal-pricing-card:hover::before {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.personal-pricing-card:hover::after {
	opacity: 1;
}

.personal-pricing-card.is-featured {
	border-color: rgba(2, 144, 81, 0.92);
	box-shadow:
		0 18px 36px rgba(0, 0, 0, 0.22),
		inset 0 0 0 1px rgba(2, 144, 81, 0.12);
}

.personal-pricing-card:hover .personal-pricing-card__main,
.personal-pricing-card:hover .personal-pricing-card__features {
	transform: none;
}

.personal-pricing-card:hover .personal-pricing-card__badge,
.personal-pricing-card:hover h4,
.personal-pricing-card:hover .personal-pricing-card__price,
.personal-pricing-card:hover .personal-pricing-card__note {
	transform: none;
}

.personal-pricing-card__main {
	display: block;
}

.personal-pricing-card__badge {
	display: inline-flex;
	align-self: flex-end;
	margin: 0 0 0.8rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: #d6ece5;
	color: #204a3d;
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.2;

	position: absolute;
	right: 10px;
	top: -15px;
}

.personal-pricing-card h4 {
	margin: 0 0 0.15rem;
	font-size: 1.05rem;
	font-family: "Space Grotesk", sans-serif;
}

.personal-pricing-card__label {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.88rem;
}

.personal-pricing-card__price {
	margin: 0.3rem 0 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 0.95;
	color: var(--text);
}

.personal-pricing-card__note {
	margin: 0.45rem 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.98rem;
	font-weight: 700;
}

.personal-pricing-card__intro {
	margin: 1rem 0 0;
	padding-bottom: 0.95rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(214, 221, 229, 0.88);
	font-size: 0.98rem;
	line-height: 1.45;
}

.personal-pricing-card__features {
	display: grid;
	gap: 0.7rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.personal-pricing-card__features li {
	position: relative;
	padding-left: 0.95rem;
	color: rgba(214, 221, 229, 0.88);
	font-size: 0.98rem;
	line-height: 1.35;
}
.personal-pricing-card__features li:last-child {
	margin-bottom: 20px;
}

.personal-pricing-card__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.56rem;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 999px;
	background: var(--primary);
}

.personal-pricing-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	font-weight: 800;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.personal-pricing-card__link:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
}

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

.contact-card > div {
	min-width: 0;
}

.contact-card strong {
	display: block;
	margin-top: 0.45rem;
	font-size: 1.05rem;
	line-height: 1.25;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.contact-cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.25rem;
}

.contact-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 0;
}

.contact-socials__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top left, rgba(2, 144, 81, 0.14), transparent 60%);
	color: var(--text);
	line-height: 0;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-socials__link:hover {
	transform: translateY(-2px);
	border-color: rgba(2, 144, 81, 0.5);
	background:
		linear-gradient(180deg, rgba(2, 144, 81, 0.18), rgba(255, 255, 255, 0.03)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 60%);
}

.contact-socials__link svg {
	width: 1.45rem;
	height: 1.45rem;
	display: block;
	flex: 0 0 auto;
	transform: translate3d(0, 0, 0);
	overflow: visible;
}

.contact-map-card {
	grid-column: 1 / -1;
	overflow: hidden;
	min-height: 320px;
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) - 6px);
	background: rgba(0, 0, 0, 0.5);
}

.contact-map-card iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: 0;
	filter: grayscale(0.2) contrast(1.05) saturate(0.9);
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.faq-item {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
}

.faq-item[open] {
	border-color: rgba(2, 144, 81, 0.35);
}

.faq-item__question {
	position: relative;
	display: block;
	padding: 1.25rem 4.5rem 1.25rem 1.5rem;
	cursor: pointer;
	list-style: none;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text);
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question::before,
.faq-item__question::after {
	content: "";
	position: absolute;
	right: 1.5rem;
	top: 50%;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: var(--primary);
	transform: translateY(-50%);
	transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item__question::after {
	transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__question::after {
	opacity: 0;
	transform: translateY(-50%) rotate(90deg) scaleX(0.25);
}

.faq-item__answer {
	padding: 0 1.5rem 1.4rem;
}

.faq-item__answer p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
	max-width: 72ch;
}

.page-shell {
	min-height: 60vh;
}

.page-hero {
	max-width: 760px;
	margin-bottom: 2rem;
}

.page-hero--narrow {
	max-width: 620px;
}

.page-info-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
}

.page-info-card strong {
	display: block;
	margin-top: 0.4rem;
}

.schedule-calendar {
	display: grid;
	gap: 1.5rem;
}

.schedule-calendar__toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: min(80vw, 1520px);
	margin: 0 auto;
	gap: 1rem;
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
}

.schedule-calendar__toolbar .section-kicker {
	margin-bottom: 0.55rem;
}

.schedule-calendar__range {
	margin: 0;
	max-width: 100%;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-family: "Space Grotesk", sans-serif;
}

.schedule-calendar__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.schedule-calendar__grid {
	display: grid;
	margin-top: 1.4rem;
}

.schedule-calendar__fullbleed {
	position: relative;
	width: min(80vw, 1520px);
	margin: 2rem auto 0;
	padding: 0;
}

.schedule-calendar__fullbleed::after {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	width: 52px;
	height: 52px;
	margin: -26px 0 0 -26px;
	border: 3px solid rgba(255, 255, 255, 0.12);
	border-top-color: var(--primary);
	border-radius: 999px;
	opacity: 0;
	pointer-events: none;
	transform: scale(0.9);
	transition: opacity 140ms ease, transform 140ms ease;
	z-index: 3;
}

.schedule-calendar.is-loading .schedule-calendar__fullbleed::after {
	opacity: 1;
	transform: scale(1);
	animation: schedule-spin 0.8s linear infinite;
}

.schedule-calendar.is-loading .schedule-calendar__grid {
	opacity: 0.38;
	transition: opacity 120ms ease;
}

.schedule-week__wrap {
	width: 100%;
	overflow-x: auto;
	padding-bottom: 0.2rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.schedule-week {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.85rem;
	min-width: 100%;
}

.schedule-day {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	min-height: 100%;
}

.schedule-day__header {
	display: grid;
	gap: 0.2rem;
	padding: 0 0.1rem;
}

.schedule-day__weekday {
	display: block;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--primary);
}

.schedule-day__date {
	display: block;
	font-size: clamp(1.65rem, 2vw, 2.15rem);
	line-height: 1;
	font-family: "Space Grotesk", sans-serif;
	color: var(--text);
}

.schedule-day__content {
	display: grid;
	align-content: start;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
	min-height: 224px;
}

.schedule-day__empty {
	margin: 0;
	min-height: 132px;
	padding: 0.75rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(8, 10, 12, 0.82), rgba(8, 10, 12, 0.68));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.94rem;
}

.schedule-session {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	width: 100%;
	min-width: 0;
	min-height: 132px;
	padding: 0.75rem 0.85rem;
	border: 1px solid rgba(2, 144, 81, 0.22);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(8, 191, 115, 0.14), rgba(255, 255, 255, 0.02)),
		rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.schedule-session h3 {
	margin: 0;
	min-width: 0;
	font-size: 1.02rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--text);
	overflow-wrap: anywhere;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.schedule-session p {
	margin: 0;
	font-size: 0.86rem;
	color: var(--muted);
}

.schedule-session__meta {
	font-size: 0.82rem !important;
	font-weight: 800;
	line-height: 1.2;
	color: var(--primary-2) !important;
	white-space: nowrap;
}

.schedule-session__trainer {
	color: rgba(255, 255, 255, 0.58) !important;
	font-weight: 500;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.schedule-session__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	margin-top: auto;
	min-width: 0;
}

.schedule-session__room {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	padding: 0.2rem 0.48rem;
	border: 1px solid rgba(2, 144, 81, 0.16);
	border-radius: 999px;
	background: rgba(2, 144, 81, 0.08);
	font-size: 0.68rem !important;
	line-height: 1;
	color: rgba(135, 240, 189, 0.66) !important;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.schedule-session__duration {
	flex: 0 0 auto;
	font-size: 0.72rem !important;
	color: rgba(255, 255, 255, 0.5) !important;
}

.site-footer {
	margin-top: auto;
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.site-footer__link {
	color: inherit;
	font-weight: inherit;
	opacity: 1;
	transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__link:hover {
	color: var(--text);
}

@keyframes schedule-spin {
	to {
		transform: rotate(360deg);
	}
}

.prose {
	max-width: 760px;
}

@media (min-width: 1200px) and (max-width: 1600px) {
	.schedule-session__top{
		flex-direction: column;
	}
	.schedule-session__aside, .schedule-session__aside-bottom{
		justify-items: start !important;
	}
}

@media (max-width: 1200px) {
	.hero__grid,
	.contact-box,
	.card-grid--three,
	.card-grid--two,
	.trainer-card {
		grid-template-columns: 1fr;
	}

	.pricing-section-head {
		flex-direction: column;
	}

	.pricing-block__header {
		grid-template-columns: 1fr;
		grid-template-areas:
			"eyebrow"
			"title"
			"fee";
		align-items: start;
	}

	.pricing-meta-row {
		justify-content: flex-start;
	}

	.pricing-entry-fee {
		text-align: left;
	}

	.page-info-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.trainer-profile-card {
		grid-template-columns: 1fr;
	}

	.trainer-profile-card__media img,
	.trainer-profile-card__media .trainer-card__placeholder {
		min-height: 360px;
	}

	.trainer-profile-card__details {
		grid-template-columns: 1fr;
	}

	.faq-item__question {
		padding-right: 4rem;
	}

	.schedule-calendar__toolbar {
		width: 100%;
		margin: 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.schedule-calendar__range {
		max-width: 100%;
	}

	.schedule-week__wrap {
		overflow: visible;
	}

	.schedule-week {
		grid-template-columns: 1fr;
		min-width: 0;
		gap: 1rem;
	}

	.schedule-day {
		display: grid;
		grid-template-columns: minmax(112px, 144px) minmax(0, 1fr);
		align-items: start;
		gap: 1rem;
	}

	.schedule-day + .schedule-day {
		padding-top: 1rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.schedule-day__header {
		padding-top: 0.35rem;
	}

	.schedule-day__content {
		min-height: 0;
	}

	.contact-card,
	.hero__frame {
		min-height: 420px;
	}

	.contact-card strong {
		font-size: 1rem;
	}

	.offer-splide {
		padding: 0 2.8rem;
	}

	.content-splide {
		padding: 0 2.8rem;
	}

	.pricing-image-card--left,
	.pricing-image-card--right {
		margin-left: 0;
		margin-right: 0;
	}

}

@media (max-width: 720px) {
	.site-header::after {
		display: none;
	}

	.site-header__inner,
	.site-footer__inner {
		align-items: center;
	}

	.site-header__inner {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
		position: relative;
		z-index: 32;
		transition: opacity 180ms ease, visibility 180ms ease;
	}

	body.menu-open .menu-toggle {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: 0;
		display: block;
		width: min(86vw, 360px);
		height: 100vh;
		padding: 6.25rem 1.15rem 1.15rem;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		background:
			linear-gradient(180deg, rgba(10, 12, 15, 0.98), rgba(12, 14, 17, 0.98)),
			radial-gradient(circle at top left, rgba(2, 144, 81, 0.14), transparent 32%);
		box-shadow: -24px 0 50px rgba(0, 0, 0, 0.35);
		z-index: 30;
		visibility: hidden;
		opacity: 0;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 280ms ease, opacity 220ms ease, visibility 0s linear 280ms;
		pointer-events: none;
	}

	.main-nav__brand {
		display: inline-flex;
		position: absolute;
		top: 1.25rem;
		left: 1.15rem;
		z-index: 2;
	}

	.main-nav__brand img,
	.main-nav__brand .custom-logo {
		max-height: 42px;
		max-width: 200px;
		width: auto;
		height: auto;
	}

	.menu-close {
		display: inline-flex;
		position: absolute;
		top: 1.15rem;
		right: 1.15rem;
		align-items: center;
		justify-content: center;
		width: 3.2rem;
		height: 3.2rem;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 999px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
			radial-gradient(circle at top left, rgba(2, 144, 81, 0.16), transparent 60%);
		color: var(--text);
		font-size: 1.65rem;
		line-height: 1;
		cursor: pointer;
		box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
		transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
	}

	.menu-close:hover {
		transform: rotate(90deg);
		border-color: rgba(255, 255, 255, 0.5);
		background:
			linear-gradient(180deg, rgba(2, 144, 81, 0.3), rgba(255, 255, 255, 0.03)),
			radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 60%);
	}

	.menu-backdrop {
		position: fixed;
		inset: 0;
		background:
			linear-gradient(180deg, rgba(5, 7, 9, 0.78), rgba(5, 7, 9, 0.88)),
			rgba(5, 7, 9, 0.82);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 240ms ease;
		z-index: 25;
	}

	body.menu-open .menu-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.main-nav::before {
		content: "";
		position: absolute;
		top: 0;
		left: -2.4rem;
		bottom: 0;
		width: 2.4rem;
		background: linear-gradient(90deg, transparent, rgba(10, 12, 15, 0.42));
		pointer-events: none;
	}

	.main-nav::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 1px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05));
		pointer-events: none;
	}

	.main-nav.is-visible {
		visibility: visible;
		transition-delay: 0s;
	}

	.main-nav.is-active {
		opacity: 1;
		transform: translateX(0);
		pointer-events: auto;
	}

	.main-nav__list {
		flex-direction: column;
		gap: 0;
		min-height: 100%;
		padding: 1rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 28px;
		background: rgba(10, 12, 15, 0.82);
		box-shadow: var(--shadow);
	}

	.main-nav__list li {
		width: 100%;
	}

	.main-nav__list a {
		display: block;
		padding: 1rem 1.05rem;
		border-radius: 18px;
		font-size: 1.1rem;
	}

	.main-nav__list a:hover {
		background: rgba(255, 255, 255, 0.04);
	}

	.section {
		padding: 4rem 0;
	}

	.hero__content {
		padding: 1rem 0 0;
	}

	.schedule-calendar__fullbleed {
		width: 100%;
		padding: 0 1rem;
	}

	.schedule-calendar__actions {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		overflow: visible;
		gap: 0.45rem;
	}

	.schedule-calendar__actions .button {
		width: 100%;
		min-width: 0;
		padding: 0.72rem 0.45rem;
		font-size: 0.78rem;
		line-height: 1.15;
		text-align: center;
	}

	.contact-card {
		gap: 1rem;
	}

	.contact-card strong {
		font-size: 0.96rem;
	}

	.schedule-week {
		gap: 0.85rem;
	}

	.schedule-day {
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 0.85rem;
	}

	.schedule-day + .schedule-day {
		padding-top: 0.85rem;
	}

	.schedule-day__weekday {
		font-size: 0.75rem;
	}

	.schedule-day__date {
		font-size: 1.85rem;
		line-height: 0.95;
	}

	.schedule-session {
		min-height: 0;
		padding: 0.7rem 0.8rem;
	}

	.schedule-session h3 {
		font-size: 0.98rem;
		line-height: 1.15;
	}

	.schedule-session__meta {
		font-size: 0.9rem !important;
		font-weight: 800;
		color: var(--text) !important;
	}

	.schedule-session__trainer {
		margin-top: 0.1rem !important;
		font-size: 0.82rem !important;
		color: rgba(255, 255, 255, 0.68) !important;
		font-weight: 500;
	}

	.schedule-session__bottom {
		gap: 0.55rem;
	}

	.schedule-session__room {
		font-size: 0.68rem !important;
		max-width: 96px;
		text-align: center;
	}

	.schedule-session__duration {
		font-size: 0.68rem !important;
		line-height: 1;
	}

	.offer-splide {
		padding: 0 0 3.8rem;
	}

	.content-splide {
		padding: 0 0 3.8rem;
	}

	.offer-splide .splide__arrow {
		top: auto;
		bottom: 0;
	}

	.content-splide .splide__arrow {
		top: auto;
		bottom: 0;
	}

	.offer-splide .splide__arrow--prev {
		left: calc(50% - 3.2rem);
	}

	.content-splide .splide__arrow--prev {
		left: calc(50% - 3.2rem);
	}

	.offer-splide .splide__arrow--next {
		right: calc(50% - 3.2rem);
	}

	.content-splide .splide__arrow--next {
		right: calc(50% - 3.2rem);
	}

	.offer-splide .splide__pagination {
		margin-top: 1.4rem;
	}

	.content-splide .splide__pagination {
		margin-top: 1.4rem;
	}

	.personal-pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.personal-pricing-card {
		min-height: 0;
	}

	.pricing-table-shell {
		margin: 0 -0.15rem;
		border-radius: 18px;
		-webkit-overflow-scrolling: touch;
	}

	.pricing-table {
		min-width: 620px;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 0.9rem 0.82rem;
	}

	.pricing-table thead th {
		font-size: 0.9rem;
	}

	.pricing-table thead th:first-child {
		width: 28%;
		min-width: 126px;
	}

	.pricing-table tbody th {
		font-size: 0.72rem;
		letter-spacing: 0.04em;
		line-height: 1.25;
	}

	.pricing-table tbody td {
		font-size: 1.35rem;
		white-space: nowrap;
	}
}

@media (max-width: 540px) {
	.personal-pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-table-shell {
		margin: 0 -0.35rem;
		border-radius: 16px;
	}

	.pricing-table {
		min-width: 560px;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 0.78rem 0.7rem;
	}

	.pricing-table thead th {
		font-size: 0.84rem;
	}

	.pricing-table thead th:first-child {
		min-width: 112px;
	}

	.pricing-table tbody th {
		font-size: 0.68rem;
	}

	.pricing-table tbody td {
		font-size: 1.16rem;
	}

	.hero__grid {
		grid-template-columns: 1fr;
	}

	.hero__grid > div:first-child {
		grid-row: 2; /* div1 idzie na dół */
	}

	.hero__grid > div:last-child {
		grid-row: 1; /* div2 idzie na górę */
	}
}
