/* ==========================================================================
   DevRocket Home — Design System (Prism reference, brand-adapted)
   ========================================================================== */

:root {
	/* Surfaces */
	--bg: #010513;
	--bg-2: #010821;
	--bg-pill: #02081d;
	--bg-soft: rgba(2, 8, 29, 0.6);

	/* Text */
	--text: #ebf3fe;
	--text-2: rgba(235, 243, 254, 0.87);
	--text-3: rgba(235, 243, 254, 0.5);

	/* Brand */
	--blue: #0871e0;
	--blue-2: #2b8fff;
	--blue-border: rgba(41, 137, 255, 0.15);
	--glow-a: rgba(116, 176, 253, 0.12);
	--glow-b: rgba(212, 232, 255, 0.08);
	--glow-c: rgba(212, 232, 255, 0.12);
	--orange: #fd9500;
	--orange-soft: rgba(253, 149, 0, 0.14);
	--red: #e52e2e;

	/* Type */
	--font-head: "Sora", "Inter Tight", system-ui, sans-serif;
	--font-body: "Inter Tight", system-ui, sans-serif;
	--font-menu: "Inter", system-ui, sans-serif;

	/* Radius */
	--r-btn: 8px;
	--r-card: 16px;
	--r-card-sm: 12px;
	--r-pill: 100px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	overflow-x: clip;
}

img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-head);
	margin: 0;
	font-weight: 600;
}
p {
	margin: 0;
}
button {
	font-family: inherit;
}

section[id] {
	scroll-margin-top: 96px;
}

.container {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
}

.footer .container {
	padding: 0 20px;
}

/* ---------- Typography ---------- */
.h-display {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 64px;
	line-height: 1.1;
	letter-spacing: -2.75px;
	color: var(--text);
	text-wrap: balance;
}

.h-section {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 48px;
	line-height: 1.1;
	letter-spacing: -2.25px;
	color: var(--text);
	text-align: center;
	text-wrap: balance;
}

.h-card {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--text);
}

.sub-text {
	font-size: 18px;
	line-height: 24px;
	color: var(--text-2);
	text-align: center;
	text-wrap: balance;
}

.body-text {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-2);
}
.muted-text {
	color: var(--text-3);
}
.text-orange {
	color: var(--orange);
}
.text-blue {
	color: var(--blue-2);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	padding: 14px 20px 14px 24px;
	border-radius: var(--r-btn);
	border: none;
	cursor: pointer;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
	will-change: transform;
}

.btn-primary {
	background: linear-gradient(
		180deg,
		rgb(43, 143, 255) 0%,
		rgb(8, 113, 224) 100%
	);
	color: #fff;
	box-shadow:
		0 2.5px 2.8px rgba(8, 113, 224, 0.03),
		0 3.6px 3.9px rgba(8, 113, 224, 0.06),
		0 6px 8px rgba(8, 113, 224, 0.08),
		0 8px 20px rgba(8, 113, 224, 0.16),
		0 4px 4px rgba(0, 0, 0, 0.25),
		0 4px 40px rgba(8, 113, 224, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
}

.btn-dark {
	background: linear-gradient(180deg, rgb(1, 7, 29) 0%, rgb(1, 7, 29) 100%);
	border: 1px solid var(--blue-border);
	color: var(--text);
}

.btn-dark:hover {
	transform: translateY(-2px);
	border-color: rgba(41, 137, 255, 0.45);
}

.btn-orange {
	background: linear-gradient(180deg, #ffa726 0%, var(--orange) 100%);
	color: #1a0e00;
	box-shadow:
		0 8px 20px rgba(253, 149, 0, 0.18),
		0 4px 40px rgba(253, 149, 0, 0.22);
}

.btn-orange:hover {
	transform: translateY(-2px);
}

.btn .arrow {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	transition: transform 0.3s ease;
}

.btn:hover .arrow {
	transform: translateX(3px);
}

.btn-block {
	width: 100%;
}

/* ---------- Pills / badges ---------- */
.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: var(--r-pill);
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	font-size: 14px;
	line-height: 1em;
	color: var(--text-2);
	white-space: nowrap;
}

.pill-orange {
	border-color: rgba(253, 149, 0, 0.35);
	box-shadow:
		inset 0 0 32px rgba(253, 149, 0, 0.12),
		inset 0 3px 12px rgba(255, 214, 150, 0.08);
}

.pill .pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 10px var(--orange);
}

.plan-badge {
	display: inline-block;
	padding: 7px 16px;
	border-radius: var(--r-pill);
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	box-shadow: inset 0 4px 12px rgba(6, 128, 250, 0.12);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-2);
}

.plan-badge.hot {
	background: linear-gradient(
		180deg,
		rgba(253, 149, 0, 0.18) 0%,
		rgba(253, 149, 0, 0.05) 100%
	);
	border-color: rgba(253, 149, 0, 0.45);
	color: var(--orange);
	box-shadow: inset 0 4px 12px rgba(253, 149, 0, 0.16);
}

/* ---------- Section scaffolding ---------- */
.section {
	border-top: 1px solid var(--blue-border);
	position: relative;
	padding: 120px 30px;
}

.section-surface {
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
}

.section-head {
	max-width: 1100px;
	margin: 0 auto 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.section-head .pill {
	margin-bottom: 8px;
}

#beneficios, #porque, #processo{
	border: 0px;
}

