/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Description: Child theme for Twenty Twenty-Five
Version: 1.0.2
*/

/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
	--color-bg:             #F6F4F0;
	--color-bg-secondary:   #EFEAE0;
	--color-bg-dark:        #0B1F2A;
	--color-text:           #1C1F23;
	--color-text-secondary: #1C1F23;
	--color-accent:         #4F6F65;
	--color-accent-light:   #E8EDE9;
	--color-border:         #DDD8CE;
	--color-white:          #FFFFFF;

	--font-heading: 'Crimson Pro', Georgia, serif;
	--font-body:    'Inter', system-ui, sans-serif;

	--text-xs:   0.75rem;
	--text-sm:   0.875rem;
	--text-base: 1rem;
	--text-lg:   1.125rem;
	--text-xl:   1.375rem;
	--text-2xl:  1.75rem;
	--text-3xl:  2.5rem;
	--text-4xl:  3.5rem;
	--text-5xl:  5rem;

	--space-1:  8px;
	--space-2:  16px;
	--space-3:  24px;
	--space-4:  32px;
	--space-5:  40px;
	--space-6:  48px;
	--space-7:  56px;
	--space-8:  64px;
	--space-12: 96px;

	--section-padding:  var(--space-12);
	--container-width:  1160px;
	--container-narrow: 720px;
	--container-gutter: 24px;
}

/* ── Reset / base ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

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

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 300;
	line-height: 1.15;
	color: var(--color-text);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); font-weight: 400; }
h4 { font-size: var(--text-xl);  font-weight: 400; }
h5 { font-size: var(--text-lg);  font-weight: 400; }
h6 { font-size: var(--text-base); font-weight: 400; }

p {
	line-height: 1.7;
	color: var(--color-text);
}

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

.text-xs   { font-size: var(--text-xs); }
.text-sm   { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }
.text-2xl  { font-size: var(--text-2xl); }
.text-3xl  { font-size: var(--text-3xl); }
.text-4xl  { font-size: var(--text-4xl); }
.text-5xl  { font-size: var(--text-5xl); }

.font-heading { font-family: var(--font-heading); }
.font-body    { font-family: var(--font-body); }

.italic { font-style: italic; }
.font-light  { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--container-gutter);
}

.container--narrow {
	max-width: var(--container-narrow);
	margin-inline: auto;
	padding-inline: var(--container-gutter);
}

.section {
	padding-block: var(--section-padding);
}

.section--dark {
	background-color: var(--color-bg-dark);
	color: var(--color-white);
}

.section--dark p,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
	color: var(--color-white);
}

.section--secondary {
	background-color: var(--color-bg-secondary);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 14px 28px;
	border: 1px solid var(--color-accent);
	color: var(--color-accent);
	background-color: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-decoration: none;
}

.btn:hover {
	background-color: var(--color-accent);
	color: var(--color-white);
}

.btn--dark {
	border-color: var(--color-white);
	color: var(--color-white);
}

.btn--dark:hover {
	background-color: var(--color-white);
	color: var(--color-bg-dark);
}

.btn--filled {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: var(--color-accent);
	color: var(--color-white);
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.875rem;
	font-weight: 500;
}

.btn--filled svg {
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.btn--filled:hover {
	background-color: #5c7e74;
	border-color: #5c7e74;
	color: var(--color-white);
}

.btn--filled:hover svg {
	transform: translateX(4px);
}

/* ── Utility ───────────────────────────────────────────────────────────────── */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.divider {
	border: none;
	border-top: 1px solid var(--color-border);
}

/* ── WordPress admin bar offset ────────────────────────────────────────────── */
.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	height: 72px;
}

.site-header__logo {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--color-text);
	text-decoration: none;
	flex-shrink: 0;
	margin-right: auto;
}

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

.site-header__nav-list {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	list-style: none;
}

