:root {
	--ink: #413d58;
	--paper: #ffffff;
	--paper-strong: #ffffff;
	--coral: #f07b72;
	--coral-dark: #fa5f55;
	--sun: #fdb663;
	--lime: #8fbf60;
	--pink: #939da8;
	--skyless: #fafaff;
	--muted: rgba(65, 61, 88, 0.72);
	--muted-strong: rgba(65, 61, 88, 0.88);
	--line: rgba(65, 61, 88, 0.12);
	--shadow-soft: 0 16px 40px rgba(65, 61, 88, 0.08);
	--shadow-strong: 0 32px 80px rgba(65, 61, 88, 0.14);
	--radius-lg: 2rem;
	--radius-md: 1.35rem;
	--radius-sm: 1rem;
}

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

html {
	scroll-behavior: smooth;
	background: var(--paper);
}

body {
	font-family: 'Rubik', 'Roboto', Arial, sans-serif;
	color: var(--ink);
	line-height: 1.6;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 0% 0%, rgba(143, 191, 96, 0.1), transparent 26%),
		radial-gradient(circle at 100% 10%, rgba(143, 191, 96, 0.12), transparent 20%),
		radial-gradient(circle at 40% 100%, rgba(253, 182, 99, 0.12), transparent 22%),
		linear-gradient(180deg, #ffffff 0%, #fafaff 52%, #ffffff 100%);
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(22, 22, 22, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: 0.25;
	mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
	z-index: -2;
}

body.menu-open {
	overflow: hidden;
}

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

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

ul {
	list-style: none;
}

.hidden {
	display: none !important;
}

.relative {
	position: relative;
}

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

@media (min-width: 768px) {
	.container {
		width: min(1240px, calc(100% - 3rem));
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3.2rem;
	padding: 0.92rem 1.55rem;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-size: 0.94rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--primary {
	background: linear-gradient(135deg, var(--ink) 0%, #5e6d61 52%, var(--sun) 100%);
	color: var(--paper-strong);
	box-shadow: 0 18px 40px rgba(65, 61, 88, 0.18);
}

.btn--sm {
	min-height: 2.8rem;
	padding: 0.72rem 1.2rem;
	font-size: 0.84rem;
}

.btn--lg {
	min-height: 3.55rem;
	padding: 1rem 1.85rem;
	font-size: 1rem;
}

.btn--glass {
	background: rgba(255, 255, 255, 0.14);
	color: var(--paper-strong);
	border: 1px solid rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.glass,
.glass-light {
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: var(--shadow-soft);
}

.glass {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-light {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: var(--shadow-strong);
}

.fade-up,
.fade-left,
.fade-right,
.scale-in {
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up {
	transform: translateY(38px);
}

.fade-left {
	transform: translateX(-38px);
}

.fade-right {
	transform: translateX(38px);
}

.scale-in {
	transform: scale(0.92);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.gradient-text {
	background: linear-gradient(135deg, var(--ink) 0%, var(--lime) 40%, var(--sun) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-center {
	text-align: center;
}

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

.text-white {
	color: var(--paper-strong);
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding-top: 0.85rem;
	transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
	padding-top: 0.35rem;
	background: rgba(255, 248, 236, 0.8);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 12px 30px rgba(86, 48, 20, 0.08);
	border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}

.header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 4.8rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.54);
	border: 1px solid rgba(255, 255, 255, 0.52);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 10px 34px rgba(86, 48, 20, 0.08);
}

.header__logo {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
}

.header__logo-icon {
	width: 2.9rem;
	height: 2.9rem;
	display: grid;
	place-items: center;
	border-radius: 1rem;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--ink) 0%, var(--lime) 55%, var(--sun) 100%);
	color: var(--paper-strong);
	box-shadow: 0 12px 24px rgba(65, 61, 88, 0.18);
}

.header__logo-copy {
	display: flex;
	flex-direction: column;
	gap: 0.08rem;
}

.header__logo-text {
	font-family: 'Oswald', sans-serif;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

.header__logo-sub {
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(22, 22, 22, 0.46);
	white-space: nowrap;
}

.header__menu {
	display: none;
	align-items: center;
	gap: 1.7rem;
}

.header__mobile-lang {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: 0.5rem;
}

@media (min-width: 768px) {
	.header__menu {
		display: flex;
	}

	.header__mobile-lang {
		display: none;
	}
}

/* Language switcher */
.lang-switch {
	display: flex;
	gap: 0.25rem;
	background: rgba(65, 61, 88, 0.08);
	border-radius: 0.5rem;
	padding: 0.15rem;
}

.lang-switch__btn {
	padding: 0.25rem 0.6rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 0.4rem;
	color: rgba(65, 61, 88, 0.6);
	transition: all 0.2s ease;
	text-decoration: none;
}

.lang-switch__btn:hover {
	color: var(--ink);
}

.lang-switch__btn--active {
	background: var(--coral);
	color: #fff;
}

.scrolled .lang-switch {
	background: rgba(65, 61, 88, 0.06);
}

.mobile-menu__lang {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin: 0.5rem 0;
}

.mobile-menu__lang .lang-switch__btn {
	padding: 0.5rem 1.2rem;
	font-size: 0.9rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

.mobile-menu__lang .lang-switch__btn:hover {
	color: #fff;
}

.mobile-menu__lang .lang-switch__btn--active {
	background: var(--coral);
	color: #fff;
}

.header__link,
.footer__link {
	position: relative;
	font-size: 0.92rem;
	font-weight: 600;
	color: rgba(22, 22, 22, 0.78);
	transition: color 0.2s ease;
}

.header__link::after,
.footer__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.32rem;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.header__link:hover,
.footer__link:hover {
	color: var(--coral);
}

.header__link:hover::after,
.footer__link:hover::after {
	transform: scaleX(1);
}

.header__burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(22, 22, 22, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	color: var(--ink);
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.header__burger:hover {
	background: rgba(255, 255, 255, 0.96);
	transform: translateY(-1px);
}

@media (min-width: 768px) {
	.header__burger {
		display: none;
	}
}

.mobile-menu {
	position: fixed;
	top: 5.65rem;
	left: 1rem;
	right: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.4rem;
	border-radius: 1.8rem;
	background: linear-gradient(135deg, rgba(65, 61, 88, 0.98), rgba(54, 66, 76, 0.98));
	color: var(--paper-strong);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 28px 60px rgba(65, 61, 88, 0.24);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px) scale(0.98);
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 90;
}

.mobile-menu.open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.mobile-menu__eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.74);
	padding-bottom: 0.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu__link {
	font-size: 1rem;
	font-weight: 700;
	padding: 0.5rem 0;
	color: rgba(255, 255, 255, 0.95);
}

.hero {
	position: relative;
	min-height: 100vh;
	padding: 8rem 0 4rem;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(253, 182, 99, 0.34), transparent 22%),
		radial-gradient(circle at 88% 18%, rgba(143, 191, 96, 0.24), transparent 18%),
		radial-gradient(circle at 55% 80%, rgba(147, 157, 168, 0.2), transparent 20%),
		linear-gradient(135deg, #413d58 0%, #36424c 54%, #8fbf60 100%);
	color: var(--paper-strong);
}

.hero::before,
.hero::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(54px);
	pointer-events: none;
}

.hero::before {
	width: 24rem;
	height: 24rem;
	left: -8rem;
	bottom: 2rem;
	background: rgba(253, 182, 99, 0.28);
}

.hero::after {
	width: 20rem;
	height: 20rem;
	right: -4rem;
	top: 2rem;
	background: rgba(143, 191, 96, 0.18);
}

.hero__bubbles,
.hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__grid {
	background:
		linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
	background-size: 112px 112px;
	opacity: 0.2;
	mask-image: radial-gradient(circle at center, black 28%, transparent 88%);
}

.bubble {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.16);
	animation: bubble-rise linear forwards;
	opacity: 0.42;
}

.hero__content {
	position: relative;
	z-index: 2;
	padding-top: 1.2rem;
}

.hero__grid-2col {
	display: grid;
	gap: 2.6rem;
	align-items: center;
}

@media (min-width: 1080px) {
	.hero__grid-2col {
		grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
		gap: 3rem;
	}
}

.hero__text-col {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-start;
}

.hero__badge,
.section__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: fit-content;
	min-height: 2.7rem;
	padding: 0.72rem 1rem;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
}

.hero__badge {
	background: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding-inline: 1.15rem 1.25rem;
}

.hero__badge-dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--sun);
	box-shadow: 0 0 0 6px rgba(253, 182, 99, 0.18);
	animation: pulse 2s ease-in-out infinite;
}

.hero__title,
.section__title,
.bio-story__title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: -0.03em;
}

.hero__title {
	font-size: clamp(2.8rem, 7.6vw, 5.8rem);
	max-width: 8.8ch;
}

.hero__subtitle {
	max-width: 39rem;
	font-size: clamp(1.02rem, 2.2vw, 1.16rem);
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.9);
}

