@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Hanken+Grotesk:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
	--navy: #021a41;
	--orange: #ff6d2d;
	--ghost: #f8fafc;
	--asphalt: #1e293b;
	--ink-soft: rgba(30, 41, 59, 0.64);
	--white: #ffffff;
	--green: #4ade80;
	--container: 1248px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ghost);
	color: var(--navy);
	font-family: 'Hanken Grotesk', 'Inter', Arial, sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img,
svg {
	display: block;
}

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

button,
input {
	font: inherit;
}

button {
	border: 0;
	cursor: pointer;
}

*:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 2px;
}

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.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;
}

.vector-line {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 109, 45, 0.45),
		transparent
	);
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	background: rgba(2, 26, 65, 0.96);
	box-shadow: 0 25px 60px rgba(2, 26, 65, 0.45);
	backdrop-filter: blur(16px);
}

.site-header > .vector-line {
	position: absolute;
	inset: auto 0 0;
}

.header-inner {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.brand-mark {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	background: var(--orange);
	color: var(--navy);
	flex: 0 0 auto;
}

.brand-mark svg {
	width: 20px;
	height: 20px;
}

.brand-copy {
	display: grid;
	gap: 2px;
}

.brand-copy span {
	color: var(--ghost);
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
}

.brand-copy small {
	color: var(--orange);
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.nav-link {
	position: relative;
	color: rgba(248, 250, 252, 0.8);
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: var(--orange);
	transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
	width: 100%;
}

.nav-cta,
.mobile-nav-cta,
.cookie-accept {
	background: var(--orange);
	color: var(--navy);
	font-weight: 800;
	transition:
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.nav-cta {
	padding: 10px 24px;
	font-size: 14px;
}

.nav-cta:hover,
.mobile-nav-cta:hover,
.cookie-accept:hover {
	background: #ff7d43;
	box-shadow: 0 12px 30px rgba(255, 109, 45, 0.22);
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--ghost);
}

.menu-toggle svg {
	width: 24px;
	height: 24px;
}

.menu-toggle .icon-close,
.menu-toggle[aria-expanded='true'] .icon-menu {
	display: none;
}

.menu-toggle[aria-expanded='true'] .icon-close {
	display: block;
}

.mobile-nav {
	border-top: 1px solid rgba(248, 250, 252, 0.1);
	background: rgba(2, 26, 65, 0.98);
}

.mobile-nav-inner {
	padding-block: 22px;
	display: grid;
	gap: 10px;
}

.mobile-nav-link {
	padding: 12px 0;
	border-bottom: 1px solid rgba(248, 250, 252, 0.1);
	color: rgba(248, 250, 252, 0.82);
	font-weight: 600;
}

.mobile-nav-link.is-active {
	color: var(--orange);
}

.mobile-nav-cta {
	min-height: 48px;
	display: grid;
	place-items: center;
	margin-top: 8px;
}

.hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: var(--navy);
	color: var(--ghost);
}

.hero-bg,
.hero-bg img,
.hero-overlay,
.hero-lines,
.hero-dots {
	position: absolute;
	inset: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
}

.hero-overlay-x {
	background: linear-gradient(
		90deg,
		var(--navy),
		rgba(2, 26, 65, 0.86),
		rgba(2, 26, 65, 0.4)
	);
}

.hero-overlay-y {
	background: linear-gradient(0deg, var(--navy), transparent 46%, transparent);
}

.hero-lines span {
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 109, 45, 0.16),
		transparent
	);
}

.hero-dots {
	background-image: radial-gradient(
		rgba(255, 109, 45, 0.07) 1px,
		transparent 1px
	);
	background-size: 48px 48px;
}

.hero-grid {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	padding-block: 160px 112px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	gap: 48px;
	align-items: center;
}

.hero-copy {
	position: relative;
	z-index: 2;
	min-width: 0;
	max-width: 780px;
	will-change: transform;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
}

.eyebrow span {
	width: 48px;
	height: 1px;
	background: var(--orange);
}

