:root {
	--bg: #fff7f0;
	--surface: rgba(255, 255, 255, 0.84);
	--surface-strong: #ffffff;
	--surface-muted: #ffefe6;
	--text: #2d1b14;
	--text-soft: #7a5a4a;
	--border: rgba(255, 107, 53, 0.14);
	--primary: #ff5a36;
	--secondary: #ffb347;
	--accent: #ff6b6b;
	--primary-deep: #d93d1f;
	--shadow-lg: 0 24px 70px rgba(217, 61, 31, 0.16);
	--shadow-md: 0 18px 42px rgba(217, 61, 31, 0.12);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--max-width: 1180px;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Lato", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(255, 179, 71, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(255, 107, 53, 0.15), transparent 25%),
		linear-gradient(180deg, #fffaf5 0%, var(--bg) 55%, #ffefe6 100%);
}

::selection {
	background: rgba(255, 90, 54, 0.18);
	color: var(--primary-deep);
}

body.menu-open {
	overflow: hidden;
}

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

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

.page-shell {
	position: relative;
	overflow: clip;
}

.page-shell::before,
.page-shell::after {
	content: "";
	position: fixed;
	inset: auto;
	border-radius: 999px;
	pointer-events: none;
	z-index: -1;
}

.page-shell::before {
	width: 28rem;
	height: 28rem;
	top: -8rem;
	right: -12rem;
	background: radial-gradient(circle, rgba(255, 90, 54, 0.18), transparent 65%);
}

.page-shell::after {
	width: 24rem;
	height: 24rem;
	left: -10rem;
	top: 34rem;
	background: radial-gradient(circle, rgba(255, 179, 71, 0.18), transparent 68%);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(16px);
	background: rgba(255, 247, 240, 0.72);
	border-bottom: 1px solid rgba(255, 107, 53, 0.08);
}

.header-inner {
	min-height: 88px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
}

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

.brand-mark {
	width: 50px;
	height: 50px;
	display: block;
	flex: 0 0 auto;
	border-radius: 16px;
	object-fit: cover;
}

.brand-text {
	display: grid;
	gap: 0.1rem;
}

.brand-name {
	font-family: "Montserrat", sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.015em;
}

.brand-subtitle {
	font-size: 0.78rem;
	color: var(--text-soft);
	letter-spacing: 0.02em;
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 107, 53, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.nav-toggle-line {
	position: relative;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--primary-deep);
	transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-toggle-line::before,
.nav-toggle-line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--primary-deep);
	transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle-line::before {
	top: -6px;
}

.nav-toggle-line::after {
	top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
	top: 0;
	transform: rotate(-45deg);
}

.lang-dropdown {
	position: relative;
	display: flex;
	align-items: center;
}

.lang-dropdown-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.65rem 0.3rem 0.5rem;
	min-height: 2.2rem;
	border-radius: 14px;
	border: 1px solid rgba(255, 107, 53, 0.08);
	background: rgba(255, 90, 54, 0.06);
	color: var(--text-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
	font-family: inherit;
	line-height: 1;
	white-space: nowrap;
}

.lang-dropdown-btn:hover,
.lang-dropdown-btn:focus-visible {
	color: var(--text);
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(255, 107, 53, 0.16);
}

.lang-globe {
	flex: 0 0 auto;
	opacity: 0.7;
}

.lang-chevron {
	flex: 0 0 auto;
	transition: transform 0.3s var(--ease);
	opacity: 0.7;
}

.lang-dropdown-btn[aria-expanded="true"] .lang-chevron {
	transform: rotate(180deg);
}

.lang-dropdown-menu {
	position: absolute;
	top: calc(100% + 0.4rem);
	right: 0;
	min-width: 100%;
	margin: 0;
	padding: 0.3rem;
	list-style: none;
	background: var(--surface-strong);
	border: 1px solid rgba(255, 107, 53, 0.1);
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(217, 61, 31, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
	z-index: 50;
}

.lang-dropdown-menu.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.5rem 0.75rem;
	border-radius: 10px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-soft);
	white-space: nowrap;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-option:hover,
.lang-option:focus-visible {
	background: rgba(255, 90, 54, 0.06);
	color: var(--text);
}

.lang-option.is-active {
	color: var(--primary);
	background: rgba(255, 90, 54, 0.06);
}

.lang-option-check {
	display: none;
	font-size: 0.72rem;
	color: var(--primary);
}

.lang-option.is-active .lang-option-check {
	display: inline;
}

.site-nav {
	justify-self: center;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 1rem;
	font-size: 0.96rem;
	font-weight: 600;
	color: var(--text-soft);
	transition: color 0.3s var(--ease);
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 0.4rem;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
	color: var(--text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
	transform: scaleX(1);
}

.page-main {
	padding-bottom: 3rem;
}

.hero[id], .section[id] {
	scroll-margin-top: 6.5rem;
}

.hero {
	position: relative;
	padding: 3rem 0 2rem;
}

.hero-panel {
	position: relative;
	overflow: clip;
	padding: clamp(2.35rem, 4.6vw, 3.55rem);
	border-radius: var(--radius-xl);
	background:
		linear-gradient(135deg, rgba(217, 61, 31, 0.96) 0%, rgba(255, 90, 54, 0.93) 30%, rgba(255, 107, 107, 0.88) 62%, rgba(255, 179, 71, 0.9) 100%);
	box-shadow: var(--shadow-lg);
	color: #ffffff;
}

.hero-panel::before,
.hero-panel::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	opacity: 0.48;
}

.hero-panel::before {
	width: 22rem;
	height: 22rem;
	top: -8rem;
	right: -5rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 68%);
}