.hero__subtitle strong {
	color: var(--paper-strong);
	font-weight: 700;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	padding-top: 0.35rem;
}

.hero__milestones {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	max-width: 38rem;
	padding-top: 0.6rem;
}

.hero__milestone {
	padding: 1rem 1.05rem;
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__milestone-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.68);
	margin-bottom: 0.28rem;
}

.hero__milestone-value {
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.94);
}

.hero__milestone-value--cyan {
	color: var(--sun);
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	max-width: 37rem;
	padding-top: 0.95rem;
}

.hero__stats>div {
	padding: 1rem 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
	border-radius: 1rem;
}

.hero__stat-num {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1;
	color: var(--paper-strong);
	margin-bottom: 0.35rem;
}

.hero__stat-label {
	font-size: 0.76rem;
	line-height: 1.45;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.72);
}

.hero__chart {
	position: relative;
	padding: 1.35rem;
	border-radius: 2rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 32px 90px rgba(65, 61, 88, 0.2);
	overflow: hidden;
}

.hero__chart::before {
	content: '';
	position: absolute;
	inset: auto -10% -35% auto;
	width: 14rem;
	height: 14rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(143, 191, 96, 0.2), transparent 65%);
	filter: blur(20px);
}

.hero__chart-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	align-items: center;
	margin-bottom: 1rem;
}

