/* ===================== FONTS ===================== */
@font-face {
	font-family: "Poppins";
	src: url("assets/fonts/poppins-400.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("assets/fonts/poppins-500.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("assets/fonts/poppins-600.woff2") format("woff2");
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("assets/fonts/poppins-700.woff2") format("woff2");
	font-weight: 700;
	font-display: swap;
}

/* Cal Sans substitute: Space Grotesk (variable, SIL OFL), aliased as the tight display grotesk */
@font-face {
	font-family: "Cal Sans";
	src: url("assets/fonts/space-grotesk.woff2") format("woff2");
	font-weight: 300 700;
	font-display: swap;
}

/* ===================== TOKENS ===================== */
:root,
[data-theme="light"] {
	--bg: #f6f6f7;
	--surface: #ffffff;
	--header-bg: rgba(255, 255, 255, 0.85);
	--crimson: #e00000;
	--crimson-dark: #a90000;
	--white: #ffffff;
	--border: rgba(0, 0, 0, 0.1);
	--border-soft: rgba(0, 0, 0, 0.06);
	--text: #121212;
	--text-muted: rgba(0, 0, 0, 0.6);
	--text-soft: rgba(0, 0, 0, 0.78);
	--green: #16a34a;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--grad-crimson: linear-gradient(135deg, #E00000 0%, #9c0000 100%);
	--maxw: 1280px;
	--display: "Cal Sans", "Poppins", sans-serif;
}

[data-theme="dark"] {
	--bg: #121212;
	--surface: #1a1a1a;
	--header-bg: rgba(18, 18, 18, 0.85);
	--crimson: #e00000;
	--crimson-dark: #a90000;
	--white: #ffffff;
	--border: rgba(255, 255, 255, 0.08);
	--border-soft: rgba(255, 255, 255, 0.05);
	--text: #fff;
	--text-muted: rgba(255, 255, 255, 0.6);
	--text-soft: rgba(255, 255, 255, 0.85);
}

body {
	transition:
		background 0.3s var(--ease),
		color 0.3s var(--ease);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: "Poppins", system-ui, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

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

.crimson {
	color: var(--crimson);
}

::selection {
	background: var(--crimson);
	color: #fff;
}

h1,
h2,
h3 {
	font-family: var(--display);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 0.98;
}

.eyebrow {
	display: inline-block;
	font-family: "Poppins";
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--crimson);
	margin-bottom: 1.25rem;
}

/* ===================== REVEAL ===================== */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s var(--ease),
		transform 0.7s var(--ease);
}

.reveal.in-view {
	opacity: 1;
	transform: none;
}

.reveal[data-delay="1"] {
	transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
	transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
	transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
	transition-delay: 0.32s;
}

/* ===================== BUTTONS ===================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: "Poppins";
	font-weight: 600;
	font-size: 16px;
	padding: 0.95rem 1.6rem;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.3s var(--ease);
	white-space: nowrap;
}

.btn--white {
	background: #fff;
	color: #000;
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.btn--white:hover {
	box-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.btn--white .arrow-ur {
	transition: transform 0.3s var(--ease);
}

.btn--white:hover .arrow-ur {
	transform: translate(3px, -3px);
}

.btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.04);
}

.btn--black {
	background: #000;
	color: #fff;
	font-size: 20px;
	padding: 1.05rem 2.1rem;
}

.btn--black:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.btn--white-solid {
	background: #fff;
	color: #000;
	font-size: 20px;
	padding: 1.05rem 2.1rem;
}

.btn--white-solid:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

/* ===================== HEADER ===================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	z-index: 50;
	background: var(--header-bg);
	backdrop-filter: blur(16px);
	transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.scrolled {
	border-bottom-color: var(--border);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.header__inner {
	max-width: var(--maxw);
	height: 100%;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.logo {
	display: flex;
	align-items: center;
}

.logo__img {
	height: 70px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.nav {
	display: flex;
	gap: 2.1rem;
}

/* ===== Mobile nav toggle ===== */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 60;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	z-index: 49;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--ease);
}

.mobile-nav.open {
	max-height: 420px;
}