/* ---------- Reveal animation ---------- */
.reveal {
	opacity: 0.001;
	transform: translateY(24px);
	transition:
		opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

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

.reveal-up {
	transform: translateY(40px);
}
.reveal-down {
	transform: translateY(-24px);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	html {
		scroll-behavior: auto;
	}
	.cases-track {
		animation: none;
	}
	.cases-carousel {
		overflow-x: auto;
	}
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: var(--bg);
	border-bottom: 0.5px solid var(--blue-border);
	transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

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

.nav-logo img {
	height: 44px;
	width: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-links > li {
	position: relative;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	font-family: var(--font-menu);
	font-size: 16px;
	line-height: 18px;
	color: var(--text-2);
	transition: color 0.3s ease;
}

.nav-link > span {
	display: inline-block;
	position: relative;
	padding: 8px;
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-link > span::after {
	content: attr(data-text);
	position: absolute;
	top: 100%;
	left: 0;
	padding: 10px 12px;
	color: var(--text);
	white-space: nowrap;
}

.nav-link:hover > span {
	transform: translateY(-100%);
}

.nav-link.active > span {
	color: var(--text);
}
.nav-link.active > span::after {
	color: var(--orange);
}

.nav-cta {
	margin-left: 12px;
}
.nav-cta .btn {
	padding: 12px 18px 12px 22px;
	font-size: 15px;
}

/* Dropdown */
.nav-dropdown .dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	min-width: 240px;
	padding: 8px;
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.55),
		inset 0 0 24px rgba(116, 176, 253, 0.06);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0.25s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	font-family: var(--font-menu);
	font-size: 15px;
	line-height: 1.4;
	color: var(--text-2);
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.dropdown-menu a:hover {
	background: rgba(41, 137, 255, 0.12);
	color: var(--text);
}
.dropdown-menu a small {
	color: var(--orange);
	display: block;
	font-size: 12px;
}
.dropdown-menu hr {
	border: none;
	border-top: 1px solid var(--blue-border);
	margin: 6px 8px;
}

.dropdown-caret {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 2px;
	vertical-align: -1px;
	opacity: 0.6;
	transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-caret {
	transform: rotate(180deg);
}

/* Mobile menu */
.nav-burger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	border-radius: 10px;
	cursor: pointer;
}

.nav-burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	position: relative;
	transition: background 0.3s ease;
}

.nav-burger span::before,
.nav-burger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

.nav-burger span::before {
	top: -6px;
}
.nav-burger span::after {
	top: 6px;
}

.nav-burger.open span {
	background: transparent;
}
.nav-burger.open span::before {
	transform: rotate(45deg);
	top: 0;
}
.nav-burger.open span::after {
	transform: rotate(-45deg);
	top: 0;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 190;
	padding: 104px 24px 40px;
	background: rgba(1, 5, 19, 0.985);
	border-bottom: 1px solid var(--blue-border);
	transform: translateY(-110%);
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
	max-height: 100vh;
	overflow-y: auto;
}

.mobile-menu.open {
	transform: translateY(0);
}

.mobile-menu a.m-link {
	display: block;
	padding: 10px 4px;
	font-family: var(--font-menu);
	font-size: 18px;
	color: var(--text);
	border-bottom: 0.5px solid var(--blue-border);
}

.mobile-menu a.m-link small {
	color: var(--orange);
	font-size: 13px;
}

.mobile-menu .btn {
	margin-top: 20px;
	width: 100%;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
	position: relative;
	overflow: hidden;
	padding: 160px 30px 270px;
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	text-align: center;
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

.hero::before {
	content: "";
	position: absolute;
	top: -160px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 640px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(10, 99, 244, 0.34) 0%,
		rgba(10, 99, 244, 0) 70%
	);
	filter: blur(16px);
	pointer-events: none;
}

.hero-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		rgba(235, 243, 254, 0.09) 1px,
		transparent 1px
	);
	background-size: 24px 24px;
	-webkit-mask-image: radial-gradient(
		60% 55% at 50% 30%,
		#000 0%,
		transparent 100%
	);
	mask-image: radial-gradient(60% 55% at 50% 30%, #000 0%, transparent 100%);
	opacity: 0.5;
	pointer-events: none;
}

.hero-review {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px 12px 12px;
	border-radius: var(--r-pill);
	background: var(--bg-soft);
	border: 1px solid var(--blue-border);
	box-shadow: inset 0 4px 12px rgba(6, 128, 250, 0.12);
	font-size: 14px;
	color: var(--text-2);
}

.hero-review .avatars {
	display: flex;
	align-items: center;
}

.hero-review .avatars span {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid var(--bg-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	margin-left: -8px;
}

.hero-review .avatars span:first-child {
	margin-left: 0;
}

.hero-review .stars {
	display: inline-flex;
	gap: 1px;
	color: var(--orange);
}

.hero-review .stars svg {
	width: 14px;
	height: 14px;
}

.hero-review .divider {
	width: 1px;
	height: 22px;
	background: var(--blue-border);
}

.hero h1 {
	max-width: 900px;
}

.hero h1 .w {
	display: inline-block;
	opacity: 0.001;
	filter: blur(10px);
	transform: translateY(10px);
	transition:
		opacity 0.7s ease,
		filter 0.7s ease,
		transform 0.7s ease;
}

.hero h1 .w.in {
	opacity: 1;
	filter: none;
	transform: none;
}

.hero-sub {
	max-width: 760px;
}

.hero-cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.hero-trust {
	font-size: 14px;
	color: var(--text-3);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Logo ticker */
.logo-ticker {
	margin-top: 24px;
	width: 100%;
	max-width: 1100px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 12%,
		#000 88%,
		transparent 100%
	);
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 12%,
		#000 88%,
		transparent 100%
	);
}

.ticker-track {
	display: flex;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: ticker 30s linear infinite;
}

.ticker-track:hover {
	animation-play-state: paused;
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text-3);
	font-family: var(--font-menu);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.ticker-item img {
	height: 22px;
	width: auto;
	opacity: 0.7;
	filter: grayscale(1) brightness(1.4);
}
.ticker-item:hover {
	color: var(--text-2);
}

@keyframes ticker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 32px));
	}
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.benefit-card {
	position: relative;
	overflow: hidden;
	padding: 40px 32px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	transition:
		transform 0.4s ease,
		border-color 0.4s ease,
		box-shadow 0.4s ease;
}

.benefit-card:hover {
	transform: translateY(-6px);
	border-color: rgba(41, 137, 255, 0.45);
}

.benefit-card .dots {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
		rgba(235, 243, 254, 0.14) 1px,
		transparent 1px
	);
	background-size: 18px 18px;
	opacity: 0.11;
	pointer-events: none;
}

.benefit-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	background: linear-gradient(
		180deg,
		rgba(43, 143, 255, 0.2) 0%,
		rgba(8, 113, 224, 0.12) 100%
	);
	border: 1px solid var(--blue-border);
}

.benefit-icon svg {
	width: 26px;
	height: 26px;
	color: var(--blue-2);
}
.benefit-icon.orange {
	background: linear-gradient(
		180deg,
		rgba(253, 149, 0, 0.2) 0%,
		rgba(253, 149, 0, 0.08) 100%
	);
	border-color: rgba(253, 149, 0, 0.35);
}
.benefit-icon.orange svg {
	color: var(--orange);
}

