:root {
	--orange: #ff4d00;
	--black: #000000;
	--white: #ffffff;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scrollbar-width: none;
	overflow-x: hidden;
}
html::-webkit-scrollbar {
	display: none;
}
body::-webkit-scrollbar {
	display: none;
}
body {
	background: var(--orange);
	color: var(--black);
	font-family: "Inter", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
::selection {
	background: var(--black);
	color: var(--orange);
}
a {
	color: inherit;
	text-decoration: none;
}
.display {
	font-family: "Archivo Black", "Inter", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	line-height: 0.85;
}
.mono {
	font-family: "Space Mono", monospace;
	letter-spacing: -0.02em;
}

/* ============ LIQUID GLASS ============ */
/* Frosted surface + masked gradient border, reused on every glass element.
   Border gradient tuned per surface via --glass-edge (light on black, dark on orange). */
.glass {
	--glass-edge-1: rgba(255, 255, 255, 0.5);
	--glass-edge-2: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.045);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
	position: relative;
	overflow: hidden;
}
.glass::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1.4px;
	background: linear-gradient(
		180deg,
		var(--glass-edge-1) 0%,
		var(--glass-edge-2) 20%,
		rgba(255, 255, 255, 0) 40%,
		rgba(255, 255, 255, 0) 60%,
		var(--glass-edge-2) 80%,
		var(--glass-edge-1) 100%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.glass-on-orange {
	--glass-edge-1: rgba(0, 0, 0, 0.65);
	--glass-edge-2: rgba(0, 0, 0, 0.3);
	background: rgba(0, 0, 0, 0.16);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35);
}
/* Opaque-ish dark glass for white-text elements that float over the orange
   sections (or the fixed nav, which crosses both orange and black) — the
   subtle tint above only reads on a flat orange fill, not enough for
   legible white text. */
.glass-dark {
	--glass-edge-1: rgba(255, 255, 255, 0.35);
	--glass-edge-2: rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.62);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14);
}

/* NAV — glass pill */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
}
.brand {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	font-family: "Archivo Black", sans-serif;
	font-weight: 900;
	letter-spacing: -0.03em;
	font-size: 1.15rem;
	text-transform: uppercase;
	color: var(--black);
}
.brand .back {
	font-family: "Space Mono", monospace;
	font-weight: 400;
	font-size: 0.68rem;
	letter-spacing: 0.02em;
	text-transform: none;
	color: rgba(0, 0, 0, 0.55);
}
.pill {
	display: flex;
	gap: 0.25rem;
	align-items: center;
	border-radius: 9999px;
	padding: 0.45rem 0.6rem;
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.25),
		inset 0 1px 1px rgba(255, 255, 255, 0.12);
}
.pill a {
	font-family: "Space Mono", monospace;
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--white);
	padding: 0.45rem 0.9rem;
	border-radius: 9999px;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}
.pill a:hover {
	background: var(--white);
	color: var(--black);
}
.nav-right {
	display: flex;
	gap: 0.5rem;
}
.enter-btn {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--white);
	font-family: "Space Mono", monospace;
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 0.7rem 1.1rem;
	border-radius: 9999px;
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.25),
		inset 0 1px 1px rgba(255, 255, 255, 0.12);
	transition: transform 0.25s ease;
}
.enter-btn:hover {
	transform: translateY(-3px);
}
.enter-btn svg {
	width: 14px;
	height: 14px;
}

/* SCROLL INDICATOR */
.scroll-indicator {
	position: relative;
	width: 144px;
	height: 144px;
	justify-self: center;
}
.scroll-ring {
	width: 100%;
	height: 100%;
	animation: spin 12s linear infinite;
}
.scroll-ring text {
	font-family: "Space Mono", monospace;
	font-weight: 700;
	font-size: 9px;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	fill: var(--black);
}
.scroll-center {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scroll-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
	animation: pulse-ring 2.4s ease-in-out infinite;
}
.scroll-btn svg {
	width: 20px;
	height: 20px;
	stroke: var(--white);
}
@keyframes pulse-ring {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}
/* meta chips flanking the scroll indicator */
.meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border: 2px solid var(--black);
	border-radius: 9999px;
	padding: 0.6rem 1.1rem;
	background: var(--white);
	box-shadow: 4px 4px 0 var(--black);
}
@keyframes spin {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}