.hero-panel::after {
	width: 18rem;
	height: 18rem;
	left: -5rem;
	bottom: -8rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 70%);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(2rem, 4vw, 3.6rem);
	align-items: center;
}

.hero-grid > * {
	min-width: 0;
}

.hero-copy {
	max-width: 43rem;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.84rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.eyebrow::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-mockup {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-mockup-shadow {
	position: absolute;
	inset: auto 10% -8% 10%;
	height: 40%;
	background: radial-gradient(ellipse, rgba(0,0,0,0.15), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero-phone {
	width: min(100%, 220px);
	margin: 0;
}

.hero-copy {
	max-width: 43rem;
}

.hero-brand-name {
	margin: 1.1rem 0 0.25rem;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	line-height: 1.08;
	letter-spacing: -0.04em;
	max-width: 100%;
	text-wrap: balance;
}

.hero-slogan {
	margin: 0.3rem 0 0;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.95);
	text-wrap: balance;
}

.hero-desc {
	margin: 1rem 0 0;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	max-width: 38rem;
	text-wrap: balance;
}

.hero-card-compact {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.5rem;
}

.hero-card-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero-card-value {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: #ffffff;
}

.hero-card-label {
	font-weight: 500;
	white-space: nowrap;
}

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

.feature-card {
	text-align: center;
	padding: 2rem 1.6rem;
}

.card-icon-wrap {
	width: 3.5rem;
	height: 3.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	margin-bottom: 0.5rem;
}

.memory-icon {
	background: linear-gradient(135deg, rgba(255, 90, 54, 0.12), rgba(255, 107, 107, 0.2));
	color: var(--primary);
}

.chart-icon {
	background: linear-gradient(135deg, rgba(255, 179, 71, 0.12), rgba(255, 107, 53, 0.18));
	color: var(--primary);
}

.language-icon {
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.12), rgba(255, 179, 71, 0.18));
	color: var(--primary);
}

.section-alt {
	background: linear-gradient(180deg, transparent, rgba(255, 247, 240, 0.5), transparent);
	padding: 3rem 0;
	border-radius: 3rem 3rem 0 0;
	margin-top: 1rem;
}

.hero-card {
	position: relative;
	max-width: 24rem;
	padding: 1.5rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 1rem 1rem auto auto;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 1.4rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
	transform: rotate(14deg);
}

.section {
	padding: 2rem 0;
}

.section-header {
	max-width: 54rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.section-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
}

.section-title {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.8rem, 3.6vw, 2.4rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.section-copy {
	margin: 0.95rem 0 0;
	font-size: 1.03rem;
	line-height: 1.8;
	color: var(--text-soft);
}

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

.card {
	position: relative;
	overflow: hidden;
	padding: 1.6rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 255, 0.88));
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card::before {
	content: "";
	position: absolute;
	inset: auto -2rem -3rem auto;
	width: 8rem;
	height: 8rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(255, 179, 71, 0.2), transparent 70%);
}