.mobile-nav a {
	padding: 1.1rem 2rem;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border-soft);
	transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.mobile-nav a:hover {
	color: var(--crimson);
	background: rgba(255, 255, 255, 0.03);
}

.mobile-nav__cta {
	color: var(--crimson) !important;
}

.nav a {
	position: relative;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
	padding: 4px 0;
	transition: color 0.3s var(--ease);
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 0;
	background: var(--crimson);
	transition: width 0.3s var(--ease);
}

.nav a:hover {
	color: var(--crimson);
}

.nav a:hover::after {
	width: 100%;
}

.header__utility {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.phone {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	transition: color 0.3s var(--ease);
}

.phone:hover {
	color: #fff;
}

.btn-quote {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	background: var(--crimson);
	color: #fff;
	padding: 0.5rem 1.2rem;
	border-radius: 12px;
	transition: all 0.3s var(--ease);
	box-shadow: 0 0 0 rgba(225, 29, 72, 0);
}

.btn-quote:hover {
	background: var(--crimson-dark);
	box-shadow: 0 8px 26px rgba(225, 29, 72, 0.45);
	transform: translateY(-1px);
}

.btn-quote__primary {
	font-weight: 700;
	font-size: 14px;
}

.btn-quote__secondary {
	font-size: 9px;
	opacity: 0.7;
	letter-spacing: 0.04em;
}


/* ===== Theme toggle ===== */
.theme-toggle {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
	cursor: pointer;
	transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.theme-toggle:hover {
	transform: translateY(-2px);
	border-color: var(--crimson);
	color: var(--crimson);
}

.theme-toggle__sun,
.theme-toggle__moon {
	grid-area: 1 / 1;
}

.theme-toggle__moon {
	display: none;
}

[data-theme="dark"] .theme-toggle__sun {
	display: none;
}

[data-theme="dark"] .theme-toggle__moon {
	display: block;
}

.mobile-nav__theme {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 1.1rem 2rem;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
	background: none;
	border: none;
	border-bottom: 1px solid var(--border-soft);
	cursor: pointer;
	width: 100%;
	text-align: left;
	transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.mobile-nav__theme:hover {
	color: var(--crimson);
	background: rgba(255, 255, 255, 0.03);
}

.mobile-nav__theme .theme-toggle__moon {
	display: none;
}

[data-theme="dark"] .mobile-nav__theme .theme-toggle__sun {
	display: none;
}

[data-theme="dark"] .mobile-nav__theme .theme-toggle__moon {
	display: block;
}

/* ===================== HERO ===================== */
.hero {
	position: relative;
	height: 100vh;
	height: 100dvh;
	display: flex;
	align-items: stretch;
	padding: 0 2rem;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: #121212;
}

.hero__media video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 1;
}



.hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--maxw);
	margin: 0 auto;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 100px 0 2rem;
}

.hero__top {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.5rem 1rem;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.75rem;
}

.badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--crimson);
	animation: pulse-crimson 2s var(--ease) infinite;
}

.hero__intro {
	position: relative;
	min-height: clamp(160px, 24vw, 260px);
	margin-bottom: 1.5rem;
}

.hero__intro-line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	font-family: var(--display);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	font-size: clamp(30px, 4.4vw, 46px);
	max-width: 20ch;
	text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
	pointer-events: none;
	user-select: none;
	opacity: 0;
	filter: blur(10px);
	transform: translateY(16px);
	transition:
		opacity 0.7s var(--ease),
		transform 0.7s var(--ease),
		filter 0.7s var(--ease);
}

.hero__intro-line--in {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

.hero__intro-line--exit-up {
	opacity: 0;
	filter: blur(10px);
	transform: translateY(-26px);
}

.hero__intro-line--exit-down {
	opacity: 0;
	filter: blur(10px);
	transform: translateY(26px);
}

.hero__label,
.hero__typewriter {
	color: #fff;
}

.hero__cursor {
	display: inline-block;
	width: 3px;
	height: 0.9em;
	background: currentColor;
	margin-left: 2px;
	vertical-align: middle;
	animation: cursor-blink 1s step-end infinite;
}

.hero__pills {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.hero__pills-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.5rem;
	width: 100%;
}

.hero__pills.is-visible {
	opacity: 1;
	transform: none;
}

.pill {
	display: inline-flex;
	flex: 0 0 auto;
	width: max-content;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	color: #000;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	padding: 0.55rem 1.15rem;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.pill:hover {
	background: #000;
	color: #fff;
	transform: translateY(-1px);
}

.pill--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.pill--outline:hover {
	background: #fff;
	color: #000;
}

.pill__underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}