.site-header__nav-list a {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.site-header__nav-list a:hover {
	color: var(--color-accent);
}

.site-header__lang {
	display: flex;
	gap: var(--space-2);
	align-items: center;
	flex-shrink: 0;
}

.site-header__lang li {
	list-style: none;
	flex-shrink: 0;
}

.site-header__lang li.current-lang {
	display: none;
}

.site-header__lang img {
	display: block;
	flex-shrink: 0;
}

.site-header__lang .lang-item a,
.site-header__lang a {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-header__lang .lang-item.current-lang a,
.site-header__lang .current-lang a {
	color: var(--color-accent);
}

.site-header__lang .lang-item a:hover,
.site-header__lang a:hover {
	color: var(--color-text);
}

.site-header__menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.site-header__menu-toggle span {
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-text);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__mobile-nav {
	display: none;
	background-color: var(--color-bg);
	border-top: 1px solid var(--color-border);
	padding: var(--space-4) 0;
}

.site-header__mobile-nav ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding-inline: var(--container-gutter);
}

.site-header__mobile-nav li a {
	display: block;
	padding-block: var(--space-2);
	font-size: var(--text-sm);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text);
	text-decoration: none;
}

/* ── Mobile base ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.site-header__nav,
	.site-header__lang {
		display: none;
	}

	.site-header__menu-toggle {
		display: flex;
	}

	.site-header__mobile-nav.is-open {
		display: block;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: var(--space-7);
	}

	h1 { font-size: var(--text-3xl); }
	h2 { font-size: var(--text-2xl); }
	h3 { font-size: var(--text-xl); }
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
	background-color: var(--color-bg-dark);
	color: var(--color-white);
}

.site-footer__form-section {
	padding-block: var(--space-12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__form-heading {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 300;
	color: var(--color-white);
	margin-bottom: var(--space-2);
}

.site-footer__form-subtext {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: var(--space-5);
}

/* CF7 form in dark footer */
.site-footer .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.site-footer .cf7-field {
	display: flex;
	flex-direction: column;
}

.site-footer .wpcf7-form input[type="text"],
.site-footer .wpcf7-form input[type="email"],
.site-footer .wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: var(--text-base);
	padding: 14px 16px;
	outline: none;
	transition: border-color 0.2s ease;
	-webkit-appearance: none;
}

.site-footer .wpcf7-form input::placeholder,
.site-footer .wpcf7-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.site-footer .wpcf7-form input:focus,
.site-footer .wpcf7-form textarea:focus {
	border-color: rgba(255, 255, 255, 0.4);
}

.site-footer .wpcf7-form textarea {
	resize: vertical;
	min-height: 120px;
}

.site-footer .wpcf7-form input[type="submit"],
.site-footer .wpcf7-submit {
	align-self: flex-start;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	padding: 14px 28px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--color-white);
	background-color: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer .wpcf7-form input[type="submit"]:hover,
.site-footer .wpcf7-submit:hover {
	background-color: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-bg-dark);
}

.site-footer .wpcf7-not-valid {
	border-color: rgba(220, 100, 80, 0.8) !important;
}

.site-footer .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: var(--text-xs);
	color: rgba(220, 100, 80, 0.9);
}

.site-footer .wpcf7 form .wpcf7-response-output {
	margin: var(--space-4) 0 0;
	padding: 0;
	border: none !important;
	background: none;
	font-size: var(--text-sm);
	color: rgba(220, 100, 80, 0.8);
}

.site-footer .wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 300;
	font-style: italic;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.01em;
	line-height: 1.3;
}

.site-footer .cf7-field--acceptance {
	flex-direction: row;
	align-items: flex-start;
	gap: var(--space-2);
}

.site-footer .wpcf7-acceptance {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding-inline: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: var(--text-base);
	line-height: 1.5;
	cursor: pointer;
}

.site-footer .wpcf7-acceptance input[type="checkbox"] {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	accent-color: var(--color-accent);
	cursor: pointer;
}

.site-footer .wpcf7-acceptance a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: underline;
}

.site-footer .wpcf7-acceptance a:hover {
	color: var(--color-white);
}

.site-footer .wpcf7-not-valid .wpcf7-acceptance {
	color: rgba(220, 100, 80, 0.9);
}

.site-footer .wpcf7-not-valid .wpcf7-acceptance input[type="checkbox"] {
	outline: 2px solid rgba(220, 100, 80, 0.8);
	outline-offset: 2px;
}