/* MARQUEE BAND */
.band {
	background: var(--black);
	overflow: hidden;
	transform: skewY(-2deg);
	padding: 3.2rem 0;
	margin: -1px 0;
	border-top: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
}
.marquee {
	display: flex;
	width: max-content;
	white-space: nowrap;
}
.marquee .track {
	display: flex;
	font-size: 10vw;
	will-change: transform;
}
.marquee.left .track {
	animation: scroll-left 30s linear infinite;
}
.marquee.right .track {
	animation: scroll-right 30s linear infinite;
}
.row1 {
	color: var(--orange);
}
.row2 {
	color: var(--white);
	opacity: 0.8;
	margin-top: 0.4rem;
}
.track span {
	padding-right: 0.4em;
}
@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@keyframes scroll-right {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(0);
	}
}

/* SECTION HEADERS (black sections) */
.section-black {
	background: var(--black);
	color: var(--white);
	padding: 6rem 2rem;
}
.services-header {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	max-width: 1200px;
	margin: 0 auto 1.2rem;
}
.services-header h2 {
	font-size: 6.4vw;
	color: var(--white);
}
.services-header .star {
	width: clamp(32px, 5vw, 64px);
	height: clamp(32px, 5vw, 64px);
	color: var(--orange);
	flex: none;
}
.section-sub {
	font-family: "Space Mono", monospace;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 46ch;
	margin: 0 auto 3rem;
	line-height: 1.6;
	text-align: center;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Space Mono", monospace;
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 0.8rem;
}
.eyebrow .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	display: inline-block;
}

/* TESTIMONIALS */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.testi-card {
	border-radius: 20px;
	padding: 1.8rem;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.testi-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(255, 77, 0, 0.12);
}
.testi-stars {
	color: var(--orange);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
}
.testi-quote {
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	flex: 1;
}
.testi-person {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
.testi-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Archivo Black", sans-serif;
	font-size: 0.75rem;
	flex: none;
}
.testi-person .name {
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--white);
}
.testi-person .role {
	font-family: "Space Mono", monospace;
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.45);
}

/* ECOSYSTEM / SERVICE CARDS */
.eco-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.service {
	display: block;
	border-radius: 22px;
	padding: 1.8rem 1.7rem 1.6rem;
	cursor: pointer;
	transition:
		background 0.3s ease,
		transform 0.15s ease-out;
	will-change: transform;
}
.service:hover {
	background: rgba(255, 255, 255, 0.09);
}
.service .idx {
	font-family: "Space Mono", monospace;
	font-weight: 700;
	color: var(--orange);
	font-size: 0.85rem;
	display: block;
	margin-bottom: 0.9rem;
}
.service h3 {
	font-size: 2.6rem;
	color: var(--white);
	line-height: 0.9;
}
.service .desc {
	font-family: "Inter", sans-serif;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.62);
	margin-top: 0.9rem;
	line-height: 1.55;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.1rem;
}
.tag {
	font-family: "Space Mono", monospace;
	font-size: 0.64rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 9999px;
	padding: 0.35rem 0.8rem;
	color: rgba(255, 255, 255, 0.85);
}
.service .visit-row {
	margin-top: 1.4rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.service .visit {
	font-family: "Space Mono", monospace;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--orange);
}
.service .arrow {
	color: var(--orange);
	transition: transform 0.3s ease;
}
.service .arrow svg {
	width: 22px;
	height: 22px;
}
.service:hover .arrow {
	transform: rotate(45deg);
}

/* CAPABILITIES — glass chips on orange */
.capabilities {
	background: var(--orange);
	padding: 3.5rem 2rem 5rem;
}
.cap-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}
.cap-chip {
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	min-height: 320px;
	padding: 1.3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--card-grad);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.cap-spotlight {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 20%), rgba(255, 255, 255, 0.4), transparent 62%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}