@keyframes cursor-blink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

.hero__sub {
	max-width: 600px;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 2.4rem;
}

.hero__cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.proof {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.proof__avatars {
	display: flex;
}

.proof__avatars img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid #121212;
	margin-left: -12px;
	background: #1a1a1a;
}

.proof__avatars img:first-child {
	margin-left: 0;
}

.proof__text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.proof__text strong {
	color: #fff;
}

.proof__stars,
.tquote__stars {
	--star: var(--crimson);
}

.proof__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 2px;
}

/* star rows generated via JS-free unicode fallback */
.proof__stars::before,
.tquote__stars::before {
	content: "★★★★★";
	color: var(--crimson);
	letter-spacing: 2px;
	font-size: 13px;
}

/* ===================== TRUST BAR ===================== */
.trust {
	border-top: 1px solid var(--border-soft);
	border-bottom: 1px solid var(--border-soft);
}

.trust__grid {
	max-width: var(--maxw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	min-height: 140px;
}

.trust__item {
	position: relative;
	padding: 2rem;
	text-align: center;
	border-left: 1px solid var(--border-soft);
	transition: background 0.3s var(--ease);
}

.trust__item:first-child {
	border-left: none;
}

.trust__item:hover {
	background: rgba(255, 255, 255, 0.015);
}

.trust__icon {
	width: 36px;
	height: 36px;
	color: #6b7280;
	margin: 0 auto 0.75rem;
	transition:
		color 0.3s var(--ease),
		transform 0.3s var(--ease);
}

.trust__item:hover .trust__icon {
	color: var(--crimson);
	transform: translateY(-2px);
}

.trust__title {
	font-weight: 700;
	font-size: 17px;
	font-family: var(--display);
	letter-spacing: -0.01em;
}

.trust__sub {
	font-size: 12px;
	color: var(--text-muted);
}

.trust__tooltip {
	position: absolute;
	left: 50%;
	bottom: calc(100% - 6px);
	transform: translate(-50%, 8px);
	width: 240px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1rem;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--text-muted);
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.3s var(--ease),
		transform 0.3s var(--ease);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	z-index: 5;
}

.trust__item:hover .trust__tooltip {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* ===================== ABOUT ===================== */
.about {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 7rem 2rem;
}

.about__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3.5rem;
	align-items: center;
}

.about__title {
	font-size: clamp(40px, 5vw, 60px);
	margin-bottom: 1.4rem;
}

.about__lead {
	color: var(--text-muted);
	max-width: 52ch;
	margin-bottom: 1.1rem;
}

.about__points {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin-top: 2.2rem;
}

.about__point {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
}

.about__point-icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(225, 29, 72, 0.12);
	color: var(--crimson);
}

.about__point-title {
	font-weight: 700;
	font-size: 15px;
	font-family: var(--display);
	letter-spacing: -0.01em;
}

.about__point-sub {
	font-size: 13.5px;
	color: var(--text-muted);
}

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

.stat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 28px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition:
		transform 0.4s var(--ease),
		border-color 0.4s var(--ease);
}

.stat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.15);
}

.stat-card__num {
	font-family: var(--display);
	font-weight: 700;
	font-size: 40px;
	letter-spacing: -0.02em;
	color: var(--text);
}

.stat-card__label {
	font-size: 12.5px;
	color: var(--text-muted);
	margin-top: 0.35rem;
}

/* ===================== SERVICES ===================== */
.services {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 7rem 2rem;
}

.services__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 3.5rem;
	align-items: start;
}

.services__left {
	position: sticky;
	top: 120px;
}

.services__title {
	font-size: clamp(40px, 5vw, 60px);
	margin-bottom: 1.4rem;
}