.benefit-card h3 {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1.15;
	margin-bottom: 12px;
}
.benefit-card p {
	color: var(--text-3);
	font-size: 16px;
	line-height: 1.5;
}

/* ==========================================================================
   WHY US (accordion)
   ========================================================================== */
.why-layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: start;
}

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

.acc-item {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	margin-bottom: 16px;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.acc-item.open {
	border-color: rgba(41, 137, 255, 0.45);
}

.acc-head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--text);
}

.acc-num {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 500;
	color: var(--text-3);
	letter-spacing: 0.02em;
	min-width: 26px;
}

.acc-item.open .acc-num {
	color: var(--blue-2);
}

.acc-title {
	flex: 1;
}

.acc-chev {
	width: 18px;
	height: 18px;
	color: var(--text-3);
	transition:
		transform 0.3s ease,
		color 0.3s ease;
}

.acc-item.open .acc-chev {
	transform: rotate(180deg);
	color: var(--orange);
}

.acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.acc-body-inner {
	padding: 0 24px 24px 68px;
	color: var(--text-3);
	font-size: 15px;
	line-height: 1.6;
}

.why-visual {
	position: sticky;
	top: 120px;
}

.why-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
	overflow: hidden;
}

.why-card .why-card-top {
	padding: 32px 32px 24px;
	border-bottom: 1px solid var(--blue-border);
}

.why-card .why-card-top .plan-badge {
	margin-bottom: 18px;
}

.why-card .why-card-top h3 {
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -1px;
}

.why-card .why-card-body {
	padding: 24px 32px 32px;
}

.why-stat {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(235, 243, 254, 0.08);
}

.why-stat:last-child {
	border-bottom: none;
}

.why-stat b {
	font-family: var(--font-head);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.5px;
	color: var(--text);
	min-width: 52px;
}

.why-stat span {
	color: var(--text-3);
	font-size: 15px;
	line-height: 1.45;
}

.why-stat b.blue {
	color: var(--blue-2);
}
.why-stat b.orange {
	color: var(--orange);
}

#desenvolvimento, #contact, #sobre-servicos{
	border-top: 1px solid var(--blue-border);
}

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

/* ==========================================================================
   SERVICES (sticky stack)
   ========================================================================== */
.services-ticker {
	width: 100%;
	overflow: hidden;
	padding: 14px 0;
	margin: 0 0 48px;
	border-top: 1px solid var(--blue-border);
	border-bottom: 1px solid var(--blue-border);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.services-ticker:hover .ticker-track { animation-play-state: paused; }

.services-ticker .ticker-track { animation: ticker 45s linear infinite; }

.services-ticker .ticker-item {
	text-transform: none;
	font-weight: 500;
	font-size: 16px;
	color: var(--text-2);
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.services-ticker .ticker-item::after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	margin-left: 40px;
	display: inline-block;
}
.services-stack {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.service-card {
	position: sticky;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 40px;
	align-items: center;
	padding: 32px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	transition:
		transform 0.4s ease,
		border-color 0.4s ease;
}

.service-card:hover {
	border-color: rgba(41, 137, 255, 0.45);
}

.service-card.sticky-0 {
	top: 96px;
}
.service-card.sticky-1 {
	top: 148px;
}
.service-card.sticky-2 {
	top: 200px;
}
.service-card.sticky-3 {
	top: 252px;
}
.service-card.sticky-4 {
	top: 304px;
}

.service-media {
	border-radius: var(--r-card-sm);
	overflow: hidden;
	position: relative;
	/* aspect-ratio: 4 / 3; */
	background: linear-gradient(180deg, #011131 0%, #010513 100%);
}

.service-media img {
	/* width: 100%;
	height: 100%; */
	max-width: 100%;
	/* object-fit: cover;
	opacity: 0.9; */
	margin: auto;
	transition:
		transform 0.6s ease,
		opacity 0.4s ease;
}

.service-card:hover .service-media img {
	transform: scale(1.04);
	opacity: 1;
}

.service-num {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-3);
	margin-bottom: 18px;
}

.service-num::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--blue-border);
}

.service-card h3 {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -1.5px;
	line-height: 1.1;
	margin-bottom: 14px;
}

.service-card p {
	color: var(--text-3);
	line-height: 1.6;
	margin-bottom: 22px;
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 26px;
}

.service-tags .tag {
	font-size: 13px;
	padding: 6px 12px;
	border-radius: var(--r-pill);
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	color: var(--text-2);
}

/* ==========================================================================
   WORK PROCESS
   ========================================================================== */
.process-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 48px;
}

.process-tab {
	min-width: 270px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: var(--r-pill);
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	box-shadow: inset 0 0 24px rgba(116, 176, 253, 0.08);
	color: var(--text-2);
	font-size: 14px;
	font-family: var(--font-head);
	font-weight: 500;
	cursor: pointer;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease;
}

.process-tab .tab-num {
	color: var(--text-3);
}

.process-tab.active {
	background: linear-gradient(
		180deg,
		rgba(43, 143, 255, 0.25) 0%,
		rgba(8, 113, 224, 0.16) 100%
	);
	border-color: rgba(41, 137, 255, 0.5);
	color: var(--text);
}

.process-tab.active .tab-num {
	color: var(--blue-2);
}

.process-panel {
	display: none;
	padding: 48px 56px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	text-align: center;
	/* max-width: 860px; */
	margin: 0 auto;
}

.process-panel.active {
	display: block;
	animation: panelIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes panelIn {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.process-panel h3 {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -1.5px;
	margin-bottom: 14px;
}
.process-panel p {
	max-width: 520px;
	margin: 0 auto;
	color: var(--text-3);
	line-height: 1.6;
}
.process-panel .process-icon {
	margin-bottom: 24px;
}

/* ==========================================================================
   WHY CHOOSE (comparison)
   ========================================================================== */
.compare-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.compare-card {
	padding: 44px 40px;
	border-radius: var(--r-card);
	border: 1px solid var(--blue-border);
	background: linear-gradient(
		180deg,
		rgba(1, 5, 19, 0.4) 0%,
		rgba(1, 8, 33, 0.4) 100%
	);
	box-shadow:
		inset 0 0 32px rgba(116, 176, 253, 0.12),
		inset 0 3px 12px rgba(212, 232, 255, 0.06),
		inset 0 0.5px 0.5px rgba(212, 232, 255, 0.1);
}

.compare-card h3 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -1px;
	margin-bottom: 8px;
}
.compare-card > p {
	color: var(--text-3);
	margin-bottom: 28px;
}

.compare-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 11px 0;
	color: var(--text-2);
	font-size: 15px;
	line-height: 1.5;
}