.cap-chip:hover .cap-spotlight {
	opacity: 1;
}
.cap-chip::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.18) 48%, transparent 72%);
	pointer-events: none;
}
.cap-chip:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 50px rgba(0, 0, 0, 0.3);
}
.cap-chip-icon {
	position: relative;
	z-index: 1;
	align-self: flex-start;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 13px;
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.4),
		0 8px 20px rgba(0, 0, 0, 0.15);
}
.cap-chip-icon svg {
	width: 22px;
	height: 22px;
	color: var(--white);
}
.cap-chip-text {
	position: relative;
	z-index: 1;
}
.cap-chip h4 {
	font-family: "Instrument Serif", serif;
	font-style: italic;
	font-weight: 400;
	font-size: 1.7rem;
	color: var(--white);
	letter-spacing: -0.01em;
	margin-bottom: 0.4rem;
}
.cap-chip p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

/* FAQ ACCORDION — "Pregúntale a Taly" */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	max-width: 760px;
	margin: 0 auto;
}
.faq-item {
	border-radius: 18px;
	overflow: hidden;
}
.faq-item .faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: none;
	border: none;
	color: var(--white);
	text-align: left;
	padding: 1.3rem 1.5rem;
	cursor: pointer;
	font-family: inherit;
}
.faq-q .qmark {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Archivo Black", sans-serif;
	font-size: 0.7rem;
}
.faq-q .qtext {
	flex: 1;
	font-family: "Archivo Black", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: 1.05rem;
}
.faq-q .chev {
	flex: none;
	color: var(--orange);
	transition: transform 0.3s ease;
}
.faq-item.open .faq-q .chev {
	transform: rotate(180deg);
}
.faq-a {
	height: 0;
	overflow: hidden;
}
.faq-item.open .faq-a {
	height: auto;
}
.faq-a-inner {
	padding: 0 1.5rem 1.5rem 4.2rem;
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.65);
}

/* PRODUCT MOCKUP (fake dashboard panel) */
.mockup {
	border-radius: 20px;
	overflow: hidden;
}
.mockup__bar {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.8rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup__bar .dotc {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
}
.mockup__url {
	margin-left: 0.6rem;
	font-family: "Space Mono", monospace;
	font-size: 0.66rem;
	color: rgba(255, 255, 255, 0.4);
}
.mockup__body {
	padding: 1.4rem 1.5rem 1.6rem;
}
.mockup__stat-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 1.1rem;
}
.mockup__label {
	font-family: "Space Mono", monospace;
	font-size: 0.66rem;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 0.3rem;
}
.mockup__big {
	font-family: "Archivo Black", sans-serif;
	font-size: 1.7rem;
	color: var(--white);
}
.mockup__pct {
	font-family: "Space Mono", monospace;
	font-size: 0.75rem;
	color: var(--orange);
	background: rgba(255, 77, 0, 0.15);
	padding: 0.3rem 0.6rem;
	border-radius: 9999px;
}
.mockup__chart {
	display: flex;
	align-items: flex-end;
	gap: 0.4rem;
	height: 70px;
	margin-bottom: 1.2rem;
}
.mockup__chart span {
	flex: 1;
	background: linear-gradient(180deg, var(--orange), rgba(255, 77, 0, 0.25));
	border-radius: 3px 3px 0 0;
}
.mockup__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
}
.mc {
	border-radius: 12px;
	padding: 0.8rem 0.9rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.mc__k {
	font-family: "Space Mono", monospace;
	font-size: 0.62rem;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 0.25rem;
}
.mc__v {
	font-family: "Archivo Black", sans-serif;
	font-size: 1.05rem;
	color: var(--white);
}

/* STEPS ("cómo se implementa") */
.steps {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
}
.steps::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 8%;
	right: 8%;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
}
.step {
	position: relative;
}
.step__num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Archivo Black", sans-serif;
	font-size: 1.1rem;
	margin-bottom: 1.2rem;
	position: relative;
	z-index: 1;
}
.step h3 {
	font-family: "Space Mono", monospace;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0.6rem;
	color: var(--white);
}
.step p {
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.6);
}