.services__lead {
	color: var(--text-muted);
	max-width: 42ch;
	margin-bottom: 2.2rem;
}

.compare {
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.012);
}

.compare__head {
	display: grid;
	grid-template-columns: 1.6fr 0.5fr 0.5fr 0.7fr;
	gap: 0.5rem;
	padding: 1rem 1.2rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border-soft);
}

.compare__head span:not(:first-child) {
	text-align: center;
}

.compare__row {
	border-bottom: 1px solid var(--border-soft);
}

.compare__row:last-child {
	border-bottom: none;
}

.compare__row summary {
	list-style: none;
	cursor: pointer;
	padding: 1rem 1.2rem;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.3s var(--ease);
}

.compare__row summary::-webkit-details-marker {
	display: none;
}

.compare__row summary:hover {
	background: rgba(255, 255, 255, 0.02);
}

.chev {
	color: var(--crimson);
	font-size: 20px;
	transition: transform 0.3s var(--ease);
}

details[open]>summary .chev {
	transform: rotate(90deg);
}

.compare__marks {
	display: grid;
	grid-template-columns: 0.5fr 0.5fr 0.7fr;
	gap: 0.5rem;
	padding: 0 1.2rem 1rem;
}

.compare__marks i {
	justify-self: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
}

.compare__marks .yes {
	background: rgba(34, 197, 94, 0.15);
}

.compare__marks .yes::after {
	content: "✓";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--green);
	font-size: 11px;
	font-weight: 700;
}

.compare__marks .no {
	background: rgba(255, 255, 255, 0.06);
}

.compare__marks .no::after {
	content: "–";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--text-muted);
	font-size: 12px;
}

.compare__marks .part {
	background: rgba(225, 29, 72, 0.15);
}

.compare__marks .part::after {
	content: "+";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--crimson);
	font-size: 12px;
	font-weight: 700;
}

.services__right {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.svc-card {
	border-radius: 40px;
	padding: 2.5rem;
	background: var(--surface);
	border: 1px solid var(--border);
	transition:
		transform 0.4s var(--ease),
		box-shadow 0.4s var(--ease);
}

.svc-card:hover {
	transform: translateY(-4px);
}

.svc-card--featured {
	background: var(--crimson);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 30px 70px rgba(225, 29, 72, 0.25);
}

.svc-card--featured:hover {
	box-shadow: 0 36px 90px rgba(225, 29, 72, 0.4);
}

.svc-card__tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.2);
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.svc-card__name {
	font-size: 30px;
	margin-bottom: 0.5rem;
}

.svc-card__price {
	font-size: 15px;
	opacity: 0.85;
	margin-bottom: 0.8rem;
}

.svc-card__price strong {
	font-size: 22px;
	font-family: var(--display);
}

.svc-card__desc {
	font-size: 14.5px;
	opacity: 0.8;
	max-width: 46ch;
}

.svc-card--featured .svc-card__desc,
.svc-card--featured .svc-card__price {
	opacity: 0.92;
}

.incl {
	margin-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
}

.svc-card:not(.svc-card--featured) .incl {
	border-top-color: var(--border-soft);
}

.incl summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
}

.incl summary::-webkit-details-marker {
	display: none;
}

.incl .chev {
	color: inherit;
}

.svc-card:not(.svc-card--featured) .incl .chev {
	color: var(--crimson);
}

.incl ul {
	list-style: none;
	margin-top: 1rem;
	display: grid;
	gap: 0.6rem;
}

.incl li {
	position: relative;
	padding-left: 1.6rem;
	font-size: 13.5px;
	opacity: 0.85;
}

.incl li::before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: 700;
}

.svc-card--featured .incl li::before {
	color: #fff;
}

.svc-card:not(.svc-card--featured) .incl li::before {
	color: var(--crimson);
}

.svc-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.6rem;
	font-weight: 700;
	font-size: 15px;
}

.svc-card__cta .arrow {
	transition: transform 0.3s var(--ease);
}

.svc-card__cta:hover .arrow {
	transform: translateX(4px);
}