.compare-list li svg {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin-top: 1px;
}
.compare-list li .check {
	color: var(--blue-2);
}
.compare-list li .cross {
	color: var(--red);
}

.compare-card.bad {
	background: linear-gradient(#060303 0%, #010513 100%);
	border-color: rgba(229, 46, 46, 0.24);
	box-shadow:
		inset 0 0 32px rgba(229, 46, 46, 0.12),
		inset 0 3px 12px rgba(229, 46, 46, 0.08),
		inset 0 0.5px 0.5px rgba(229, 46, 46, 0.12);
}

.compare-card.bad h3 {
	color: var(--text-3);
}

/* ==========================================================================
   PLANS
   ========================================================================== */
.plans-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: stretch;
}

.plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 36px 24px 26px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background: linear-gradient(
		180deg,
		rgba(1, 5, 19, 0.4) 0%,
		rgba(1, 8, 33, 0.4) 100%
	);
	transition:
		transform 0.4s ease,
		border-color 0.4s ease,
		box-shadow 0.4s ease;
}

.plan-card:hover {
	/* transform: translateY(-6px); */
	border-color: rgba(41, 137, 255, 0.45);
}

.plan-card .plan-badge {
	margin-bottom: 20px;
	align-self: flex-start;
}

.plan-name {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.5px;
	margin-bottom: 4px;
}

.plan-delivery {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-3);
	margin-bottom: 20px;
}

.plan-delivery svg {
	width: 14px;
	height: 14px;
	color: var(--orange);
}

.plan-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 4px;
}

.plan-price .currency {
	font-family: var(--font-head);
	font-size: 20px;
	color: var(--text-2);
}
.plan-price .value {
	font-family: var(--font-head);
	font-size: 38px;
	font-weight: 500;
	letter-spacing: -1.5px;
	color: var(--text);
	line-height: 1;
}
.plan-price .value .dim {
	font-size: 26px;
	color: var(--text-3);
}

.plan-payment {
	font-size: 13px;
	color: var(--text-3);
	margin-bottom: 22px;
}

.plan-features {
	margin-bottom: 26px;
	flex: 1;
	max-height: 460px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 8px;
	scrollbar-width: thin;
	scrollbar-color: rgba(41, 137, 255, 0.35) transparent;
	transition: box-shadow 0.3s ease, scrollbar-color 0.3s ease;
}

.plan-features::-webkit-scrollbar {
	width: 6px;
}

.plan-features::-webkit-scrollbar-track {
	background: transparent;
}

.plan-features::-webkit-scrollbar-thumb {
	background: rgba(41, 137, 255, 0.35);
	border-radius: 8px;
}

.plan-features:hover {
	box-shadow: inset 0 0 24px rgba(8, 113, 224, 0.1);
	scrollbar-color: rgba(41, 137, 255, 0.7) transparent;
}

.plan-features:hover::-webkit-scrollbar-thumb {
	background: rgba(41, 137, 255, 0.7);
}

.plan-features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 6px 0 6px 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--text-2);
	border-radius: 8px;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.plan-features:hover li {
	padding-left: 6px;
}

.plan-features li:hover {
	transform: translateX(4px);
	background-color: rgba(41, 137, 255, 0.08);
	color: var(--text);
	padding-left: 10px;
}

.plan-features li svg {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	margin-top: 1px;
	color: var(--blue-2);
	transition: color 0.25s ease, transform 0.25s ease;
}

.plan-features li:hover svg {
	color: var(--orange);
	transform: scale(1.12);
}

.plan-features li strong {
	color: var(--text);
	font-weight: 500;
}

.plan-note {
	margin-top: 14px;
	text-align: center;
	font-size: 12px;
	color: var(--text-3);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.plan-note svg {
	width: 13px;
	height: 13px;
	color: var(--orange);
}

/* Featured plan */
.plan-card.featured {
	border-color: rgba(8, 113, 224, 0.7);
	background: linear-gradient(
		180deg,
		rgba(8, 113, 224, 0.14) 0%,
		rgba(1, 8, 33, 0.5) 60%
	);
	box-shadow:
		inset 0 0 40px rgba(8, 113, 224, 0.18),
		0 20px 60px rgba(8, 113, 224, 0.22),
		inset 0 3px 12px rgba(212, 232, 255, 0.08);
	transform: translateY(-10px);
}

.plan-card.featured:hover {
	transform: translateY(-6px);
}

.plan-card.featured .plan-price .value {
	color: var(--blue-2);
}

/* ==========================================================================
   CASES
   ========================================================================== */
.cases-carousel {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	padding: 12px 0 16px;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 7%,
		#000 93%,
		transparent 100%
	);
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 7%,
		#000 93%,
		transparent 100%
	);
}

.cases-carousel:hover .cases-track,
.cases-carousel:focus-within .cases-track {
	animation-play-state: paused;
}

.cases-track {
	display: flex;
	align-items: stretch;
	gap: 24px;
	width: max-content;
	animation: casesMarquee 70s linear infinite;
}

.case-card {
	width: 380px;
	flex: 0 0 380px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	overflow: hidden;
	transition:
		transform 0.4s ease,
		border-color 0.4s ease;
}

.case-card:hover {
	transform: translateY(-6px);
	border-color: rgba(41, 137, 255, 0.45);
}

@keyframes casesMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 12px));
	}
}

.case-body {
	padding: 32px 28px 28px;
}

.case-tag {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 10px;
}

.case-body h3 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.5px;
	margin-bottom: 8px;
}
.case-body p {
	color: var(--text-3);
	font-size: 14px;
	line-height: 1.55;
}

.case-links {
	display: flex;
	gap: 16px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 0.5px solid var(--blue-border);
}