.site-footer__legal {
	padding-block: var(--space-8);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__legal p {
	font-size: var(--text-xs);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.35);
	max-width: 780px;
	margin-bottom: var(--space-2);
}

.site-footer__legal-heading {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: var(--space-3);
}

.site-footer__legal-subheading {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-top: var(--space-4);
	margin-bottom: var(--space-2);
}

.site-footer__bottom {
	padding-block: var(--space-6);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	gap: var(--space-5);
	margin-bottom: var(--space-4);
}

.site-footer__logo {
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--color-white);
	text-decoration: none;
	margin-right: auto;
}

.site-footer__logo:hover {
	color: var(--color-white);
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2) var(--space-4);
	padding-bottom: var(--space-5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: var(--space-4);
}

.site-footer__nav a {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__nav a:hover {
	color: var(--color-white);
}

.site-footer__lang {
	display: flex;
	gap: var(--space-2);
	align-items: center;
}

.site-footer__lang li {
	list-style: none;
}

.site-footer__lang li.current-lang {
	display: none;
}

.site-footer__lang .lang-item a,
.site-footer__lang a {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__lang .lang-item.current-lang a,
.site-footer__lang .current-lang a {
	color: rgba(255, 255, 255, 0.9);
}

.site-footer__lang .lang-item a:hover,
.site-footer__lang a:hover {
	color: var(--color-white);
}

.site-footer__disclaimer {
	font-size: var(--text-xs);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.35);
	margin-top: var(--space-6);
	margin-bottom: var(--space-3);
	max-width: 780px;
}

.site-footer__copyright {
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
	.site-footer__bottom-inner {
		flex-wrap: wrap;
		gap: var(--space-3);
	}

	.site-footer__logo {
		width: 100%;
		margin-right: 0;
	}
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
	display: flex;
	flex-direction: column;
}

.hero__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: var(--space-12) var(--container-gutter);
	max-width: var(--container-width);
	margin-inline: auto;
	width: 100%;
}

.hero__heading {
	font-size: var(--text-4xl);
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: var(--space-3);
}

.hero__subtext {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	max-width: 620px;
	margin-bottom: var(--space-6);
}

.hero__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3);
	width: 100%;
	margin-bottom: var(--space-6);
}

.hero__col {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text-secondary);
	line-height: 1.6;
	padding: var(--space-4);
	text-align: left;
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
}


.hero__image-wrap {
	width: 95%;
	margin-inline: auto;
	overflow: hidden;
	will-change: transform;
	transform-origin: center center;
	transform: scale(0.88);
}

.hero__image {
	width: 100%;
	display: block;
	height: auto;
	max-height: 80vh;
	object-fit: cover;
	object-position: center bottom;
}

.hero__image-placeholder {
	width: 100%;
	height: 480px;
	background-color: var(--color-bg-secondary);
}

/* ── Intro ─────────────────────────────────────────────────────────────────── */
.intro__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-5);
}

.intro__body {
	margin-bottom: var(--space-3);
	color: var(--color-text-secondary);
}

.intro__callout {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-style: italic;
	font-weight: 300;
	color: var(--color-accent);
	margin-block: var(--space-5);
}

.intro .btn,
.why .btn,
.comparison .btn,
.usecases .btn,
.faq .btn {
	margin-top: var(--space-4);
}

/* ── Why Traditional ───────────────────────────────────────────────────────── */
.why__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-3);
	max-width: 680px;
}

.why__intro {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-6);
}

.why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-4);
}

.why__item {
	padding: var(--space-4);
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
}

.item-heading {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-1);
}

.item-text {
	font-size: var(--text-sm);
	color: var(--color-text-secondary);
	line-height: 1.6;
}

/* ── What is MT ────────────────────────────────────────────────────────────── */
.what__layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: var(--space-8);
	align-items: start;
	margin-bottom: var(--space-8);
}

.what__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-4);
}

.what__body {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-3);
}

.what__bullets {
	list-style: none;
	margin-top: var(--space-3);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.what__bullets li {
	padding-left: var(--space-3);
	position: relative;
}

.what__bullets li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--color-accent);
}