/* ===================== PORTFOLIO ===================== */
.portfolio {
	padding: 5rem 0 7rem;
}

.portfolio__head {
	max-width: var(--maxw);
	margin: 0 auto 2.5rem;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
}

.portfolio__title {
	font-size: clamp(38px, 5vw, 58px);
}

.portfolio__hint {
	font-size: 13px;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

.portfolio__track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 0 2rem 1.5rem;
	cursor: grab;
	scroll-padding-left: 2rem;
}

.portfolio__track.dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.no-scrollbar {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.tcard {
	position: relative;
	flex: 0 0 420px;
	height: 520px;
	border-radius: 3rem;
	overflow: hidden;
	scroll-snap-align: start;
	background: var(--surface);
	border: 1px solid var(--border);
	user-select: none;
	cursor: pointer;
	transition:
		transform 0.4s var(--ease),
		border-color 0.4s var(--ease);
}

.tcard:hover,
.tcard:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.15);
	outline: none;
}

.tcard__img {
	position: absolute;
	inset: 0;
}

.tcard__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(15%) brightness(0.82);
	transition:
		filter 0.6s var(--ease),
		transform 0.6s var(--ease);
}

.tcard:hover .tcard__img img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.04);
}

.tcard__restored {
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	z-index: 3;
	background: var(--crimson);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
}

.tcard__roi {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	z-index: 4;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	padding: 0.8rem 1.5rem;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	font-family: var(--display);
	letter-spacing: -0.01em;
	white-space: nowrap;
	opacity: 0;
	transition:
		opacity 0.5s var(--ease),
		transform 0.5s var(--ease);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tcard:hover .tcard__roi {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.tcard__foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 2.5rem 1.8rem 1.8rem;
	background: linear-gradient(0deg,
			rgba(0, 0, 0, 0.85) 0%,
			rgba(0, 0, 0, 0.45) 55%,
			transparent 100%);
}

.tcard__name {
	font-family: var(--display);
	font-weight: 700;
	font-size: 26px;
	letter-spacing: -0.02em;
	margin-bottom: 0.3rem;
	color: #fff;
}

.tcard__stats {
	display: flex;
	gap: 0.5rem;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.case-section-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--crimson);
	margin: 1.8rem 0 0.9rem;
}

.case-section-title:first-child {
	margin-top: 0;
}

.case-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 0.4rem;
}

.case-tech span {
	background: rgba(225, 29, 72, 0.1);
	color: var(--crimson);
	font-size: 12px;
	font-weight: 700;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
}

.case-results {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.8rem;
	margin: 0 0 0.4rem;
}

.case-results div {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1rem 0.6rem;
	text-align: center;
}

.case-results .case-results__num {
	display: block;
	font-family: var(--display);
	font-weight: 700;
	font-size: 21px;
	color: var(--text);
}

.case-results .case-results__label {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 0.3rem;
}

@media (max-width: 480px) {
	.case-results {
		grid-template-columns: 1fr;
	}
}

/* ===================== BLOG ===================== */
.blog {
	padding: 5rem 0 7rem;
}

.blog__head {
	max-width: var(--maxw);
	margin: 0 auto 2.5rem;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
}

.blog__title {
	font-size: clamp(38px, 5vw, 58px);
}

.blog__hint {
	font-size: 13px;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

.blog__track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 0 2rem 1.5rem;
	cursor: grab;
	scroll-padding-left: 2rem;
}

.blog__track.dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.blog-card {
	flex: 0 0 380px;
	scroll-snap-align: start;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 2.5rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	user-select: none;
	transition:
		transform 0.4s var(--ease),
		border-color 0.4s var(--ease);
}

.blog-card:hover,
.blog-card:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.15);
	outline: none;
}

.blog-card__img {
	width: 100%;
	height: 180px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 1.4rem;
	background: var(--grad-crimson);
}

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

.blog-card__tag {
	display: inline-block;
	width: fit-content;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--crimson);
	background: rgba(225, 29, 72, 0.1);
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	margin-bottom: 0.9rem;
}

.blog-card__title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 21px;
	letter-spacing: -0.01em;
	line-height: 1.25;
	margin-bottom: 0.7rem;
}