.case-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-2);
	transition: color 0.2s ease;
}

.case-links a:hover {
	color: var(--blue-2);
}
.case-links a svg {
	width: 14px;
	height: 14px;
}

/* ==========================================================================
   RESULTS / STATS
   ========================================================================== */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stat-card {
	text-align: center;
	padding: 44px 24px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
}

.stat-card b {
	display: block;
	font-family: var(--font-head);
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: -2px;
	line-height: 1;
	margin-bottom: 10px;
	color: var(--text);
}

.stat-card b.blue {
	color: var(--blue-2);
}
.stat-card b.orange {
	color: var(--orange);
}

.stat-card span {
	color: var(--text-3);
	font-size: 15px;
}

/* ---- Stats marquee (home "Números que comprovam") ---- */
.stats-marquee {
	width: 100%;
	overflow: hidden;
	padding: 8px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.stats-marquee:hover .ticker-track { animation-play-state: paused; }

.stats-marquee .ticker-track {
	display: flex;
	align-items: stretch;
	gap: 20px;
	width: max-content;
	animation: statsMarquee 40s linear infinite;
}

.stats-marquee .stat-card {
	width: 340px;
	flex: 0 0 340px;
	height: auto;
}

@keyframes statsMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-50% - 10px)); }
}

/* ---- Mobile carousels (1 slide + dots) ---- */
@media (max-width: 809px) {
	[data-carousel].mc-active {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		display: flex;
		flex-direction: row;
		gap: 0;
		width: auto;
		animation: none;
	}
	[data-carousel].mc-active::-webkit-scrollbar { display: none; }
	[data-carousel].mc-active > * {
		flex: 0 0 100%;
		scroll-snap-align: start;
		min-width: 0;
	}
	[data-carousel].mc-active > *[data-clone] { display: none; }
	.cases-carousel:has(.mc-active) {
		-webkit-mask-image: none;
		mask-image: none;
		overflow: visible;
	}
}

.mc-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
}

.mc-dot {
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 1px solid var(--blue-border);
	background: rgba(235, 243, 254, 0.15);
	padding: 0;
	cursor: pointer;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.mc-dot.active {
	background: var(--orange);
	border-color: var(--orange);
	transform: scale(1.25);
}

@media (min-width: 810px) {
	.mc-dots { display: none; }
}

/* ---- Mobile submenu (menu) ---- */
.m-sub-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 14px 4px;
	background: none;
	border: none;
	border-bottom: 0.5px solid var(--blue-border);
	color: var(--text);
	font-family: var(--font-menu);
	font-size: 18px;
	text-align: left;
	cursor: pointer;
}

.m-sub-toggle .caret {
	transition: transform 0.3s ease;
	opacity: 0.6;
	height: 16px;
}

.m-sub.open .m-sub-toggle .caret { transform: rotate(180deg); }

.m-submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	padding-left: 12px;
}

.m-sub.open .m-submenu { max-height: 420px; }

.m-submenu .m-link {
	border-bottom: 0.5px solid var(--blue-border);
	font-size: 16px;
	color: var(--text-2);
}

.m-submenu .m-link small { color: var(--orange); font-size: 13px; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.post-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	overflow: hidden;
	transition:
		transform 0.4s ease,
		border-color 0.4s ease;
}

.post-card:hover {
	transform: translateY(-6px);
	border-color: rgba(41, 137, 255, 0.45);
}

.post-card > a {
	display: block;
	height: 100%;
}

.post-media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(180deg, #011131 0%, #010513 100%);
}

.post-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.post-card:hover .post-media img {
	transform: scale(1.05);
}

.post-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 22px 24px;
}

.post-cat {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--orange);
}