.eyebrow p {
	margin: 0;
	color: var(--orange);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.newsletter h2 {
	margin: 0;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero h1 {
	font-size: clamp(3.3rem, 6.1vw, 5.45rem);
	line-height: 0.9;
}

.hero h1 span {
	display: block;
	max-width: 100%;
}

.hero h1 span:nth-child(2),
.section-heading h2 span,
.newsletter h2 span {
	color: var(--orange);
}

.hero-divider {
	width: min(100%, 96px);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-block: 32px;
}

.hero-divider span {
	height: 1px;
	flex: 1;
	background: rgba(255, 109, 45, 0.5);
}

.hero-divider i {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--orange);
}

.hero-subtitle {
	max-width: 590px;
	margin: 0 0 40px;
	color: rgba(248, 250, 252, 0.72);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.65;
}

.hero-stats {
	margin: 0 0 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.hero-stats div {
	min-width: 92px;
}

.hero-stats dt {
	color: var(--orange);
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}

.hero-stats dd {
	margin: 6px 0 0;
	color: rgba(248, 250, 252, 0.5);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	line-height: 1.35;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.button {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 30px;
	font-weight: 800;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		gap 0.25s ease;
}

.button svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.button-primary {
	background: var(--orange);
	color: var(--navy);
}

.button-primary:hover {
	background: #ff7d43;
	box-shadow: 0 22px 45px rgba(255, 109, 45, 0.3);
	gap: 16px;
}

.button-secondary {
	border: 1px solid rgba(248, 250, 252, 0.3);
	color: var(--ghost);
}

.button-secondary:hover {
	border-color: rgba(255, 109, 45, 0.65);
	color: var(--orange);
}

.control-panel-wrap {
	position: relative;
	z-index: 1;
	justify-self: end;
	align-self: center;
	width: min(100%, 500px);
	margin-top: 190px;
}

.system-status {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-bottom: 16px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.system-status span {
	color: rgba(248, 250, 252, 0.42);
}

.system-status strong {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--green);
	font-weight: 500;
}

.system-status i {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--green);
	animation: statusPulse 1.8s ease-in-out infinite;
}

.control-panel {
	padding: 24px;
	border: 1px solid rgba(248, 250, 252, 0.1);
	background: rgba(30, 41, 59, 0.62);
	backdrop-filter: blur(10px);
}

.control-panel > p {
	margin: 0 0 18px;
	color: var(--orange);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.metric + .metric {
	margin-top: 18px;
}

.metric div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 8px;
}

.metric span {
	color: rgba(248, 250, 252, 0.62);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.metric strong {
	color: var(--orange);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	font-weight: 500;
}

.metric b {
	position: relative;
	display: block;
	height: 1px;
	background: rgba(248, 250, 252, 0.12);
	overflow: hidden;
}

.metric i {
	position: absolute;
	inset: 0 auto 0 0;
	background: rgba(255, 109, 45, 0.65);
}

.certified-badge {
	position: absolute;
	right: -16px;
	bottom: -18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--orange);
	color: var(--navy);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.certified-badge svg {
	width: 14px;
	height: 14px;
}

.scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 32px;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 8px;
	color: rgba(248, 250, 252, 0.4);
	transform: translateX(-50%);
}

.scroll-indicator span {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.scroll-indicator i {
	width: 1px;
	height: 48px;
	background: linear-gradient(rgba(248, 250, 252, 0.3), transparent);
}

.seo-section {
	position: relative;
	overflow: hidden;
	background: var(--ghost);
	padding-block: 96px;
}

.section-dots,
.newsletter-dots {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.section-dots {
	opacity: 0.04;
	background-image: radial-gradient(var(--navy) 1px, transparent 1px);
	background-size: 32px 32px;
}

.seo-content {
	position: relative;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 56px;
}

.eyebrow-dark p {
	color: var(--orange);
}

.section-heading h2 {
	color: var(--navy);
	font-size: clamp(2.35rem, 5vw, 4rem);
	line-height: 1;
	margin-bottom: 20px;
}

.section-heading p {
	margin: 0;
	color: var(--ink-soft);
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.7;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 64px;
}

.pillar-card {
	min-height: 100%;
	padding: 24px;
	border: 1px solid rgba(2, 26, 65, 0.08);
	background: var(--white);
	transition:
		border-color 0.25s ease,
		transform 0.25s ease;
}

.pillar-card:hover {
	border-color: rgba(255, 109, 45, 0.35);
	transform: translateY(-3px);
}

.pillar-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	border: 1px solid rgba(255, 109, 45, 0.22);
	background: rgba(255, 109, 45, 0.1);
	color: var(--orange);
}

.pillar-icon svg {
	width: 20px;
	height: 20px;
}

.pillar-card h3 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 18px;
	line-height: 1.15;
}

.pillar-card p {
	margin: 0;
	color: var(--ink-soft);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

.cta-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 32px;
	border-left: 4px solid var(--orange);
	background: var(--navy);
	color: var(--ghost);
}

.cta-strip h2 {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.15;
}

.cta-strip p {
	margin: 0;
	color: rgba(248, 250, 252, 0.54);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
}

.cta-strip .button {
	flex: 0 0 auto;
	white-space: nowrap;
}

.newsletter {
	position: relative;
	overflow: hidden;
	padding-block: 80px;
	background: var(--asphalt);
	color: var(--ghost);
}

.newsletter > .vector-line {
	position: absolute;
	inset: 0 0 auto;
}

.newsletter-dots {
	opacity: 0.035;
	background-image: radial-gradient(var(--orange) 1px, transparent 1px);
	background-size: 32px 32px;
}

.newsletter-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
	gap: 48px;
	align-items: center;
}

.newsletter h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.05;
	margin-bottom: 16px;
}