.blog-card__excerpt {
	font-size: 14px;
	color: var(--text-muted);
	flex: 1;
	margin-bottom: 1.4rem;
}

.blog-card__meta {
	display: flex;
	gap: 0.5rem;
	font-size: 12.5px;
	color: var(--text-muted);
	margin-bottom: 1.2rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--border-soft);
}

.blog-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 14px;
}

.blog-card__cta .arrow {
	transition: transform 0.3s var(--ease);
}

.blog-card__cta:hover .arrow {
	transform: translateX(4px);
}

/* ===================== BLOG MODAL ===================== */
.blog-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	visibility: hidden;
	opacity: 0;
	transition:
		opacity 0.35s var(--ease),
		visibility 0.35s var(--ease);
}

.blog-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.blog-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.8);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.blog-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 720px;
	max-height: 86vh;
	overflow-y: auto;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 2.5rem;
	transform: translateY(24px) scale(0.98);
	transition: transform 0.35s var(--ease);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.blog-modal.is-open .blog-modal__dialog {
	transform: translateY(0) scale(1);
}

.blog-modal__close {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	z-index: 2;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	display: grid;
	place-items: center;
	background: rgba(18, 18, 18, 0.7);
	color: #fff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	transition:
		background 0.3s var(--ease),
		transform 0.3s var(--ease);
}

.blog-modal__close:hover {
	background: var(--crimson);
	transform: rotate(90deg);
}

.blog-modal__img {
	width: 100%;
	height: 280px;
	overflow: hidden;
	border-radius: 2.5rem 2.5rem 0 0;
	background: var(--grad-crimson);
}

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

.blog-modal__body {
	padding: 2.4rem 2.6rem 3rem;
}

.blog-modal__tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--crimson);
	background: rgba(225, 29, 72, 0.1);
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.blog-modal__title {
	font-size: clamp(26px, 4vw, 36px);
	margin-bottom: 0.8rem;
}

.blog-modal__meta {
	display: flex;
	gap: 0.5rem;
	font-size: 13px;
	color: var(--text-muted);
	padding-bottom: 1.6rem;
	margin-bottom: 1.6rem;
	border-bottom: 1px solid var(--border-soft);
}

.blog-modal__content {
	font-size: 15.5px;
	color: var(--text-soft);
}

.blog-modal__content p {
	margin-bottom: 1.2rem;
}

.blog-modal__content h3 {
	font-size: 19px;
	margin: 1.8rem 0 0.8rem;
	letter-spacing: -0.01em;
}

.blog-modal__content ul {
	margin: 0 0 1.2rem 1.2rem;
	display: grid;
	gap: 0.5rem;
}

.blog-modal__content li {
	font-size: 15px;
	color: var(--text-soft);
}

body.modal-open {
	overflow: hidden;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
	padding: 5rem 0 7rem;
}

.testimonials__head {
	max-width: var(--maxw);
	margin: 0 auto 2.5rem;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
}

.testimonials__title {
	font-size: clamp(38px, 5vw, 58px);
}

.testimonials__hint {
	font-size: 13px;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

.testimonials__track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 0 2rem 1.5rem;
	cursor: grab;
	scroll-padding-left: 2rem;
}

.testimonials__track.dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.tquote {
	flex: 0 0 380px;
	scroll-snap-align: start;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 2.5rem;
	padding: 2.2rem;
	display: flex;
	flex-direction: column;
	user-select: none;
	transition:
		transform 0.4s var(--ease),
		border-color 0.4s var(--ease);
}

.tquote:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.15);
}

.tquote__stars {
	margin-bottom: 1.2rem;
}

.tquote blockquote {
	font-size: 18px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.45;
	flex: 1;
	margin-bottom: 1.8rem;
}