.post-title {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.4px;
	line-height: 1.25;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-summary {
	font-size: 14px;
	color: var(--text-3);
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 4px;
	padding-top: 12px;
	border-top: 0.5px solid var(--blue-border);
	font-size: 12.5px;
	color: var(--text-3);
}

.post-meta .date {
	color: var(--orange);
	white-space: nowrap;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap {
	max-width: 960px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 24px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
	margin-top: 1rem;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.faq-item.open {
	border-color: rgba(41, 137, 255, 0.45);
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

.faq-icon {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	border: 1px solid var(--blue-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-3);
	transition:
		transform 0.3s ease,
		color 0.3s ease,
		background 0.3s ease;
}

.faq-icon svg {
	width: 13px;
	height: 13px;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
	color: var(--orange);
	border-color: rgba(253, 149, 0, 0.4);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-a-inner {
	padding: 0 24px 22px;
	color: var(--text-3);
	font-size: 15px;
	line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-card {
	/* max-width: 996px; */
	margin: 0 auto;
	padding: 80px 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
	border: 1px dashed rgba(41, 137, 255, 0.45);
	border-radius: var(--r-card);
	background:
		radial-gradient(
			60% 100% at 50% 0%,
			rgba(8, 113, 224, 0.16) 0%,
			rgba(8, 113, 224, 0) 70%
		),
		linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 48px rgba(116, 176, 253, 0.1),
		inset 0 3px 12px rgba(212, 232, 255, 0.06);
}

.cta-card .h-section {
	/* max-width: 560px; */
}
.cta-card p {
	max-width: 680px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.newsletter-band {
	border-bottom: 1px solid var(--blue-border);
	padding: 120px 0;
}

.newsletter-card {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 40px;
	align-items: center;
	padding: 40px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background:
		radial-gradient(
			60% 130% at 0% 0%,
			rgba(8, 113, 224, 0.14) 0%,
			rgba(8, 113, 224, 0) 60%
		),
		linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 40px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
}

.newsletter-info h3 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.8px;
	margin-bottom: 10px;
}

.newsletter-info p {
	color: var(--text-3);
	line-height: 1.6;
}

.newsletter-form {
	display: flex;
	gap: 14px;
	align-items: flex-end;
	flex-wrap: wrap;
}

.newsletter-form .field {
	flex: 1;
	min-width: 160px;
	margin-bottom: 0;
}
.newsletter-form .btn {
	white-space: nowrap;
}

.newsletter-msg {
	margin-top: 16px;
}

.footer {
	/* margin-top: 120px; */
	border-top: 1px solid var(--blue-border);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
}

.footer-main {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
	gap: 3rem;
	padding: 100px 0;
}

.footer-brand p {
	color: var(--text-3);
	font-size: 15px;
	line-height: 1.65;
	margin-top: 18px;
	max-width: 300px;
}

.footer-brand img {
	height: 40px;
	width: auto;
}

.footer-col h4 {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.3px;
	margin-bottom: 20px;
	color: var(--text);
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul a {
	position: relative;
	font-family: var(--font-menu);
	font-size: 15px;
	line-height: 22px;
	color: var(--text-3);
	transition: color 0.25s ease;
}

.footer-col ul a:hover {
	color: var(--text);
}
.footer-col ul a small {
	color: var(--orange);
}

.footer-contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--text-3);
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 12px;
}

.footer-contact svg {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	margin-top: 3px;
	color: var(--blue-2);
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--blue-border);
	color: var(--text-3);
	transition:
		background 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

.footer-social a:hover {
	background: rgba(8, 113, 224, 0.2);
	color: var(--text);
	transform: translateY(-3px);
}
.footer-social a svg {
	width: 17px;
	height: 17px;
}

.footer-bottom {
	border-top: 1px solid rgba(235, 243, 254, 0.1);
	padding: 2.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-bottom p {
	color: var(--text-3);
	font-size: 13.5px;
}
.footer-bottom a {
	color: var(--text-3);
	transition: color 0.25s ease;
}
.footer-bottom a:hover {
	color: var(--text);
}

.footer-legal {
	display: flex;
	gap: 20px;
}

/* Floating WhatsApp */
.fab-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 180;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(180deg, #25d366 0%, #1eb85a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
	transition: transform 0.3s ease;
}

.fab-whatsapp:hover {
	transform: scale(1.08);
}
.fab-whatsapp svg {
	width: 28px;
	height: 28px;
	color: #fff;
}

/* Back to top */
.fab-top {
	position: fixed;
	right: 32px;
	bottom: 96px;
	z-index: 180;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	color: var(--text-2);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.fab-top.visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.fab-top:hover {
	color: var(--text);
	border-color: rgba(41, 137, 255, 0.45);
}
.fab-top svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   CONTENT PAGES (inner pages)
   ========================================================================== */
.page-head {
	position: relative;
	overflow: hidden;
	padding: 180px 30px 96px;
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	text-align: center;
}

.page-head::before {
	content: "";
	position: absolute;
	top: -160px;
	left: 50%;
	transform: translateX(-50%);
	width: 820px;
	height: 560px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(10, 99, 244, 0.28) 0%,
		rgba(10, 99, 244, 0) 70%
	);
	filter: blur(16px);
	pointer-events: none;
}

.page-head .page-head-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		rgba(235, 243, 254, 0.09) 1px,
		transparent 1px
	);
	background-size: 24px 24px;
	-webkit-mask-image: radial-gradient(
		60% 60% at 50% 35%,
		#000 0%,
		transparent 100%
	);
	mask-image: radial-gradient(60% 60% at 50% 35%, #000 0%, transparent 100%);
	opacity: 0.5;
	pointer-events: none;
}

.page-head-inner {
	position: relative;
	z-index: 2;
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.page-head h1 {
	font-size: 48px;
	font-weight: 600;
	letter-spacing: -2px;
	line-height: 1.1;
}
.page-head p {
	color: var(--text-2);
	font-size: 17px;
	line-height: 26px;
	max-width: 640px;
	text-wrap: balance;
}

.page-section {
	padding: 96px 20px;
}

.page-title {
	text-align: center;
	max-width: 1080px;
	margin: 0 auto 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.page-title h2 {
	font-size: 38px;
	font-weight: 600;
	letter-spacing: -1.6px;
	line-height: 1.12;
}
.page-title p {
	color: var(--text-2);
	font-size: 16px;
	line-height: 24px;
	text-wrap: balance;
}

.page-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	padding: 60px 30px;
}

.page-card h3 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.6px;
	margin-bottom: 12px;
}
.page-card p {
	color: var(--text-3);
	line-height: 1.65;
	margin-bottom: 12px;
}
.page-card p:last-child {
	margin-bottom: 0;
}

/* ---- Cards grid (generic) ---- */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.cards-grid.two {
	grid-template-columns: repeat(2, 1fr);
}
.cards-grid.four {
	grid-template-columns: repeat(4, 1fr);
}

/* ---- Forms ---- */
.form-card {
	max-width: 780px;
	margin: 0 auto;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 18px;
}
.field label {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-2);
}
.field label .req {
	color: var(--orange);
}
.field input,
.field select,
.field textarea {
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	border-radius: 10px;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	padding: 12px 14px;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: rgba(8, 113, 224, 0.6);
	box-shadow: 0 0 0 3px rgba(8, 113, 224, 0.15);
}
.field input::placeholder,
.field textarea::placeholder {
	color: var(--text-3);
}
.field textarea {
	min-height: 140px;
	resize: vertical;
}
.field select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--text-3) 50%),
		linear-gradient(135deg, var(--text-3) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 55%,
		calc(100% - 13px) 55%;
	background-size: 5px 5px;
	background-repeat: no-repeat;
	padding-right: 34px;
	cursor: pointer;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.form-msg {
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.5;
}
.form-msg.ok {
	background: rgba(46, 204, 113, 0.1);
	border: 1px solid rgba(46, 204, 113, 0.35);
	color: #7be3a8;
}
.form-msg.err {
	background: rgba(229, 46, 46, 0.1);
	border: 1px solid rgba(229, 46, 46, 0.35);
	color: #f08a8a;
}

/* ---- Info cards (contact) ---- */
.info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.info-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	padding: 28px;
}
.info-card .ico {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		180deg,
		rgba(43, 143, 255, 0.2) 0%,
		rgba(8, 113, 224, 0.12) 100%
	);
	border: 1px solid var(--blue-border);
	color: var(--blue-2);
	margin-bottom: 18px;
}
.info-card .ico svg {
	width: 22px;
	height: 22px;
}
.info-card h3 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.3px;
	margin-bottom: 10px;
}
.info-card p,
.info-card a {
	color: var(--text-3);
	font-size: 15px;
	line-height: 1.6;
}
.info-card a:hover {
	color: var(--text);
}