.hero__chart-title {
	font-size: 1.18rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.hero__chart-period {
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.62);
}

.hero__chart-note {
	margin-top: 1rem;
	padding: 0.95rem 1rem;
	border-radius: 1.1rem;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.88rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.chart-line {
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	animation: draw-line 2.8s ease forwards;
}

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.54);
	animation: bounce 2.2s ease-in-out infinite;
}

.section {
	position: relative;
	padding: clamp(4.8rem, 9vw, 8rem) 0;
}

.section--dark {
	background:
		radial-gradient(circle at 18% 20%, rgba(143, 191, 96, 0.16), transparent 18%),
		linear-gradient(180deg, #fafaff 0%, #ffffff 100%);
	color: var(--ink);
	overflow: hidden;
}

.section--white {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 255, 0.98));
}

.section--navy {
	background:
		radial-gradient(circle at 15% 20%, rgba(250, 95, 85, 0.1), transparent 18%),
		radial-gradient(circle at 85% 70%, rgba(143, 191, 96, 0.12), transparent 20%),
		linear-gradient(135deg, #fafaff 0%, #ffffff 54%, #fafaff 100%);
	color: var(--ink);
	overflow: hidden;
}

.section__badge {
	margin: 0 auto 1.4rem;
	font-size: 0.72rem;
}

.section__badge--cyan {
	background: rgba(143, 191, 96, 0.12);
	color: #628343;
	border: 1px solid rgba(143, 191, 96, 0.16);
}

.section__badge--navy {
	background: rgba(143, 191, 96, 0.14);
	color: #628343;
	border: 1px solid rgba(143, 191, 96, 0.2);
}

.section__badge--glass {
	background: rgba(147, 157, 168, 0.14);
	color: #6e7580;
	border: 1px solid rgba(147, 157, 168, 0.18);
}

.section__title {
	font-size: clamp(2.6rem, 7vw, 5rem);
	margin-bottom: 1rem;
	color: var(--ink);
}

.section__title--white {
	color: var(--ink);
}

.section__subtitle {
	max-width: 48rem;
	margin: 0 auto 3.6rem;
	font-size: clamp(1rem, 2vw, 1.1rem);
	line-height: 1.9;
	color: var(--muted);
}

.section__subtitle--muted {
	color: rgba(22, 22, 22, 0.7);
}

.section__subtitle--muted strong {
	color: rgba(22, 22, 22, 0.86);
}

.section__subtitle--navy {
	color: var(--muted);
}

.aquarium-grid,
.pillars-grid,
.steps-grid,
.gallery,
.bio-grid,
.synergy__cards {
	position: relative;
	z-index: 1;
}

.aquarium-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 72rem;
	margin: 0 auto;
}

@media (min-width: 840px) {
	.aquarium-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.aquarium-card,
.pillar,
.step-card,
.contact__form-wrap,
.synergy__quote,
.gallery__item,
.bio-photo {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.aquarium-card {
	padding: 2rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 239, 0.94));
	border: 1px solid rgba(22, 22, 22, 0.08);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.aquarium-card:hover,
.pillar:hover,
.step-card:hover,
.gallery__item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-strong);
}

.aquarium-card:hover {
	border-color: rgba(143, 191, 96, 0.24);
}