.card:hover,
.card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(217, 61, 31, 0.16);
	border-color: rgba(255, 90, 54, 0.22);
}

.card-icon {
	width: 3rem;
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(255, 90, 54, 0.12), rgba(255, 179, 71, 0.18));
	color: var(--primary);
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.card h3 {
	margin: 1.15rem 0 0.75rem;
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
}

.card p {
	margin: 0;
	color: var(--text-soft);
	line-height: 1.75;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.product-card {
	padding: 1.6rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 240, 0.92));
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(217, 61, 31, 0.16);
}

.product-topline {
	display: grid;
	grid-template-columns: auto 11rem;
	align-items: start;
	gap: 0.75rem;
	height: 3rem;
	margin-bottom: 1.25rem;
}

.product-topline .section-kicker {
	margin: 0;
	justify-self: end;
	text-align: right;
	line-height: 1.3;
}

.product-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 90, 54, 0.08);
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.phone-mockup {
	position: relative;
	width: min(100%, 235px);
	margin: 0 auto 1.35rem;
	padding: 0.4rem;
	border-radius: 32px;
	background: linear-gradient(180deg, #2d1b14 0%, #5a3a2a 100%);
	box-shadow: 0 24px 50px rgba(217, 61, 31, 0.18);
}

.phone-mockup::before {
	content: "";
	position: absolute;
	top: 0.35rem;
	left: 50%;
	width: 5.1rem;
	height: 0.45rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	transform: translateX(-50%);
}

.phone-screen {
	padding: 0;
	border-radius: 24px;
	overflow: hidden;
	line-height: 0;
}

.phone-screen img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: inherit;
}

.product-card h3 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.32rem;
	text-align: center;
}

.product-card p {
	margin: 0.85rem 0 0;
	line-height: 1.75;
	color: var(--text-soft);
}

.audience-list {
	display: grid;
	gap: 0.7rem;
	margin-top: 1rem;
}

.audience-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.94rem;
	line-height: 1.6;
	color: var(--text-soft);
}

.audience-item::before {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	margin-top: 0.45rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	flex: 0 0 auto;
}

.stats-band {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.stat-card {
	padding: 1.4rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 107, 53, 0.1);
	box-shadow: var(--shadow-md);
}

.stat-card strong {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.7rem;
	color: var(--primary);
	text-align: center;
}

.stat-card span {
	display: block;
	margin-top: 0.45rem;
	color: var(--text-soft);
	line-height: 1.6;
}

.site-footer {
	padding: 2rem 0 2.5rem;
}

.footer-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 1.5rem;
	padding: 1.8rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(45, 27, 20, 0.98), rgba(30, 18, 14, 0.98));
	box-shadow: var(--shadow-lg);
	color: #ffffff;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
}

.footer-brand .brand-mark {
	box-shadow: none;
}

.footer-panel .brand-subtitle {
	color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
	margin: 1rem 0 0;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.footer-meta {
	display: grid;
	gap: 0.8rem;
	justify-items: start;
	align-content: start;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.84);
	transition: color 0.3s var(--ease);
}

.footer-link:hover,
.footer-link:focus-visible {
	color: #ffffff;
}