/* ---- Partners (infinite carousel) ---- */
.partner-carousel {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	padding: 12px 0 16px;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.partner-carousel:hover .partner-track,
.partner-carousel:focus-within .partner-track { animation-play-state: paused; }

.partner-track {
	display: flex;
	align-items: stretch;
	gap: 16px;
	width: max-content;
	animation: partnersMarquee 45s linear infinite;
}

.partner-card {
	width: 220px;
	flex: 0 0 220px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	/* background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%); */
	background-color: #fafafa;
	box-shadow: inset 0 0 24px var(--glow-a);
	padding: 28px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-align: center;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
}

.partner-card:hover {
	transform: translateY(-4px);
	border-color: rgba(41, 137, 255, 0.45);
}

.partner-card img {
	max-height: 44px;
	max-width: 70%;
	object-fit: contain;
	/* filter: grayscale(1) brightness(1.5); */
}

.partner-card span {
	color: var(--text-3);
	font-size: 13px;
}

@keyframes partnersMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-50% - 8px)); }
}

/* ---- Theme grids (tray / loja-integrada) ---- */
.filter-bar {
	display: flex;
	gap: 12px;
	max-width: 560px;
	margin: 0 auto 40px;
}
.filter-bar input,
.filter-bar select {
	flex: 1;
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	border-radius: 10px;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	padding: 12px 14px;
}
.filter-bar input:focus,
.filter-bar select:focus {
	outline: none;
	border-color: rgba(8, 113, 224, 0.6);
}
.filter-bar select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--text-3) 50%),
		linear-gradient(135deg, var(--text-3) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 55%,
		calc(100% - 13px) 55%;
	background-size: 5px 5px;
	background-repeat: no-repeat;
	padding-right: 34px;
	cursor: pointer;
}

.theme-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.theme-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
}
.theme-card:hover {
	transform: translateY(-5px);
	border-color: rgba(41, 137, 255, 0.45);
}
.theme-media {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: linear-gradient(180deg, #011131 0%, #010513 100%);
}
.theme-media img {
	/* max-width: 82%;
	max-height: 78%;
	object-fit: contain; */
	max-width: 100%;
	border-radius: .5rem;
}
.theme-card h3 {
	padding: 18px 20px 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.3px;
	line-height: 1.3;
	flex: 1;
	text-align: center;
}
.theme-card .theme-cta {
	padding: 16px 20px 20px;
}

/* ---- Locaweb service rows ---- */
.service-row {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow: inset 0 0 24px var(--glow-a);
	padding: 24px;
	margin-bottom: 14px;
}
.service-row .sr-ico {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		180deg,
		rgba(43, 143, 255, 0.2) 0%,
		rgba(8, 113, 224, 0.12) 100%
	);
	border: 1px solid var(--blue-border);
	color: var(--blue-2);
}
.service-row .sr-ico svg {
	width: 24px;
	height: 24px;
}
.service-row h3 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.3px;
	margin-bottom: 6px;
}
.service-row p {
	color: var(--text-3);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 12px;
}
.service-row .btn {
	align-self: flex-start;
}

/* ---- Checklists (pocket) ---- */
.check-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 11px 0;
	color: var(--text-2);
	font-size: 15px;
	line-height: 1.5;
	border-bottom: 0.5px solid rgba(235, 243, 254, 0.07);
}
.check-list li svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin-top: 2px;
	color: var(--blue-2);
}

/* ---- Example sites & price boxes (pocket) ---- */
.example-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.example-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	overflow: hidden;
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
}
.example-card:hover {
	transform: translateY(-5px);
	border-color: rgba(41, 137, 255, 0.45);
}
.example-card .example-media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(180deg, #011131 0%, #010513 100%);
}
.example-card .example-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.example-card span {
	display: block;
	padding: 16px 20px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
}

.price-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 720px;
	margin: 0 auto;
}
.price-box {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background: linear-gradient(
		180deg,
		rgba(1, 5, 19, 0.4) 0%,
		rgba(1, 8, 33, 0.4) 100%
	);
	box-shadow: inset 0 0 32px var(--glow-a);
	padding: 36px 28px;
	text-align: center;
}
.price-box b {
	display: block;
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -1.5px;
	margin-bottom: 6px;
	color: var(--text);
}
.price-box b.blue {
	color: var(--blue-2);
}
.price-box b.orange {
	color: var(--orange);
}
.price-box span {
	color: var(--text-3);
	font-size: 14px;
	line-height: 1.6;
}

/* ---- Embedded media (video / map) ---- */
.embed-wrap {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-card);
	border: 1px solid var(--blue-border);
}
.embed-wrap iframe {
	display: block;
	width: 100%;
	border: 0;
}

/* ---- Black Friday timer ---- */
.bf-timer-item {
	min-width: 96px;
	padding: 18px 16px;
	border: 1px solid var(--blue-border);
	border-radius: 14px;
	background: var(--bg-pill);
	box-shadow: inset 0 0 24px var(--glow-a);
	text-align: center;
}
.bf-timer-item strong {
	display: block;
	font-family: var(--font-head);
	font-size: 34px;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1;
	color: var(--orange);
}
.bf-timer-item span {
	color: var(--text-3);
	font-size: 13px;
}

/* ---- Cases page grid ---- */
.cases-page-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* ---- Steps (SM Club method) ---- */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.step-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow: inset 0 0 24px var(--glow-a);
	padding: 24px 20px;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-card:hover {
	transform: translateY(-4px);
	border-color: rgba(41, 137, 255, 0.45);
}
.step-card .step-num {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
	color: var(--orange);
	letter-spacing: 0.08em;
	display: block;
	margin-bottom: 12px;
}
.step-card h3 {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.3px;
	margin-bottom: 8px;
}
.step-card p {
	color: var(--text-3);
	font-size: 13.5px;
	line-height: 1.55;
}