.aquarium-card--bad:hover {
	border-color: rgba(147, 157, 168, 0.28);
}

.aquarium-card__glow,
.pillar__glow,
.synergy__decor {
	position: absolute;
	border-radius: 50%;
	filter: blur(52px);
	pointer-events: none;
}

.aquarium-card__glow {
	top: 0;
	right: 0;
	width: 8rem;
	height: 8rem;
}

.aquarium-card__glow--red {
	background: rgba(253, 182, 99, 0.14);
}

.aquarium-card__glow--cyan {
	background: rgba(143, 191, 96, 0.18);
}

.aquarium-card__icon,
.pillar__icon,
.step-card__icon,
.form__success-icon {
	display: grid;
	place-items: center;
	border-radius: 1.25rem;
}

.aquarium-card__icon {
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.35rem;
}

.aquarium-card__icon--red {
	background: rgba(253, 182, 99, 0.16);
	color: #c8893e;
}

.aquarium-card__icon--cyan {
	background: rgba(143, 191, 96, 0.16);
	color: #628343;
}

.aquarium-card__title {
	font-size: 1.35rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--ink);
}

.aquarium-card__list,
.pillar__list,
.bio-story__text {
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
}

.aquarium-card__item,
.pillar__item {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	line-height: 1.6;
}

.aquarium-card__item {
	color: var(--muted);
}

.cell-chain {
	margin-top: 4rem;
	padding: 1.8rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 238, 0.96));
	border: 1px solid rgba(22, 22, 22, 0.08);
	text-align: center;
}

.cell-chain__label {
	margin-bottom: 1.35rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(22, 22, 22, 0.5);
}

.cell-chain__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.85rem;
}

.cell-chain__item {
	padding: 0.9rem 1.2rem;
	border-radius: 999px;
	background: rgba(253, 182, 99, 0.2);
	color: var(--ink);
	font-weight: 700;
	border: 1px solid rgba(253, 182, 99, 0.24);
}

.cell-chain__item--active {
	background: rgba(143, 191, 96, 0.12);
	color: #628343;
	border-color: rgba(143, 191, 96, 0.22);
}

.cell-chain__arrow {
	display: none;
	color: var(--coral);
}

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

.bio-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1080px) {
	.bio-grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}
}

.bio-photos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	position: relative;
}

.bio-photos__col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bio-photos__col--offset {
	padding-top: 2.25rem;
}

.bio-photo {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 255, 0.96));
	box-shadow: 0 24px 52px rgba(65, 61, 88, 0.12);
}

.bio-photos__col:first-child .bio-photo:first-child {
	transform: rotate(-4deg);
}

.bio-photos__col--offset .bio-photo:first-child {
	transform: rotate(4deg);
}

.bio-photo img {
	width: 100%;
	object-fit: cover;
	object-position: top;
	min-height: 12rem;
	background: linear-gradient(135deg, rgba(250, 95, 85, 0.12), rgba(143, 191, 96, 0.14));
}

.bio-photo--tall img {
	height: 17.5rem;
}

.bio-photo--short img {
	height: 12.5rem;
}

.bio-photo__placeholder,
.gallery__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 1.5rem;
	text-align: center;
	color: var(--ink);
	font-weight: 700;
}

.bio-badge {
	position: absolute;
	left: 50%;
	bottom: -1rem;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.9rem 1.2rem;
	border-radius: 1.4rem;
	min-width: 16rem;
}

.bio-badge__num {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--coral), var(--sun));
	color: var(--paper-strong);
	font-weight: 800;
	font-size: 1.05rem;
}

.bio-badge__text {
	font-weight: 800;
	color: var(--ink);
}

.bio-badge__sub {
	font-size: 0.8rem;
	color: rgba(22, 22, 22, 0.52);
}

.bio-story__title {
	font-size: clamp(2.6rem, 7vw, 4.6rem);
	margin-bottom: 1.1rem;
	color: var(--ink);
}

.bio-story__text {
	font-size: 1.02rem;
	line-height: 1.95;
	color: var(--muted);
}

.bio-story__text strong {
	color: var(--muted-strong);
}

.pillars-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 76rem;
	margin: 0 auto;
}