.icp-link {
	color: rgba(255, 255, 255, 0.84);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

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

@media (max-width: 1023px) {
	.hero-grid,
	.footer-panel {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
	}

	.hero-visual {
		order: -1;
	}

	.hero-phone {
		width: min(60%, 200px);
		transform: none;
	}

	.hero-phone:hover {
		transform: none;
	}

	.hero-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-card-compact {
		justify-content: center;
	}

	.card-grid,
	.feature-grid,
	.product-grid,
	.stats-band {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-card {
		max-width: 34rem;
	}
}

@media (max-width: 767px) {
	.container {
		width: auto;
		max-width: var(--max-width);
		margin-left: 0.625rem;
		margin-right: 0.625rem;
	}

	.header-inner {
		grid-template-columns: auto 1fr auto;
		gap: 0.5rem;
		min-height: 80px;
	}

	.lang-dropdown-btn {
		font-size: 0.72rem;
		padding: 0.2rem 0.5rem 0.2rem 0.4rem;
		min-height: 2rem;
		border-radius: 10px;
	}

	.lang-globe {
		width: 14px;
		height: 14px;
	}

	.lang-chevron {
		width: 8px;
		height: 5px;
	}

	.nav-toggle {
		display: inline-flex;
		justify-self: end;
		order: 2;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 0.6rem);
		left: 0.625rem;
		right: 0.625rem;
		padding: 0.4rem;
		border-radius: 24px;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid rgba(255, 107, 53, 0.12);
		box-shadow: var(--shadow-md);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.2rem;
	}

	.nav-link {
		min-height: 46px;
		padding: 0 1rem;
		border-radius: 14px;
	}

	.nav-link::after {
		left: 0.95rem;
		right: 0.95rem;
		bottom: 0.5rem;
	}

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

	.hero-visual {
		order: -1;
		display: flex;
		justify-content: center;
	}

	.hero-phone {
		width: min(55%, 180px);
		transform: none;
	}

	.hero-phone:hover {
		transform: none;
	}

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

	.hero-desc {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.hero-card-compact {
		justify-content: center;
	}

	.section-copy,
	.card p,
	.product-card p {
		line-height: 1.7;
	}

	.card-grid,
	.feature-grid,
	.product-grid,
	.stats-band {
		grid-template-columns: 1fr;
	}

	.feature-card {
		padding: 1.4rem;
	}

	.section-alt {
		padding: 2rem 0;
		border-radius: 2rem 2rem 0 0;
	}

	.footer-meta {
		justify-items: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

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

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

/* ---- Privacy page (document-style) ---- */
.info-doc {
	max-width: 780px;
	margin: 0 auto;
	padding: 2.5rem 1rem 0;
}

.info-header {
	text-align: center;
	margin-bottom: 3rem;
}

.info-header h1 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.info-subtitle {
	margin: 0.75rem 0 0;
	font-size: 1.05rem;
	color: var(--text-soft);
	line-height: 1.7;
}

.info-meta {
	margin: 0.5rem 0 0;
	font-size: 0.88rem;
	color: var(--text-soft);
}

.info-section {
	margin-bottom: 2rem;
}

.info-section h2 {
	margin: 0 0 0.6rem;
	font-family: "Montserrat", sans-serif;
	font-size: 1.2rem;
	line-height: 1.3;
}

.info-section p {
	margin: 0 0 0.6rem;
	line-height: 1.75;
	color: var(--text-soft);
}

.info-section p:last-child {
	margin-bottom: 0;
}

.info-company {
	font-weight: 700;
	font-size: 1.08rem;
	color: var(--text);
	margin: 0 0 0.35rem;
}

.info-section ul,
.info-section ol {
	margin: 0.75rem 0 0;
	padding-left: 1.25rem;
}

.info-section li {
	margin-bottom: 0.5rem;
	line-height: 1.75;
	color: var(--text-soft);
}

.info-section li:last-child {
	margin-bottom: 0;
}

.info-section a {
	color: var(--primary);
	text-decoration: underline;
}

.info-section a:hover {
	text-decoration: none;
}

@media (max-width: 767px) {
	.info-doc {
		padding: 2rem 0.625rem 0;
	}

	.info-header {
		margin-bottom: 2rem;
	}

	.info-section {
		margin-bottom: 1.5rem;
	}
}