/* ---- Niches tags (marquee, same layout as services-ticker) ---- */
.niche-tags {
	width: 100%;
	overflow: hidden;
	padding: 14px 0;
	border-top: 1px solid var(--blue-border);
	border-bottom: 1px solid var(--blue-border);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.niche-tags:hover .ticker-track { animation-play-state: paused; }

.niche-tags .ticker-track {
	display: inline-flex;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: ticker 45s linear infinite;
}

.niche-tags .tag {
	display: inline-flex;
	align-items: center;
	text-transform: none;
	font-weight: 500;
	font-size: 16px;
	color: var(--text-2);
	background: none;
	border: none;
	padding: 0;
	border-radius: 0;
	white-space: nowrap;
}

.niche-tags .tag::after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	margin-left: 40px;
	display: inline-block;
}

/* ---- Packages page grid ---- */
.package-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}
.case-page-card {
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
}
.case-page-card:hover {
	transform: translateY(-5px);
	border-color: rgba(41, 137, 255, 0.45);
}
.case-page-media {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px;
	/* background: linear-gradient(180deg, #011131 0%, #010513 100%); */
	background-color: #fafafa;
}
.case-page-media img {
	max-height: 50%;
	max-width: 50%;
	object-fit: contain;
}
.case-page-body {
	padding: 22px 24px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.case-page-body .case-tag {
	margin-bottom: 10px;
}
.case-page-body h3 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.5px;
	margin-bottom: 8px;
}
.case-page-body p {
	color: var(--text-3);
	font-size: 14px;
	line-height: 1.55;
	flex: 1;
}
.case-page-links {
	display: flex;
	gap: 16px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 0.5px solid var(--blue-border);
}
.case-page-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-2);
	transition: color 0.2s ease;
}
.case-page-links a:hover {
	color: var(--blue-2);
}
.case-page-links a svg {
	width: 14px;
	height: 14px;
}

/* ---- Legal ---- */
.legal {
	max-width: 860px;
	margin: 0 auto;
	color: var(--text-2);
}
.legal h2 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.5px;
	margin: 40px 0 16px;
	color: var(--text);
}
.legal h3 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.3px;
	margin: 32px 0 12px;
	color: var(--text);
}
.legal p {
	margin-bottom: 16px;
	line-height: 1.7;
}
.legal ul,
.legal ol {
	margin: 0 0 18px 22px;
}
.legal li {
	margin-bottom: 8px;
	line-height: 1.65;
}
.legal a {
	color: var(--blue-2);
	text-decoration: underline;
}
.legal strong {
	color: var(--text);
}

@media (max-width: 1023px) {
	.cards-grid,
	.cards-grid.four {
		grid-template-columns: repeat(2, 1fr);
	}
	.cards-grid.two {
		grid-template-columns: 1fr;
	}
	.info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.partner-card {
		width: 180px;
		flex-basis: 180px;
	}
	.theme-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.example-grid {
		grid-template-columns: 1fr;
	}
	.cases-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.package-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 809px) {
	.page-head {
		padding: 140px 20px 70px;
	}
	.page-head h1 {
		font-size: 32px;
		letter-spacing: -1.2px;
	}
	.page-section {
		padding: 72px 20px;
	}
	.page-title {
		margin-bottom: 40px;
	}
	.page-title h2 {
		font-size: 28px;
		letter-spacing: -1px;
	}
	.cards-grid,
	.cards-grid.four,
	.cards-grid.two {
		grid-template-columns: 1fr;
	}
	.cases-page-grid {
		grid-template-columns: 1fr;
	}
	.steps-grid {
		grid-template-columns: 1fr;
	}
	.info-grid {
		grid-template-columns: 1fr;
	}
	.partner-card {
		width: 160px;
		flex-basis: 160px;
	}
	.theme-grid {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.price-grid {
		grid-template-columns: 1fr;
	}
	.filter-bar {
		flex-direction: column;
	}
	.service-row {
		flex-direction: column;
	}
}
@media (max-width: 1199px) {
	.h-display {
		font-size: 54px;
		letter-spacing: -2.75px;
	}
	.h-section {
		font-size: 46px;
		letter-spacing: -2.25px;
	}
	.plans-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.plan-card.featured {
		transform: none;
	}
	.plan-card.featured:hover {
		transform: translateY(-6px);
	}
}

@media (max-width: 1023px) and (min-width: 810px) {
	.h-display {
		font-size: 46px;
		letter-spacing: -2px;
	}
}

@media (max-width: 1023px) {
	.nav-links {
		display: none;
	}
	.nav-cta {
		display: none;
	}
	.nav-burger {
		display: inline-flex;
	}
	.why-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.why-visual {
		position: static;
	}
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.service-card {
		grid-template-columns: 1fr;
	}
	.service-card.sticky-0,
	.service-card.sticky-1,
	.service-card.sticky-2,
	.service-card.sticky-3,
	.service-card.sticky-4 {
		position: relative;
		top: auto;
	}
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 809px) {
	.h-display {
		font-size: 38px;
		letter-spacing: -1.5px;
	}
	.h-section {
		font-size: 28px;
		letter-spacing: -1px;
	}
	.section {
		padding: 80px 20px;
	}
	.container {
		padding: 0 20px;
	}
	.plans-grid {
		grid-template-columns: 1fr;
	}
	.hero {
		padding: 140px 20px 120px;
	}
	.hero h1 {
		font-size: 28px;
		letter-spacing: -1px;
	}
	.hero-inner {
		gap: 32px;
	}
	.hero-review {
		flex-wrap: wrap;
		justify-content: center;
	}
	.benefits-grid {
		grid-template-columns: 1fr;
	}
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.case-card {
		width: 300px;
		flex-basis: 300px;
	}
	.newsletter-card {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 32px 24px;
	}
	.newsletter-form {
		flex-direction: column;
		align-items: stretch;
	}
	.newsletter-form .btn {
		width: 100%;
	}
	.compare-grid {
		grid-template-columns: 1fr;
	}
	.compare-card {
		padding: 32px 26px;
	}
	.process-panel {
		padding: 32px 24px;
	}
	.service-card {
		padding: 24px;
	}
	.service-card h3 {
		font-size: 24px;
	}
	.cta-card {
		padding: 48px 24px;
	}
	.footer-main {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	.plan-card.featured {
		transform: none;
	}
	.plan-card.featured:hover {
		transform: translateY(-6px);
	}
}

@media (max-width: 479px) {
	.section,
	.page-section {
		padding: 72px 0px;
	}
	.cases-carousel{
		padding: 0 20px;
	}
	[data-carousel].mc-active{
		gap: 12px;
	}
}