@media (min-width: 920px) {
	.pillars-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.pillar {
	padding: 2rem;
	border: 1px solid rgba(22, 22, 22, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar--sleep {
	background: linear-gradient(135deg, rgba(143, 191, 96, 0.14) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.pillar--coral {
	background: linear-gradient(135deg, rgba(253, 182, 99, 0.14) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.pillar__glow {
	top: -1rem;
	right: -1rem;
	width: 10rem;
	height: 10rem;
}

.pillar__glow--indigo {
	background: rgba(143, 191, 96, 0.18);
}

.pillar__glow--white {
	background: rgba(253, 182, 99, 0.14);
}

.pillar__icon {
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.3rem;
}

.pillar__icon--indigo {
	background: rgba(143, 191, 96, 0.18);
	color: #628343;
}

.pillar__icon--white {
	background: rgba(253, 182, 99, 0.16);
	color: #c8893e;
}

.pillar__title {
	font-size: 1.56rem;
	font-weight: 800;
	margin-bottom: 0.3rem;
	color: var(--ink);
}

.pillar__sub {
	margin-bottom: 1.4rem;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 700;
}

.pillar__sub--indigo {
	color: #628343;
}

.pillar__sub--white {
	color: #c8893e;
}

.pillar__item-icon {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.65rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.pillar__item-icon--indigo {
	background: rgba(143, 191, 96, 0.18);
	color: #628343;
}

.pillar__item-icon--white {
	background: rgba(253, 182, 99, 0.16);
	color: #c8893e;
}

.pillar__item-title {
	font-weight: 700;
	color: var(--ink);
}

.pillar__item-desc {
	font-size: 0.88rem;
	color: var(--muted);
}

.steps-grid {
	display: grid;
	gap: 1.5rem;
	max-width: 76rem;
	margin: 0 auto;
}

@media (min-width: 920px) {
	.steps-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.step-card {
	padding: 2.3rem 1.7rem 1.8rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 237, 0.94));
	border: 1px solid rgba(22, 22, 22, 0.08);
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
	border-color: rgba(143, 191, 96, 0.18);
}

.step-card__num {
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	font-size: 2.4rem;
	line-height: 1;
	font-family: 'Oswald', sans-serif;
	color: rgba(22, 22, 22, 0.12);
}

.step-card__icon {
	width: 4.75rem;
	height: 4.75rem;
	margin-bottom: 1.3rem;
}

.step-card__icon--blue {
	background: linear-gradient(135deg, rgba(65, 61, 88, 0.14), rgba(143, 191, 96, 0.18));
	color: var(--ink);
}

.step-card__icon--green {
	background: linear-gradient(135deg, rgba(143, 191, 96, 0.22), rgba(255, 255, 255, 0.18));
	color: #628343;
}

.step-card__icon--amber {
	background: linear-gradient(135deg, rgba(253, 182, 99, 0.18), rgba(147, 157, 168, 0.18));
	color: #6e7580;
}

.step-card__title {
	font-size: 1.28rem;
	font-weight: 800;
	margin-bottom: 0.4rem;
	color: var(--ink);
}

.step-card__label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin-bottom: 0.9rem;
	font-weight: 800;
}

.step-card__label--cyan {
	color: var(--ink);
}

.step-card__label--green {
	color: #628343;
}

.step-card__label--amber {
	color: #6e7580;
}

.step-card__desc {
	color: var(--muted);
	line-height: 1.8;
}

.synergy__decor {
	width: 20rem;
	height: 20rem;
	top: 50%;
	transform: translateY(-50%);
}

.synergy__decor--left {
	left: -8rem;
	background: rgba(143, 191, 96, 0.14);
}

.synergy__decor--right {
	right: -8rem;
	background: rgba(253, 182, 99, 0.14);
}

.synergy__quote {
	max-width: 52rem;
	margin: 0 auto 2.5rem;
	padding: 2rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 238, 0.94));
	border: 1px solid rgba(22, 22, 22, 0.08);
}

.synergy__quote p {
	font-size: clamp(1.12rem, 2.4vw, 1.45rem);
	line-height: 1.85;
	font-style: italic;
	color: rgba(22, 22, 22, 0.78);
}

.synergy__quote .text-white {
	color: var(--ink);
}

.synergy__quote .text-cyan {
	color: var(--lime-deep);
}

.synergy__cards {
	display: grid;
	gap: 1rem;
	max-width: 36rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.synergy__cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.synergy__card {
	padding: 1.3rem;
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(22, 22, 22, 0.08);
	text-align: center;
	transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.synergy__card:hover,
.synergy__card--active {
	transform: translateY(-4px);
	border-color: rgba(143, 191, 96, 0.22);
	background: rgba(143, 191, 96, 0.08);
}

.synergy__card-emoji {
	font-size: 1.8rem;
	margin-bottom: 0.4rem;
}

.synergy__card-name {
	font-weight: 800;
	color: var(--ink);
}

.synergy__card-sub {
	font-size: 0.8rem;
	margin-top: 0.2rem;
	color: rgba(22, 22, 22, 0.5);
}

.synergy__card--active .synergy__card-name {
	color: var(--coral-dark);
}

.gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	max-width: 76rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.gallery {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 14rem 14rem;
		gap: 1.2rem;
	}
}

.gallery__item {
	border-radius: 1rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item--portrait {
	grid-column: 3;
	grid-row: 1 / 3;
}

.gallery__item-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 14rem;
	background: linear-gradient(135deg, rgba(65, 61, 88, 0.12), rgba(143, 191, 96, 0.16));
}

.gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.8s ease;
}

.gallery__item:hover .gallery__img {
	transform: scale(1.04);
}

.gallery__img--fit {
	object-fit: cover;
	object-position: center;
}

.gallery__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.4rem;
	background: linear-gradient(180deg, transparent, rgba(28, 17, 10, 0.88));
	color: var(--paper-strong);
}

.gallery__overlay-title {
	font-size: 1.14rem;
	font-weight: 800;
	margin-bottom: 0.2rem;
}

.gallery__overlay-sub,
.gallery__placeholder-sub {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.72);
}

.gallery__placeholder-emoji {
	font-size: 1.9rem;
	margin-bottom: 0.45rem;
}

.gallery__placeholder--hero .gallery__placeholder-emoji {
	font-size: 3rem;
	margin-bottom: 0.8rem;
}

.gallery__placeholder-text {
	font-weight: 800;
	color: var(--ink);
}

.contact__grid-bg {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(143, 191, 96, 0.18) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.14;
	pointer-events: none;
}

.contact__form-wrap {
	max-width: 42rem;
	margin: 0 auto;
	padding: 2rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 255, 0.98));
	border: 1px solid rgba(22, 22, 22, 0.08);
	box-shadow: 0 28px 80px rgba(65, 61, 88, 0.08);
}