.what__image {
	height: 480px;
	overflow: hidden;
}

.what__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.what__image--placeholder {
	background-color: var(--color-bg-secondary);
}

.what__adds-intro {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-5);
	max-width: 680px;
}

.what__features {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-4);
}

.what__feature {
	padding-top: var(--space-3);
	border-top: 2px solid #b8b0a4;
}


/* ── How it Works ──────────────────────────────────────────────────────────── */
.how__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-3);
}

.how__intro {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-6);
	max-width: 620px;
}

.how__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-8);
	align-items: start;
}

.how__image {
	height: 420px;
	overflow: hidden;
}

.how__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.how__image--placeholder {
	background-color: var(--color-bg);
}

.how__steps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}

.how__step {
	display: flex;
	gap: var(--space-4);
	align-items: start;
	padding-bottom: var(--space-5);
	border-bottom: 1px solid var(--color-border);
}

.how__step:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.how__step-number {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 300;
	color: var(--color-accent);
	flex-shrink: 0;
	line-height: 1;
	min-width: 40px;
}


/* ── Comparison Table ──────────────────────────────────────────────────────── */
.comparison__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-3);
}

.comparison__intro {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-6);
}

.comparison__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--color-border);
	position: relative;
}

.comparison__scroll-hint {
	display: none;
}

.comparison__table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.comparison__th {
	padding: var(--space-4);
	text-align: left;
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 400;
}

.comparison__th--traditional {
	background-color: var(--color-white);
	color: var(--color-text);
	border-left: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.comparison__th--modern {
	background-color: var(--color-accent);
	color: var(--color-white);
	font-style: italic;
	border: 2px solid var(--color-accent);
}

.comparison__row:not(:last-child) .comparison__cell {
	border-bottom: 1px solid var(--color-border);
}

.comparison__cell {
	padding: var(--space-4);
	vertical-align: top;
	width: 50%;
}

.comparison__cell strong {
	display: block;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-1);
}

.comparison__cell p {
	font-size: var(--text-sm);
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.comparison__cell--traditional {
	background-color: var(--color-white);
	border-left: 1px solid var(--color-border);
	opacity: 0.6;
}

.comparison__cell--modern {
	background-color: var(--color-accent-light);
	border-left: 2px solid var(--color-accent);
	border-right: 2px solid var(--color-accent);
}

.comparison__row:last-child .comparison__cell--modern {
	border-bottom: 2px solid var(--color-accent);
}

.comparison__cell--modern strong {
	color: var(--color-bg-dark);
}

/* ── Use Cases ─────────────────────────────────────────────────────────────── */
.usecases__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-3);
}

.usecases__intro {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-6);
}

.usecases__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-3);
	margin-bottom: var(--space-6);
}

.usecases__card-image {
	height: 220px;
	overflow: hidden;
	margin-bottom: var(--space-3);
}

.usecases__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.usecases__card-image--placeholder {
	background-color: var(--color-border);
}


.usecases__outro {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--color-text);
	border-top: 2px solid #b8b0a4;
	padding-top: var(--space-3);
}

/* ── Stats Bar ─────────────────────────────────────────────────────────────── */
.stats {
	padding-block: var(--space-8);
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
	text-align: center;
}

.stats__item {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	padding-block: var(--space-4);
}

.stats__value {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 300;
	color: var(--color-white);
	line-height: 1;
}

.stats__label {
	font-size: var(--text-xs);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

/* ── Why Now ───────────────────────────────────────────────────────────────── */
.whynow__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-3);
	max-width: 620px;
}

.whynow__intro {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-6);
}

.whynow__items {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.whynow__item {
	display: flex;
	gap: var(--space-5);
	align-items: start;
	padding-block: var(--space-5);
	border-top: 1px solid var(--color-border);
}

.whynow__item:last-child {
	border-bottom: 1px solid var(--color-border);
}

.whynow__item-number {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 300;
	color: var(--color-accent);
	flex-shrink: 0;
	min-width: 48px;
	line-height: 1;
}


/* ── Who Builds This ───────────────────────────────────────────────────────── */
.who__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-4);
}