.newsletter p {
	max-width: 430px;
	margin: 0;
	color: rgba(248, 250, 252, 0.52);
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.7;
}

.newsletter-fields {
	display: flex;
}

.email-field {
	position: relative;
	flex: 1 1 auto;
}

.email-field svg {
	position: absolute;
	left: 16px;
	top: 50%;
	width: 17px;
	height: 17px;
	color: rgba(248, 250, 252, 0.3);
	transform: translateY(-50%);
}

.email-field input {
	width: 100%;
	height: 56px;
	border: 1px solid rgba(248, 250, 252, 0.16);
	border-right: 0;
	border-radius: 0;
	background: rgba(2, 26, 65, 0.45);
	color: var(--ghost);
	padding: 0 16px 0 42px;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
}

.email-field input::placeholder {
	color: rgba(248, 250, 252, 0.34);
}

.email-field input:focus {
	border-color: rgba(255, 109, 45, 0.7);
	outline: none;
}

.newsletter-form .button {
	height: 56px;
	border-radius: 0;
	white-space: nowrap;
}

.privacy-note {
	margin-top: 12px !important;
	max-width: none !important;
	color: rgba(248, 250, 252, 0.22) !important;
	font-family: 'JetBrains Mono', monospace !important;
	font-size: 10px !important;
	letter-spacing: 0.04em;
}

.newsletter-success {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	border: 1px solid rgba(74, 222, 128, 0.3);
	background: rgba(2, 26, 65, 0.5);
}

.newsletter-success svg {
	width: 30px;
	height: 30px;
	color: var(--green);
	flex: 0 0 auto;
}

.newsletter-success strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ghost);
	font-size: 17px;
}