.form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form__label {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 800;
	color: rgba(22, 22, 22, 0.58);
}

.form__input {
	width: 100%;
	padding: 1rem 1.15rem;
	border-radius: 1rem;
	border: 1px solid rgba(22, 22, 22, 0.1);
	background: rgba(255, 255, 255, 0.98);
	font: inherit;
	font-size: 0.98rem;
	color: var(--ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form__input::placeholder {
	color: rgba(22, 22, 22, 0.34);
}

.form__input:focus {
	outline: none;
	border-color: rgba(143, 191, 96, 0.3);
	box-shadow: 0 0 0 4px rgba(143, 191, 96, 0.12);
	background: rgba(255, 255, 255, 1);
}

.form__phone-wrap {
	position: relative;
}

.form__phone-prefix {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
	color: rgba(22, 22, 22, 0.54);
}

.form__input--phone {
	padding-left: 3rem;
}

.form__goals {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.form__goals {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.form__goal {
	cursor: pointer;
}

.form__goal input {
	display: none;
}

.form__goal-label {
	display: block;
	padding: 0.95rem 1rem;
	border-radius: 1rem;
	text-align: center;
	font-size: 0.88rem;
	font-weight: 700;
	color: rgba(22, 22, 22, 0.72);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(22, 22, 22, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.form__goal-label:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 1);
}

.form__goal input:checked+.form__goal-label {
	background: rgba(253, 182, 99, 0.18);
	border-color: rgba(143, 191, 96, 0.2);
	color: var(--ink);
}

.form__submit {
	width: 100%;
	padding: 1rem 1.4rem;
	border: 0;
	border-radius: 1rem;
	font: inherit;
	font-size: 1rem;
	font-weight: 800;
	color: var(--paper-strong);
	background: linear-gradient(135deg, var(--ink) 0%, #5e6d61 56%, var(--sun) 100%);
	box-shadow: 0 20px 40px rgba(65, 61, 88, 0.18);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.form__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 44px rgba(65, 61, 88, 0.22);
}

.form__submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

.form__disclaimer {
	font-size: 0.76rem;
	text-align: center;
	color: rgba(22, 22, 22, 0.4);
}

.form__success {
	display: none;
	padding: 2rem 0 1rem;
	text-align: center;
}

.form__success.show {
	display: block;
}

.form__success-icon {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1.2rem;
	background: rgba(143, 191, 96, 0.18);
	color: #628343;
	border: 1px solid rgba(143, 191, 96, 0.24);
}

.form__success-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 0.35rem;
}

.form__success-text {
	color: rgba(22, 22, 22, 0.68);
}

.footer {
	padding: 2.8rem 0 3.5rem;
	background: linear-gradient(135deg, #413d58 0%, #36424c 54%, #556b57 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--paper-strong);
}

.footer__inner {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 960px) {
	.footer__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		justify-content: space-between;
	}
}

.footer__brand-block {
	display: grid;
	gap: 1.4rem;
}

.footer__brand {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.footer__brand-name {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.footer__brand-sub {
	max-width: 28rem;
	font-size: 0.88rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.62);
}

.footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
}

.footer__link {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.88rem;
}

.footer__meta {
	display: grid;
	gap: 1rem;
	justify-items: start;
}

@media (min-width: 960px) {
	.footer__meta {
		justify-items: end;
	}
}

.footer__social {
	display: flex;
	gap: 0.8rem;
}

.footer__social-link {
	display: grid;
	place-items: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.66);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer__social-link:hover {
	transform: translateY(-2px);
	background: rgba(143, 191, 96, 0.22);
	color: var(--sun);
}

.footer__copy {
	max-width: 20rem;
	font-size: 0.82rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1079px) {
	.hero__content {
		padding-top: 2rem;
	}

	.hero__chart {
		max-width: 42rem;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.container {
		width: min(100%, calc(100% - 1.25rem));
	}

	.header {
		padding-top: 0.7rem;
	}

	.header__nav {
		min-height: 4.25rem;
		padding: 0.45rem 0.75rem;
		border-radius: 1.2rem;
	}

	.header__mobile-lang {
		margin-right: 0.35rem;
	}

	.header__mobile-lang .lang-switch {
		padding: 0.12rem;
		gap: 0.2rem;
		background: rgba(255, 255, 255, 0.72);
		border: 1px solid rgba(22, 22, 22, 0.06);
	}

	.header__mobile-lang .lang-switch__btn {
		padding: 0.38rem 0.62rem;
		font-size: 0.68rem;
		line-height: 1;
	}

	.header__logo-text {
		font-size: 0.92rem;
		letter-spacing: 0.1em;
	}

	.header__logo-sub {
		display: none;
	}

	.mobile-menu {
		top: 5.1rem;
		left: 0.7rem;
		right: 0.7rem;
		padding: 1.1rem;
		border-radius: 1.35rem;
	}

	.hero {
		min-height: auto;
		padding: 7rem 0 3rem;
	}

	.hero__actions,
	.hero__milestones,
	.hero__stats {
		display: none;
	}

	.hero__content {
		padding-top: 0.6rem;
	}

	.hero__text-col {
		gap: 1rem;
		align-items: stretch;
	}

	.hero__badge {
		width: 100%;
		justify-content: center;
		padding: 0.78rem 0.95rem;
		font-size: 0.66rem;
		line-height: 1.35;
		letter-spacing: 0.1em;
		text-align: center;
		flex-wrap: wrap;
	}

	.hero__title {
		font-size: clamp(2.35rem, 11vw, 3.4rem);
		max-width: 7.8ch;
		line-height: 0.98;
	}

	.hero__subtitle {
		max-width: none;
		font-size: 0.96rem;
		line-height: 1.72;
	}

	.hero__actions {
		flex-direction: column;
		gap: 0.7rem;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.hero__milestone {
		padding: 0.95rem 1rem;
	}

	.hero__milestone-label,
	.hero__stat-label {
		letter-spacing: 0.1em;
	}

	.hero__chart {
		padding: 1rem;
		border-radius: 1.45rem;
	}

	.hero__chart-header {
		margin-bottom: 0.75rem;
	}

	.hero__chart-title {
		font-size: 1rem;
	}

	.hero__chart-period {
		font-size: 0.68rem;
	}

	.hero__chart-note {
		padding: 0.85rem 0.9rem;
		font-size: 0.8rem;
		line-height: 1.55;
	}

	.section {
		padding: 4rem 0;
	}

	.section__badge {
		margin-bottom: 1rem;
	}

	.section__title,
	.bio-story__title {
		font-size: clamp(2rem, 9vw, 2.85rem);
		line-height: 1;
	}

	.section__subtitle {
		margin-bottom: 2.2rem;
		font-size: 0.96rem;
		line-height: 1.75;
	}

	.aquarium-card,
	.pillar,
	.step-card,
	.contact__form-wrap,
	.synergy__quote {
		padding: 1.25rem;
	}

	.cell-chain {
		margin-top: 2.4rem;
		padding: 1.2rem 0.9rem;
		border-radius: 1.4rem;
	}

	.cell-chain__items {
		gap: 0.6rem;
	}

	.cell-chain__item {
		width: 100%;
		padding: 0.8rem 0.95rem;
	}

	.bio-grid {
		gap: 2rem;
	}

	.hero__chart,
	.aquarium-card,
	.pillar,
	.step-card,
	.contact__form-wrap,
	.synergy__quote,
	.gallery__item,
	.bio-photo {
		border-radius: 1.45rem;
	}

	.hero__scroll {
		display: none;
	}

	.bio-photos {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.bio-photos__col {
		gap: 0.8rem;
	}

	.bio-photos__col--offset {
		padding-top: 0;
	}

	.bio-photos__col:first-child .bio-photo:first-child,
	.bio-photos__col--offset .bio-photo:first-child {
		transform: none;
	}

	.bio-photo--tall img {
		height: 15rem;
	}

	.bio-photo--short img {
		height: 12rem;
	}

	.bio-photo__img--full-mobile {
		height: auto !important;
		min-height: 0;
		object-fit: contain;
		object-position: center;
		background: transparent;
	}

	.bio-badge {
		position: static;
		transform: none;
		margin: 1rem auto 0;
		min-width: 0;
		width: 100%;
		justify-content: center;
		text-align: left;
	}

	.bio-story__text {
		font-size: 0.98rem;
		line-height: 1.8;
	}

	.pillar__title,
	.step-card__title {
		font-size: 1.2rem;
	}

	.pillar__sub,
	.step-card__label {
		font-size: 0.74rem;
		letter-spacing: 0.13em;
	}

	.step-card {
		padding: 1.8rem 1.2rem 1.35rem;
	}

	.step-card__num {
		font-size: 2rem;
		top: 0.9rem;
		right: 0.9rem;
	}

	.step-card__icon,
	.pillar__icon {
		width: 3.7rem;
		height: 3.7rem;
		margin-bottom: 1rem;
	}

	.synergy__decor {
		display: none;
	}

	.synergy__quote {
		margin-bottom: 1.5rem;
	}

	.synergy__quote p {
		font-size: 1rem;
		line-height: 1.72;
	}

	.synergy__card {
		padding: 1rem;
	}

	.gallery {
		gap: 0.85rem;
	}

	.gallery__item-inner {
		min-height: 12.5rem;
	}

	.gallery__overlay {
		padding: 1rem;
	}

	.gallery__overlay-title {
		font-size: 1rem;
	}

	.contact__form-wrap {
		padding: 1.25rem;
	}

	.form {
		gap: 1rem;
	}

	.form__label {
		font-size: 0.74rem;
		letter-spacing: 0.12em;
	}

	.form__input,
	.form__goal-label,
	.form__submit {
		font-size: 0.95rem;
	}

	.footer {
		padding: 2.2rem 0 2.8rem;
	}

	.footer__inner,
	.footer__meta {
		justify-items: center;
		text-align: center;
	}

	.footer__brand {
		justify-content: center;
	}

	.footer__links,
	.footer__social {
		justify-content: center;
	}

	.gallery__item--hero {
		grid-column: auto;
		grid-row: auto;
	}

	.gallery__item--hero .gallery__item-inner {
		min-height: 20rem;
	}

	.footer__copy {
		max-width: none;
	}
}

@media (max-width: 480px) {
	.hero {
		padding-top: 6.5rem;
	}

	.hero__title {
		font-size: clamp(2.1rem, 10.5vw, 2.8rem);
		max-width: 7.2ch;
	}

	.hero__badge {
		font-size: 0.62rem;
		padding: 0.72rem 0.8rem;
	}

	.header__mobile-lang {
		margin-right: 0.25rem;
	}

	.header__mobile-lang .lang-switch__btn {
		padding: 0.34rem 0.52rem;
		font-size: 0.64rem;
	}

	.hero__stat-num {
		font-size: 1.7rem;
	}

	.hero__chart {
		padding: 0.85rem;
	}

	.section__title,
	.bio-story__title {
		font-size: 1.85rem;
	}

	.bio-badge {
		gap: 0.7rem;
		padding: 0.85rem 0.9rem;
	}

	.bio-badge__num {
		width: 2.6rem;
		height: 2.6rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.pulse-glow {
	animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(143, 191, 96, 0.28);
	}

	50% {
		box-shadow: 0 0 0 14px rgba(143, 191, 96, 0);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.45;
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

@keyframes draw-line {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes bubble-rise {
	0% {
		transform: translateY(0) scale(1);
		opacity: 0;
	}

	15% {
		opacity: 0.38;
	}

	100% {
		transform: translateY(-110vh) scale(1.2);
		opacity: 0;
	}
}