.tquote__person {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.tquote__person img {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 0.4s var(--ease);
	background: #222;
}

.tquote:hover .tquote__person img {
	filter: grayscale(0);
}

.tquote__name {
	font-weight: 700;
	font-size: 15px;
}

.tquote__role {
	font-size: 12.5px;
	color: var(--text-muted);
}

/* ===================== FINAL CTA ===================== */
.cta {
	padding: 2rem 2rem 0;
}

.cta__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	background: var(--grad-crimson);
	border-radius: 3rem;
	padding: 6rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta__inner::before {
	content: "";
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(circle,
			rgba(255, 255, 255, 0.18),
			transparent 60%);
	pointer-events: none;
}

.cta__title {
	position: relative;
	font-size: clamp(44px, 7vw, 80px);
	color: #fff;
	margin-bottom: 1.4rem;
}

.cta__title .muted {
	color: rgba(0, 0, 0, 0.3);
}

.cta__sub {
	position: relative;
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	max-width: 48ch;
	margin: 0 auto 2.6rem;
}

.cta__buttons {
	position: relative;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.cta__badges {
	position: relative;
	display: flex;
	gap: 0.8rem;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
}

/* ===================== FOOTER ===================== */
.footer {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 5rem 0 2.5rem;
}

.footer__top {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.8fr 1.3fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid var(--border-soft);
}

.footer__brand .logo {
	margin-bottom: 1.1rem;
}

.footer__tagline {
	font-size: 13.5px;
	color: var(--text-muted);
	max-width: 30ch;
	margin-bottom: 1.4rem;
}

.footer__socials {
	display: flex;
	gap: 0.6rem;
}

.footer__social {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text-muted);
	transition:
		background 0.3s var(--ease),
		color 0.3s var(--ease),
		transform 0.3s var(--ease),
		border-color 0.3s var(--ease);
}

.footer__social:hover {
	background: var(--crimson);
	border-color: var(--crimson);
	color: #fff;
	transform: translateY(-2px);
}

.footer__heading {
	font-family: var(--display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 1.2rem;
	color: var(--text);
}

.footer__list {
	list-style: none;
	display: grid;
	gap: 0.7rem;
}

.footer__list a {
	font-size: 13.5px;
	color: var(--text-muted);
	transition: color 0.3s var(--ease);
}

.footer__list a:hover {
	color: var(--crimson);
}

.footer__col--wide {
	max-width: 320px;
}

.footer__contact {
	list-style: none;
	display: grid;
	gap: 0.8rem;
	margin-bottom: 1.8rem;
}

.footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 13.5px;
	color: var(--text-muted);
}

.footer__contact svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--crimson);
}

.footer__contact a {
	color: var(--text-muted);
	transition: color 0.3s var(--ease);
}

.footer__contact a:hover {
	color: var(--crimson);
}

.footer__newsletter-label {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 0.6rem;
}

.footer__newsletter-row {
	display: flex;
	gap: 0.5rem;
}

.footer__newsletter-row input {
	flex: 1;
	min-width: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.7rem 1.1rem;
	font-size: 13px;
	color: var(--text);
	caret-color: var(--text);
	-webkit-text-fill-color: var(--text);
	font-family: "Poppins", sans-serif;
}

.footer__newsletter-row input:-webkit-autofill,
.footer__newsletter-row input:-webkit-autofill:hover,
.footer__newsletter-row input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--text);
	-webkit-box-shadow: 0 0 0 1000px var(--surface) inset;
	transition: background-color 9999s ease-in-out 0s;
}

.footer__newsletter-row input::placeholder {
	color: var(--text-muted);
}

.footer__newsletter-row input:focus {
	outline: none;
	border-color: var(--crimson);
}

.footer__newsletter-row button {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: var(--crimson);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition:
		background 0.3s var(--ease),
		transform 0.3s var(--ease);
}

.footer__newsletter-row button:hover {
	background: var(--crimson-dark);
	transform: translateX(2px);
}

.footer__newsletter-note {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 0.6rem;
	min-height: 1em;
}

.footer__newsletter-note.is-success {
	color: var(--green);
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 1.8rem;
	font-size: 12.5px;
	color: var(--text-muted);
}

.footer__legal {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.footer__legal a {
	color: var(--text-muted);
	transition: color 0.3s var(--ease);
}

.footer__legal a:hover {
	color: var(--crimson);
}

.legal-modal__body {
	padding-top: 3.2rem;
}

/* ===================== KEYFRAMES ===================== */
@keyframes pulse-green {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	}

	50% {
		transform: scale(1.2);
		box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
	}
}