.newsletter-success span {
	display: block;
	color: rgba(248, 250, 252, 0.56);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.site-footer {
	background: var(--asphalt);
	color: var(--ghost);
	border-top: 1px solid rgba(248, 250, 252, 0.08);
}

.footer-grid {
	padding-block: 64px 48px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 48px;
}

.site-footer .brand-mark {
	width: 28px;
	height: 28px;
}

.site-footer .brand-mark svg {
	width: 18px;
	height: 18px;
}

.footer-brand p {
	max-width: 330px;
	margin: 18px 0 16px;
	color: rgba(248, 250, 252, 0.42);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

.footer-brand small {
	color: rgba(248, 250, 252, 0.28);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
}

.site-footer h2 {
	margin: 0 0 20px;
	color: var(--orange);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.brand-list,
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 13px;
}

.brand-list li {
	display: flex;
	justify-content: space-between;
	padding-right: 70px;
	gap: 16px;
	color: rgba(248, 250, 252, 0.52);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
}

.brand-list strong,
.brand-list em {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.brand-list strong {
	color: var(--green);
}

.brand-list em {
	color: rgba(248, 250, 252, 0.26);
}

.footer-links a {
	color: rgba(248, 250, 252, 0.42);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: var(--orange);
}

.footer-contact {
	display: grid;
	gap: 6px;
	margin-top: 24px;
}

.footer-contact a {
	color: rgba(248, 250, 252, 0.32);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.04em;
	transition: color 0.2s ease;
}

.footer-bottom {
	padding-block: 28px;
	border-top: 1px solid rgba(248, 250, 252, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	color: rgba(248, 250, 252, 0.24);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.06em;
}

.footer-bottom p {
	margin: 0;
}

.whatsapp-fab {
	position: fixed;
	right: 24px;
	bottom: 96px;
	z-index: 55;
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--orange);
	color: var(--navy);
	box-shadow: 0 22px 45px rgba(255, 109, 45, 0.36);
	transition:
		transform 0.25s ease,
		background 0.25s ease;
	animation: whatsappPulse 10s ease-in-out infinite;
}

.whatsapp-fab:hover {
	background: #ff7d43;
	transform: scale(1.08);
}

.whatsapp-fab svg {
	width: 26px;
	height: 26px;
}

.cookie-banner {
	position: fixed;
	inset: auto 0 0;
	z-index: 54;
	border-top: 1px solid rgba(248, 250, 252, 0.1);
	background: rgba(2, 26, 65, 0.92);
	color: var(--ghost);
	backdrop-filter: blur(12px);
}

.cookie-inner {
	min-height: 76px;
	padding-block: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookie-inner p {
	margin: 0;
	color: rgba(248, 250, 252, 0.72);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.6;
}

.cookie-inner strong {
	color: var(--ghost);
}

.cookie-inner a {
	color: var(--orange);
}

.cookie-inner > div {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.cookie-accept {
	min-height: 44px;
	padding: 10px 24px;
}

.cookie-close {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	background: transparent;
	color: rgba(248, 250, 252, 0.55);
}

.cookie-close svg {
	width: 18px;
	height: 18px;
}

.page-dark {
	background: var(--navy);
	color: var(--ghost);
}

.button-outline {
	border: 1px solid rgba(255, 109, 45, 0.8);
	color: var(--orange);
}

.button-outline:hover {
	background: var(--orange);
	color: var(--navy);
	box-shadow: 0 22px 45px rgba(255, 109, 45, 0.22);
	gap: 16px;
}

.brands-page {
	min-height: 100vh;
	padding-block: 112px 96px;
}

.section-heading.is-dark h1,
.split-heading h1,
.brand-services h2,
.brand-cta h2,
.about-copy h1,
.contact-heading h1,
.not-found h1 {
	margin: 0;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.96;
	text-transform: uppercase;
}

.split-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	gap: 40px;
	align-items: end;
}

.split-heading h1 {
	color: var(--ghost);
	font-size: clamp(3.2rem, 6.2vw, 4.6rem);
}

.split-heading h1 span,
.brand-services h2 span,
.brand-cta h2 span,
.about-copy h1 span,
.contact-heading h1 span,
.not-found h1 span {
	display: block;
	color: var(--orange);
}

.split-heading > p {
	max-width: 470px;
	margin: 0;
	color: rgba(248, 250, 252, 0.62);
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.7;
}

.brands-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.brand-card {
	position: relative;
	overflow: hidden;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	border: 1px solid rgba(248, 250, 252, 0.08);
	background: var(--asphalt);
	transition:
		border-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.brand-card.is-active {
	border-color: rgba(255, 109, 45, 0.32);
	box-shadow: 0 0 48px rgba(255, 109, 45, 0.14);
}

.brand-card:hover {
	border-color: rgba(255, 109, 45, 0.32);
	transform: translateY(-4px);
}

.brand-card-accent {
	position: absolute;
	inset: 0 0 auto;
	height: 2px;
	background: var(--orange);
	z-index: 2;
}

.brand-card-image {
	position: relative;
	height: 210px;
	overflow: hidden;
}

.brand-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.62;
}

.brand-card.is-soon .brand-card-image img {
	opacity: 0.48;
}

.brand-card-image > span {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		var(--asphalt),
		rgba(30, 41, 59, 0.3),
		transparent
	);
}

.status-badge,
.status-line {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.status-badge {
	position: absolute;
	left: 16px;
	top: 16px;
	padding: 7px 12px;
	background: rgba(2, 26, 65, 0.84);
	backdrop-filter: blur(8px);
}

.status-badge.is-live,
.status-line.is-live {
	color: var(--green);
}

.status-badge.is-pending,
.status-line.is-pending {
	color: rgba(255, 109, 45, 0.72);
}

.status-badge i,
.status-line i {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: currentColor;
	animation: statusPulse 1.8s ease-in-out infinite;
}

.status-badge svg,
.status-line svg {
	width: 12px;
	height: 12px;
}

.brand-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 32px;
}

.data-code {
	margin: 0;
	color: rgba(255, 109, 45, 0.62);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.brand-card-title {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-block: 14px 16px;
}

.brand-card-icon,
.brand-heading-icon,
.service-icon {
	display: grid;
	place-items: center;
	border: 1px solid rgba(248, 250, 252, 0.12);
	background: rgba(248, 250, 252, 0.04);
	color: rgba(248, 250, 252, 0.45);
	flex: 0 0 auto;
}

.brand-card.is-active .brand-card-icon,
.brand-heading-icon.is-active {
	border-color: rgba(255, 109, 45, 0.32);
	background: rgba(255, 109, 45, 0.14);
	color: var(--orange);
}

.brand-card-icon {
	width: 50px;
	height: 50px;
}

.brand-card-icon svg,
.brand-heading-icon svg,
.service-icon svg {
	width: 24px;
	height: 24px;
}

.brand-card h2 {
	margin: 0;
	color: var(--ghost);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.08;
}

.brand-card-title p {
	margin: 6px 0 0;
	color: rgba(248, 250, 252, 0.42);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
}

.brand-card-copy {
	flex: 1 1 auto;
	margin: 0 0 22px;
	color: rgba(248, 250, 252, 0.62);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 26px;
}

.tag-list span {
	border: 1px solid rgba(248, 250, 252, 0.15);
	color: rgba(248, 250, 252, 0.56);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.06em;
	padding: 5px 10px;
}

.stat-strip {
	border-block: 1px solid rgba(248, 250, 252, 0.08);
	background: rgba(30, 41, 59, 0.3);
}

.stat-strip.is-contained {
	width: min(100% - 32px, var(--container));
	margin: 64px auto 0;
	border: 1px solid rgba(248, 250, 252, 0.08);
}

.stat-strip.is-contained .container {
	width: 100%;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
	min-height: 116px;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 24px 16px;
	border-left: 1px solid rgba(248, 250, 252, 0.08);
}

.stat-item:first-child {
	border-left: 0;
}

.stat-item strong {
	color: var(--orange);
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
}

.stat-item span {
	color: rgba(248, 250, 252, 0.44);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.brand-hero {
	position: relative;
	overflow: hidden;
	padding-block: 112px 96px;
}

.brand-hero-bg,
.brand-hero-bg img,
.brand-hero-bg span {
	position: absolute;
	inset: 0;
}

.brand-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.2;
}

.brand-hero-bg span {
	background: linear-gradient(
		90deg,
		var(--navy),
		rgba(2, 26, 65, 0.9),
		rgba(2, 26, 65, 0.5)
	);
}

.brand-hero-inner {
	position: relative;
}

.back-link {
	color: rgba(248, 250, 252, 0.42);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	transition: color 0.2s ease;
}

.back-link:hover {
	color: var(--orange);
}

.status-line {
	margin-block: 28px 18px;
}

.brand-heading {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 34px;
}

.brand-heading > div:last-child {
	min-width: 0;
}

.brand-heading-icon {
	width: 66px;
	height: 66px;
}

.brand-heading h1 {
	margin: 8px 0 0;
	color: var(--ghost);
	font-size: clamp(3rem, 6.2vw, 4.6rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.96;
	text-transform: uppercase;
	overflow-wrap: normal;
}

.brand-heading h1 span {
	color: var(--orange);
}

.brand-subtitle {
	margin: 12px 0 0;
	color: rgba(248, 250, 252, 0.52);
	font-family: 'JetBrains Mono', monospace;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.brand-intro {
	max-width: 780px;
	margin: 0 0 36px;
	color: rgba(248, 250, 252, 0.72);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 19px;
	line-height: 1.7;
}

.launch-note {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	max-width: 100%;
	padding: 14px 24px;
	border: 1px solid rgba(248, 250, 252, 0.1);
	background: rgba(30, 41, 59, 0.62);
	color: rgba(248, 250, 252, 0.56);
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.launch-note svg {
	width: 16px;
	height: 16px;
	color: rgba(255, 109, 45, 0.72);
}

.brand-services {
	padding-block: 96px;
}

.brand-services h2 {
	margin-bottom: 56px;
	color: var(--ghost);
	font-size: clamp(2.5rem, 5vw, 4rem);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.service-card {
	padding: 32px;
	border: 1px solid rgba(248, 250, 252, 0.08);
	background: var(--asphalt);
	transition: border-color 0.25s ease;
}

.service-card:hover {
	border-color: rgba(255, 109, 45, 0.3);
}

.service-card.is-muted {
	background: rgba(30, 41, 59, 0.5);
	opacity: 0.78;
}

.service-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
}

.service-card:not(.is-muted) .service-icon {
	border-color: rgba(255, 109, 45, 0.22);
	background: rgba(255, 109, 45, 0.1);
	color: var(--orange);
}

.service-card h3 {
	margin: 0 0 12px;
	color: var(--ghost);
	font-size: 23px;
	font-weight: 800;
}

.service-card.is-muted h3 {
	color: rgba(248, 250, 252, 0.72);
}

.service-card p {
	margin: 0 0 20px;
	color: rgba(248, 250, 252, 0.6);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

.service-card.is-muted p {
	color: rgba(248, 250, 252, 0.42);
}

.service-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.service-card li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(248, 250, 252, 0.52);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.05em;
}

.service-card li i {
	width: 4px;
	height: 4px;
	background: var(--orange);
	flex: 0 0 auto;
}

.service-card.is-muted li i {
	background: rgba(248, 250, 252, 0.25);
}

.brand-cta {
	padding-block: 80px;
	border-top: 1px solid rgba(248, 250, 252, 0.08);
	background: rgba(30, 41, 59, 0.5);
	text-align: center;
}

.brand-cta-inner {
	max-width: 820px;
}

.brand-cta h2 {
	margin-top: 18px;
	color: var(--ghost);
	font-size: clamp(2.3rem, 5vw, 3.75rem);
}

.brand-cta p:not(.data-code) {
	margin: 18px auto 32px;
	color: rgba(248, 250, 252, 0.52);
	font-family: 'Inter', Arial, sans-serif;
}

.about-page {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	padding-block: 112px 112px;
	background: var(--ghost);
}

.about-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
	gap: 80px;
	align-items: center;
}

.about-copy h1 {
	color: var(--navy);
	font-size: clamp(2.6rem, 5vw, 4rem);
	margin-bottom: 32px;
}

.rich-copy {
	display: grid;
	gap: 18px;
	color: rgba(30, 41, 59, 0.82);
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.75;
}

.rich-copy p {
	margin: 0;
}

.rich-copy strong {
	color: var(--navy);
}

.about-values {
	margin-top: 40px;
	padding-top: 36px;
	border-top: 1px solid rgba(2, 26, 65, 0.1);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.about-values article {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.about-values article > div {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 109, 45, 0.22);
	background: rgba(255, 109, 45, 0.1);
	color: var(--orange);
	flex: 0 0 auto;
}

.about-values svg {
	width: 17px;
	height: 17px;
}

.about-values p {
	margin: 0;
	display: grid;
	gap: 4px;
}

.about-values strong {
	color: var(--navy);
	font-size: 15px;
}

.about-values span {
	color: rgba(30, 41, 59, 0.62);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
}

.about-visual {
	position: relative;
	min-height: 520px;
}

.about-visual img {
	width: 100%;
	height: 520px;
	object-fit: cover;
}

.about-visual > span {
	position: absolute;
	inset: 0;
	background: rgba(2, 26, 65, 0.42);
}

.cert-card {
	position: absolute;
	left: -24px;
	bottom: -24px;
	max-width: 320px;
	padding: 24px;
	border-left: 2px solid var(--orange);
	background: var(--navy);
	box-shadow: 0 28px 70px rgba(2, 26, 65, 0.28);
}

.cert-card p {
	margin: 0 0 10px;
	color: var(--orange);
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.14em;
}

.cert-card strong {
	display: block;
	color: var(--ghost);
	font-size: 21px;
	margin-bottom: 6px;
}

.cert-card span {
	color: rgba(248, 250, 252, 0.42);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.about-visual > i {
	position: absolute;
	right: 0;
	top: 0;
	width: 64px;
	height: 64px;
	border-top: 2px solid var(--orange);
	border-right: 2px solid var(--orange);
}

.contact-section {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	padding-block: 128px 112px;
	background: var(--navy);
	color: var(--ghost);
}

.contact-section > .vector-line {
	position: absolute;
	inset: 0 0 auto;
}

.contact-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		rgba(255, 109, 45, 0.045) 1px,
		transparent 1px
	);
	background-size: 40px 40px;
}

.contact-section .container {
	position: relative;
}

.contact-heading {
	max-width: 760px;
	margin-bottom: 64px;
}

.contact-heading h1 {
	font-size: clamp(3rem, 7vw, 5rem);
	margin-bottom: 18px;
}

.contact-heading > p {
	max-width: 560px;
	margin: 0;
	color: rgba(248, 250, 252, 0.52);
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.7;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
	gap: 64px;
}

.contact-info {
	display: grid;
	align-content: start;
	gap: 36px;
}

.contact-info-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.contact-info-row > div {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 109, 45, 0.22);
	background: rgba(255, 109, 45, 0.1);
	color: var(--orange);
	flex: 0 0 auto;
}

.contact-info-row svg {
	width: 21px;
	height: 21px;
}

.contact-info-row p {
	margin: 0;
	display: grid;
	gap: 6px;
}

.contact-info-row span,
.contact-form label > span {
	color: rgba(248, 250, 252, 0.5);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-info-row a,
.contact-info-row strong {
	color: var(--ghost);
	font-size: 17px;
	font-weight: 700;
	transition: color 0.2s ease;
}

.contact-info-row a:hover {
	color: var(--orange);
}

.trust-note {
	padding: 24px;
	border: 1px solid rgba(248, 250, 252, 0.08);
	background: rgba(30, 41, 59, 0.52);
}

.trust-note p {
	margin: 0 0 12px;
	color: rgba(255, 109, 45, 0.66);
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.trust-note span {
	color: rgba(248, 250, 252, 0.62);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

.trust-note strong {
	color: var(--ghost);
}

.contact-form {
	display: grid;
	gap: 30px;
}

.input-line {
	width: 100%;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid rgba(248, 250, 252, 0.28);
	border-radius: 0;
	background: transparent;
	color: var(--ghost);
	font-family: 'Hanken Grotesk', 'Inter', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.4;
	outline: none;
	transition:
		border-color 0.25s ease,
		color 0.25s ease;
	appearance: none;
}

.input-line:focus {
	border-bottom-color: var(--orange);
	color: var(--ghost);
}

.input-line::placeholder {
	color: rgba(248, 250, 252, 0.42);
}

select.input-line {
	background-image: linear-gradient(45deg, transparent 50%, var(--ghost) 50%),
		linear-gradient(135deg, var(--ghost) 50%, transparent 50%);
	background-position:
		calc(100% - 12px) 54%,
		calc(100% - 7px) 54%;
	background-size:
		5px 5px,
		5px 5px;
	background-repeat: no-repeat;
	padding-right: 28px;
	cursor: pointer;
}

.input-line option {
	background: var(--navy);
	color: var(--ghost);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.contact-form label {
	display: grid;
	gap: 12px;
}

.contact-form textarea {
	min-height: 124px;
	resize: vertical;
}

.contact-submit {
	width: 100%;
	min-height: 62px;
}

.form-policy {
	margin: -12px 0 0;
	color: rgba(248, 250, 252, 0.26);
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.05em;
	text-align: center;
}

.form-alert {
	padding: 14px 18px;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
}

.form-alert.is-success {
	border: 1px solid rgba(74, 222, 128, 0.32);
	background: rgba(74, 222, 128, 0.1);
	color: #bbf7d0;
}

.form-alert.is-error {
	border: 1px solid rgba(248, 113, 113, 0.32);
	background: rgba(248, 113, 113, 0.1);
	color: #fecaca;
}

.legal-page {
	min-height: 100vh;
	padding-block: 112px;
	background: var(--ghost);
}

.legal-container {
	max-width: 900px;
}

.legal-page h1 {
	margin: 0 0 48px;
	color: var(--navy);
	font-size: clamp(2.6rem, 5vw, 4rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.legal-content {
	display: grid;
	gap: 40px;
	color: rgba(30, 41, 59, 0.82);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 15px;
	line-height: 1.75;
}

.legal-content > section {
	min-width: 0;
}

.legal-content h2 {
	margin: 0 0 12px;
	color: var(--navy);
	font-family: 'Hanken Grotesk', 'Inter', Arial, sans-serif;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
}

.legal-content p {
	margin: 0;
}

.legal-content p + p,
.legal-content ul + p {
	margin-top: 12px;
}

.legal-content ul {
	margin: 12px 0 0;
	padding-left: 22px;
}

.legal-content a {
	color: var(--orange);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-date {
	color: rgba(30, 41, 59, 0.42);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.08em;
}

.legal-table-wrap {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	margin-top: 16px;
}

.legal-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	background: var(--white);
}

.legal-table th {
	background: var(--navy);
	color: var(--ghost);
	font-family: 'Hanken Grotesk', 'Inter', Arial, sans-serif;
	text-align: left;
}

.legal-table th,
.legal-table td {
	padding: 12px;
	border: 1px solid rgba(2, 26, 65, 0.08);
}

.legal-table td:first-child,
.legal-table td:last-child {
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
}

.not-found {
	min-height: 78vh;
	display: flex;
	align-items: center;
	padding-block: 128px 96px;
}

.not-found h1 {
	color: var(--ghost);
	font-size: clamp(4rem, 10vw, 7rem);
	margin-bottom: 24px;
}

.not-found p {
	max-width: 560px;
	margin: 0 0 32px;
	color: rgba(248, 250, 252, 0.62);
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.7;
}

[hidden] {
	display: none !important;
}

@keyframes statusPulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
	}
}

@keyframes whatsappPulse {
	0%,
	90%,
	100% {
		box-shadow:
			0 0 0 0 rgba(255, 109, 45, 0.65),
			0 22px 45px rgba(255, 109, 45, 0.36);
	}
	95% {
		box-shadow:
			0 0 0 12px rgba(255, 109, 45, 0),
			0 22px 45px rgba(255, 109, 45, 0.36);
	}
}

@media (max-width: 980px) {
	.desktop-nav {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.control-panel-wrap {
		display: none;
	}

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

	.newsletter-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.cta-strip,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.split-heading,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.brands-grid,
	.service-grid {
		grid-template-columns: 1fr;
	}

	.about-visual {
		order: -1;
	}

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

	.stat-item:nth-child(odd) {
		border-left: 0;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 24px, var(--container));
	}

	.header-inner {
		height: 72px;
	}

	.hero {
		min-height: auto;
	}

	.hero-grid {
		min-height: auto;
		padding-block: 118px 72px;
	}

	.hero h1 {
		font-size: clamp(2.35rem, 11.6vw, 3.35rem);
		line-height: 0.98;
	}

	.hero-subtitle {
		font-size: 16px;
		line-height: 1.6;
	}

	.hero-stats {
		gap: 24px;
	}

	.hero-stats div {
		min-width: min(100%, 140px);
	}

	.hero-actions,
	.newsletter-fields {
		flex-direction: column;
	}

	.button,
	.newsletter-form .button {
		width: 100%;
	}

	.email-field input {
		border-right: 1px solid rgba(248, 250, 252, 0.16);
	}

	.control-panel-wrap {
		display: none;
	}

	.brands-page,
	.brand-hero,
	.about-page,
	.contact-section,
	.legal-page {
		padding-block: 104px 72px;
	}

	.split-heading h1,
	.brand-heading h1,
	.contact-heading h1 {
		font-size: clamp(2.45rem, 11.5vw, 3.35rem);
		line-height: 1;
	}

	.brand-heading {
		flex-direction: column;
	}

	.brand-card-body,
	.service-card {
		padding: 24px;
	}

	.stat-strip.is-contained {
		width: min(100% - 24px, var(--container));
	}

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

	.stat-item {
		border-left: 0;
		border-top: 1px solid rgba(248, 250, 252, 0.08);
	}

	.stat-item:first-child {
		border-top: 0;
	}

	.about-values,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.about-visual,
	.about-visual img {
		min-height: 420px;
		height: 420px;
	}

	.cert-card {
		left: 12px;
		right: 12px;
		bottom: -28px;
	}

	.launch-note {
		align-items: flex-start;
		font-size: 10px;
		line-height: 1.6;
	}

	.scroll-indicator {
		display: none;
	}

	.seo-section,
	.newsletter {
		padding-block: 72px;
	}

	.pillars-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cta-strip {
		padding: 24px;
	}

	.cta-strip .button {
		white-space: normal;
	}

	.cookie-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.whatsapp-fab {
		right: 16px;
		bottom: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.hero-copy {
		transform: none !important;
	}
}