/* BENEFITS (checklist) */
.benefits {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}
.benefit-card {
	border-radius: 20px;
	padding: 1.8rem;
	transition: box-shadow 0.25s ease;
}
.benefit-card:hover {
	box-shadow: 0 16px 32px rgba(255, 77, 0, 0.12);
}
.benefit-card__title {
	font-family: "Space Mono", monospace;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.2rem;
	color: rgba(255, 255, 255, 0.5);
}
.checklist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
.checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.9rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.55);
}
.checklist li svg {
	flex: none;
	width: 18px;
	height: 18px;
	margin-top: 0.1rem;
}
.checklist.no li svg {
	color: rgba(255, 255, 255, 0.3);
}
.checklist.yes li {
	color: var(--white);
}
.checklist.yes li svg {
	color: var(--orange);
}

/* FEATURE CARDS ("qué hace") */
.feature-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}
.feature-card {
	border-radius: 20px;
	padding: 1.7rem;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(255, 77, 0, 0.12);
}
.feature-spotlight {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 30%), rgba(255, 122, 40, 0.22), transparent 65%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}
.feature-card:hover .feature-spotlight {
	opacity: 1;
}
.feature-card .icon,
.feature-card h3,
.feature-card p {
	position: relative;
	z-index: 1;
}
.feature-card .icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 77, 0, 0.14);
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
}
.feature-card .icon svg {
	width: 22px;
	height: 22px;
}
.feature-card h3 {
	font-family: "Space Mono", monospace;
	font-size: 0.92rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0.55rem;
	color: var(--white);
}
.feature-card p {
	font-size: 0.87rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.6);
}

/* DETAIL PAGE HERO */
.detail-hero {
	background: var(--orange);
	padding: 9rem 2rem 5rem;
}
.detail-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3rem;
	align-items: center;
}
.detail-hero h1 {
	font-size: 6.2vw;
	color: var(--black);
	margin-bottom: 1.3rem;
}
.detail-hero__sub {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.72);
	max-width: 46ch;
	margin-bottom: 2rem;
}
.detail-hero__ctas {
	display: flex;
	gap: 0.9rem;
	flex-wrap: wrap;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Space Mono", monospace;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 1rem 1.7rem;
	border-radius: 9999px;
	transition: transform 0.25s ease;
}
.btn svg {
	width: 14px;
	height: 14px;
}
.btn-solid {
	background: var(--black);
	color: var(--white);
}
.btn-solid:hover {
	transform: translateY(-3px);
}
.btn-glass {
	background: var(--white);
	border: 2px solid var(--black);
	color: var(--black);
	box-shadow: 4px 4px 0 var(--black);
}
.btn-glass:hover {
	transform: translate(4px, 4px);
	box-shadow: 0 0 0 var(--black);
}

/* CTA */
.cta {
	background: var(--orange);
	text-align: center;
	padding: 7rem 1rem 5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}
.cta h2 {
	font-size: 14vw;
	color: var(--black);
}
.cta-btn {
	color: var(--white);
	border-radius: 9999px;
	font-family: "Space Mono", monospace;
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(0.8rem, 1.4vw, 1.1rem);
	letter-spacing: 0.02em;
	padding: 1.2rem 2.8rem;
	display: inline-block;
	transition: transform 0.3s ease;
}
.cta-btn:hover {
	transform: scale(1.08);
}

/* FOOTER */
footer {
	background: var(--orange);
	border-top: 2px solid var(--black);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}
footer .copy {
	font-family: "Space Mono", monospace;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
}
footer .links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}
footer .links a {
	font-family: "Space Mono", monospace;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: opacity 0.2s ease;
}
footer .links a:hover {
	opacity: 0.6;
}

@media (max-width: 860px) {
	.detail-hero__inner {
		grid-template-columns: 1fr;
	}
	.steps,
	.benefits,
	.feature-grid,
	.testi-grid {
		grid-template-columns: 1fr;
	}
	.steps::before {
		display: none;
	}
}
@media (max-width: 760px) {
	nav {
		padding: 1rem;
	}
	.pill {
		display: none;
	}
	.services-header h2,
	.detail-hero h1 {
		font-size: 12vw;
	}
	.cap-row {
		grid-template-columns: 1fr 1fr;
	}
	.eco-grid {
		grid-template-columns: 1fr;
	}
	.service h3 {
		font-size: 9vw;
	}
}
@media (max-width: 480px) {
	.cap-row {
		grid-template-columns: 1fr;
	}
}