@keyframes pulse-crimson {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
	}

	50% {
		transform: scale(1.25);
		box-shadow: 0 0 0 7px rgba(225, 29, 72, 0);
	}
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {

	.nav {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.services__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.services__left {
		position: static;
	}

	.about__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.stat-grid {
		max-width: 420px;
	}

	.footer__top {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}

	.footer__col--wide {
		max-width: none;
		grid-column: span 2;
	}
}

@media (max-width: 640px) {


	.hero__media video {
        object-position: 75% center; 
    }

	.header__inner {
		padding: 0 1.2rem;
	}

	.phone {
		display: none;
	}

	.hero {
		padding: 0 1.2rem;
	}

	.services,
	.about {
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}

	.testimonials__head {
		padding: 0 1.2rem;
	}

	.testimonials__track {
		padding: 0 1.2rem 1.5rem;
	}

	.tquote {
		flex-basis: 85vw;
	}

	.blog__head {
		padding: 0 1.2rem;
	}

	.blog__track {
		padding: 0 1.2rem 1.5rem;
	}

	.blog-card {
		flex-basis: 85vw;
	}

	.stat-grid {
		max-width: none;
	}

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

	.trust__item:nth-child(odd) {
		border-left: none;
	}

	.trust__item:nth-child(3),
	.trust__item:nth-child(4) {
		border-top: 1px solid var(--border-soft);
	}

	.tcard {
		flex-basis: 85vw;
		height: 500px;
	}

	.portfolio__head {
		padding: 0 1.2rem;
	}

	.portfolio__track {
		padding: 0 1.2rem 1.5rem;
	}

	.cta {
		padding: 1rem 0.8rem 0;
	}

	.cta__inner {
		padding: 4rem 1.2rem;
		border-radius: 2rem;
	}

	.blog-modal {
		padding: 0;
	}

	.blog-modal__dialog {
		max-width: 100%;
		max-height: 100vh;
		height: 100vh;
		border-radius: 0;
	}

	.blog-modal__img {
		height: 220px;
		border-radius: 0;
	}

	.blog-modal__body {
		padding: 2rem 1.4rem 2.5rem;
	}

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

	.footer__col--wide {
		grid-column: auto;
	}

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

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: var(--surface);
	color: var(--text);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
	z-index: 9999;
	transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-top: 1px solid var(--border);
}

[data-theme="dark"] .cookie-banner {
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.cookie-banner.is-visible {
	bottom: 0;
}

.cookie-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.25rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 768px) {
	.cookie-banner__inner {
		flex-direction: row;
		gap: 2rem;
	}
}

.cookie-banner__text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	text-align: center;
	color: var(--text-soft);
}

@media (min-width: 768px) {
	.cookie-banner__text {
		text-align: left;
	}
}

.cookie-banner__link {
	color: var(--crimson);
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.2s ease;
}

.cookie-banner__link:hover {
	color: var(--crimson-dark);
}

.cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
	width: 100%;
	justify-content: stretch;
}

@media (min-width: 768px) {
	.cookie-banner__actions {
		width: auto;
		justify-content: flex-end;
	}
}

/* Dedicated, properly-sized buttons for the cookie banner — the old markup
   reused .btn--black / .btn--white-solid, which are styled for the hero CTA
   (20px font, 1rem+ padding) and looked oversized and out of place here. */
.cookie-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 13.5px;
	line-height: 1;
	padding: 0.75rem 1.4rem;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

@media (min-width: 768px) {
	.cookie-btn {
		flex: none;
	}
}

.cookie-btn--accept {
	background: var(--crimson);
	color: #fff;
}

.cookie-btn--accept:hover {
	background: var(--crimson-dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
}

.cookie-btn--decline {
	background: transparent;
	color: var(--text-muted);
	border-color: var(--border);
}

.cookie-btn--decline:hover {
	border-color: var(--text-muted);
	color: var(--text);
	transform: translateY(-1px);
}

@media (max-width: 640px) {
	.header__utility .theme-toggle,
	.header__utility .btn-quote {
		display: none;
	}
}