.who__intro {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-3);
}

.who__bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin-bottom: var(--space-5);
}

.who__bullets li {
	font-size: var(--text-base);
	color: var(--color-text-secondary);
	padding-left: var(--space-3);
	position: relative;
}

.who__bullets li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--color-accent);
}

.who__outro {
	font-size: var(--text-sm);
	color: var(--color-text-secondary);
	border-top: 1px solid var(--color-border);
	padding-top: var(--space-4);
	margin-top: var(--space-4);
}

/* ── CTA Section ───────────────────────────────────────────────────────────── */
.cta-section__inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-4);
}

.cta-section__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
}

.cta-section__text {
	color: var(--color-text-secondary);
	max-width: 560px;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq__heading {
	font-size: var(--text-3xl);
	font-weight: 300;
	margin-bottom: var(--space-6);
}

.faq__list {
	display: flex;
	flex-direction: column;
}

.faq__item {
	border-top: 1px solid var(--color-border);
}

.faq__item:last-child {
	border-bottom: 1px solid var(--color-border);
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-block: var(--space-4);
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 400;
	color: var(--color-text);
	gap: var(--space-4);
}

.faq__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	position: relative;
}

.faq__icon::before,
.faq__icon::after {
	content: '';
	position: absolute;
	background-color: var(--color-accent);
	border-radius: 1px;
	transition: transform 0.2s ease;
}

.faq__icon::before {
	width: 16px;
	height: 1px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.faq__icon::after {
	width: 1px;
	height: 16px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

.faq__answer {
	padding-bottom: var(--space-4);
}

.faq__answer p {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.6;
}

/* ── Section responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.what__features {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero__heading {
		font-size: var(--text-3xl);
	}

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


	.hero__image-wrap {
		width: 95%;
	}

	.hero__image {
		max-height: 50vw;
	}



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

	.what__image {
		height: 280px;
		order: -1;
	}

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

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

	.how__image {
		height: 260px;
	}

	.comparison__table {
		font-size: var(--text-xs);
		min-width: unset;
		width: auto;
	}

	.comparison__th,
	.comparison__cell {
		padding: var(--space-3);
		min-width: 72vw;
		width: 72vw;
	}

.comparison__scroll-hint {
		display: flex;
		align-items: center;
		gap: var(--space-1);
		font-size: var(--text-xs);
		color: var(--color-text-secondary);
		opacity: 0.6;
		margin-top: var(--space-2);
	}

	.comparison__scroll-hint svg {
		flex-shrink: 0;
	}


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

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

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

/* ── Legal pages ────────────────────────────────────────────────────────────── */
.legal-page {
	background-color: var(--color-bg);
	padding-block: 40px;
	min-height: 60vh;
}

.legal-page__title {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 300;
	color: var(--color-text);
	margin-bottom: var(--space-10);
	padding-bottom: var(--space-6);
	border-bottom: 1px solid var(--color-border);
}

.legal-page__content {
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.75;
	color: var(--color-text);
}

.legal-page__content h2 {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 400;
	margin-top: var(--space-10);
	margin-bottom: var(--space-3);
	color: var(--color-text);
}

.legal-page__content p {
	margin-bottom: var(--space-4);
}

.legal-page__content ul {
	padding-left: var(--space-6);
	margin-bottom: var(--space-4);
}

.legal-page__content ul li {
	margin-bottom: var(--space-1);
}

.legal-page__content a {
	color: var(--color-accent);
	text-decoration: underline;
}

.legal-page__content em {
	color: var(--color-text-secondary);
	opacity: 0.7;
}

/* ── Footer legal links ─────────────────────────────────────────────────────── */
.site-footer__legal-links {
	display: flex;
	gap: var(--space-6);
	margin-top: var(--space-4);
	flex-wrap: wrap;
}

.site-footer__legal-links a {
	font-size: var(--text-xs);
	color: var(--color-white);
	opacity: 0.5;
	text-decoration: none;
	transition: opacity 0.2s;
}

.site-footer__legal-links a:hover {
	opacity: 1;
}
}
