/* ============================================================
   LOGIX EXPERIENCE — style.css
   Esquema de cores: Laranja/Vermelho China + Dark
   ============================================================ */

:root {
	--orange-primary: #ff5200;
	--orange-deep: #cc2e00;
	--orange-light: #ff8400;
	--orange-glow: rgba(255, 82, 0, 0.35);
	--orange-subtle: rgba(255, 82, 0, 0.08);
	--dark-bg: #080808;
	--dark-card: #0f0e0e;
	--dark-card2: #141212;
	--dark-border: #1e1c1c;
	--dark-border2: #2a2626;
	--text-white: #ffffff;
	--text-light: #c8bfb8;
	--text-muted: #6b625c;
	--accent-green: #00d68f;
	--accent-red: #ff3344;
	--font-display: "Barlow Condensed", sans-serif;
	--font-body: "Inter", sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	font-family: var(--font-body);
	background: var(--dark-bg);
	color: var(--text-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
}
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
	background: var(--orange-primary);
	border-radius: 3px;
}

/* ── Tipografia utilitária ── */
.font-display {
	font-family: var(--font-display);
}
.text-orange {
	color: var(--orange-primary);
}
.text-muted-lx {
	color: var(--text-muted);
}
.gradient-text {
	background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.section-eyebrow {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--orange-light);
	margin-bottom: 10px;
}
.glow-line {
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
	border-radius: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-lx {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 18px 0;
	transition:
		padding 0.35s ease,
		background 0.35s ease,
		border-color 0.35s ease;
	border-bottom: 1px solid transparent;
}
.navbar-lx.scrolled {
	background: rgba(8, 8, 8, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 12px 0;
	border-bottom-color: var(--dark-border);
}
.nav-logo {
	height: 32px;
	width: auto;
}
.nav-logo-fallback {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: 1px;
	color: #fff;
}
.nav-logo-fallback span {
	background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.btn-nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
	color: #fff !important;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	padding: 10px 22px;
	border-radius: 50px;
	border: none;
	transition:
		transform 0.25s,
		box-shadow 0.25s;
	box-shadow: 0 4px 18px var(--orange-glow);
}
.btn-nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px var(--orange-glow);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
}
.hero-bg-photo {
	position: absolute;
	inset: 0;
	background-image: url("../img/hero-shanghai.jpg");
	background-size: cover;
	background-position: center 30%;
	z-index: 0;
}
.hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.8) 50%, rgba(8, 8, 8, 0.5) 100%);
	z-index: 1;
}
.hero-bg-gradient-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to top, var(--dark-bg), transparent);
	z-index: 2;
}
/* Grid animado */
.hero-grid {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: radial-gradient(circle, rgba(255, 82, 0, 0.08) 1px, transparent 1px);
	background-size: 44px 44px;
	animation: gridPulse 10s ease-in-out infinite;
}
@keyframes gridPulse {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.7;
	}
}

/* Orbs */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	z-index: 1;
	animation: orbFloat 12s ease-in-out infinite;
	pointer-events: none;
}
.hero-orb-1 {
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(255, 82, 0, 0.18) 0%, transparent 70%);
	top: -120px;
	left: -80px;
}
.hero-orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 132, 0, 0.12) 0%, transparent 70%);
	bottom: -80px;
	right: 5%;
	animation-delay: -6s;
}
@keyframes orbFloat {
	0%,
	100% {
		transform: translate(0, 0);
	}
	33% {
		transform: translate(25px, -25px);
	}
	66% {
		transform: translate(-15px, 20px);
	}
}

.hero-content {
	position: relative;
	z-index: 3;
}

/* Badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 82, 0, 0.1);
	border: 1px solid rgba(255, 82, 0, 0.35);
	border-radius: 50px;
	padding: 8px 20px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange-light);
	margin-bottom: 24px;
}
.badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange-primary);
	box-shadow: 0 0 8px var(--orange-primary);
	animation: blink 1.4s infinite;
	flex-shrink: 0;
}
@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.15;
	}
}

/* Títulos hero */
.hero-title {
	font-family: var(--font-display);
	font-size: clamp(4.5rem, 10vw, 9rem);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -1px;
	text-transform: uppercase;
}
.hero-title .t-white {
	color: #fff;
}
.hero-title .t-orange {
	background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-light) 60%, #ffb347 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Linha destaque */
.hero-bar-line {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 22px 0 18px;
}
.hero-bar-line .bar {
	width: 4px;
	height: 52px;
	background: linear-gradient(to bottom, var(--orange-primary), var(--orange-light));
	border-radius: 2px;
	flex-shrink: 0;
}
.hero-bar-text {
	font-family: var(--font-display);
	font-size: clamp(1rem, 2.5vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.3;
}
.hero-bar-text em {
	color: var(--orange-light);
	font-style: normal;
}

/* Botões hero */
.hero-cta-group {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 36px;
}

.btn-primary-lx {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
	padding: 16px 34px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition:
		transform 0.28s,
		box-shadow 0.28s;
	box-shadow: 0 8px 28px var(--orange-glow);
	letter-spacing: 0.2px;
}
.btn-primary-lx:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(255, 82, 0, 0.5);
	color: #fff;
}
.btn-outline-lx {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	font-size: 0.92rem;
	padding: 15px 30px;
	border-radius: 50px;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	transition: all 0.28s;
}
.btn-outline-lx:hover {
	border-color: var(--orange-light);
	color: var(--orange-light);
	background: rgba(255, 82, 0, 0.06);
}

/* Stats hero */
.hero-stats {
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
	margin-top: 52px;
	padding-top: 32px;
	border-top: 1px solid var(--dark-border);
}
.hero-stat .num {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 900;
	background: linear-gradient(90deg, #fff, var(--orange-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	display: block;
}
.hero-stat .label {
	font-size: 0.72rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-top: 5px;
}
.stat-sep {
	width: 1px;
	background: var(--dark-border);
	align-self: stretch;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
#pain {
	padding: 100px 0 80px;
	position: relative;
}
.pain-heading {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.8rem);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.05;
}
.pain-heading .muted {
	color: rgba(255, 255, 255, 0.3);
}
.pain-heading .s-orange {
	background: linear-gradient(90deg, var(--orange-primary), var(--orange-light), #ffb347);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.pain-highlight-pill {
	display: inline-block;
	background: var(--orange-primary);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	padding: 10px 24px;
	border-radius: 6px;
	margin: 16px 0 24px;
}
.pain-text {
	font-size: 1.05rem;
	color: var(--text-light);
	line-height: 1.85;
	max-width: 640px;
}
.pain-text strong {
	color: var(--orange-light);
}

/* ============================================================
   COMPARE SECTION
   ============================================================ */
#compare {
	padding: 60px 0 100px;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url("../img/hero_2.jpg");
	background-size: cover;
	background-attachment: fixed;
}

.compare-title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 48px;
	line-height: 1.1;
}

.compare-box {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--dark-border2);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.compare-panels {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
}

/* Painéis com imagem de fundo */
.cmp-panel {
	position: relative;
	overflow: hidden;
}
.cmp-panel-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}
.cmp-panel:hover .cmp-panel-bg {
	transform: scale(1.04);
}
.cmp-panel-overlay {
	position: absolute;
	inset: 0;
}
.cmp-panel.bad .cmp-panel-bg {
	background-image: url("../img/feira-china.jpg");
	filter: grayscale(100%);
}
.cmp-panel.bad .cmp-panel-overlay {
	background: linear-gradient(to bottom, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.82));
}
.cmp-panel.good .cmp-panel-bg {
	background-image: url("../img/fabrica-china.jpg");
}
.cmp-panel.good .cmp-panel-overlay {
	background: linear-gradient(to bottom, rgba(10, 6, 2, 0.6), rgba(15, 10, 5, 0.8));
}
.cmp-panel-content {
	position: relative;
	z-index: 1;
	padding: 32px 28px 36px;
}

/* Header dos painéis */
.cmp-header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cmp-header-title {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.cmp-panel.bad .cmp-header-title {
	color: rgba(255, 255, 255, 0.45);
}
.cmp-panel.good .cmp-header-title {
	color: var(--orange-light);
}

/* Itens de comparação */
.cmp-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	font-size: 0.9rem;
	line-height: 1.45;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cmp-item:last-child {
	border-bottom: none;
}
.cmp-panel.bad .cmp-item {
	color: rgba(255, 255, 255, 0.45);
}
.cmp-panel.good .cmp-item {
	color: rgba(255, 255, 255, 0.88);
}
.cmp-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}
.icon-x {
	background: rgba(255, 51, 68, 0.15);
	color: #ff3344;
}
.icon-chk {
	background: rgba(0, 214, 143, 0.15);
	color: var(--accent-green);
}

/* VS divisor */
.cmp-vs {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dark-bg);
	padding: 0 4px;
	position: relative;
	z-index: 2;
}
.vs-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--dark-card2);
	border: 1px solid var(--dark-border2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 900;
	color: var(--text-muted);
}

/* ============================================================
   NUMBERS BAR
   ============================================================ */
#numbers {
	padding: 56px 0;
	background: var(--dark-card);
	border-top: 1px solid var(--dark-border);
	border-bottom: 1px solid var(--dark-border);
}
.metric-item {
	text-align: center;
	padding: 12px 20px;
}
.metric-num {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	display: block;
}
.metric-label {
	font-size: 0.72rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 6px;
}
.metric-sep {
	width: 1px;
	min-height: 60px;
	background: var(--dark-border2);
	align-self: center;
}

/* ============================================================
   STRATEGY / DIFERENCIAIS
   ============================================================ */
#strategy {
	padding: 100px 0;
	position: relative;
}
.strategy-banner {
	text-align: center;
	margin-bottom: 64px;
}
.strategy-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
}
.strategy-title .s-muted {
	color: rgba(255, 255, 255, 0.25);
}
.strategy-title .s-orange {
	background: linear-gradient(90deg, var(--orange-primary), var(--orange-light), #ffb347);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.diff-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-border);
	border-radius: 18px;
	padding: 32px 26px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.32s ease,
		border-color 0.32s,
		box-shadow 0.32s;
}
.diff-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}
.diff-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 82, 0, 0.25);
	box-shadow: 0 20px 50px rgba(255, 82, 0, 0.1);
}
.diff-card:hover::after {
	transform: scaleX(1);
}

.diff-num-bg {
	position: absolute;
	top: 16px;
	right: 20px;
	font-family: var(--font-display);
	font-size: 5rem;
	font-weight: 900;
	color: rgba(255, 82, 0, 0.06);
	line-height: 1;
	pointer-events: none;
	user-select: none;
}
.diff-icon-wrap {
	width: 54px;
	height: 54px;
	background: var(--orange-subtle);
	border: 1px solid rgba(255, 82, 0, 0.18);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	transition:
		background 0.32s,
		border-color 0.32s;
}
.diff-card:hover .diff-icon-wrap {
	background: rgba(255, 82, 0, 0.15);
	border-color: rgba(255, 82, 0, 0.4);
}
.diff-icon-wrap svg {
	width: 24px;
	height: 24px;
	color: var(--orange-light);
}
.diff-title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: #fff;
	margin-bottom: 10px;
}
.diff-text {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* Card CTA especial */
.diff-card-cta {
	background: linear-gradient(135deg, rgba(255, 82, 0, 0.12), rgba(255, 132, 0, 0.06));
	border-color: rgba(255, 82, 0, 0.3);
}
.diff-card-cta:hover {
	border-color: rgba(255, 82, 0, 0.5);
	box-shadow: 0 20px 50px rgba(255, 82, 0, 0.15);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta {
	padding: 120px 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url("../img/cta_final.webp");
	background-size: cover;
	background-attachment: fixed;
}
.cta-bg-orb {
	position: absolute;
	width: 800px;
	height: 800px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 82, 0, 0.08) 0%, transparent 65%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.cta-content {
	position: relative;
	z-index: 1;
}
.cta-urgency-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 51, 68, 0.1);
	border: 1px solid rgba(255, 51, 68, 0.3);
	color: #ff6677;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 7px 18px;
	border-radius: 50px;
	margin-bottom: 24px;
}
.urgency-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ff3344;
	animation: blink 1s infinite;
}
.cta-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 7vw, 6rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.95;
	margin-bottom: 16px;
}
.cta-title .ct-orange {
	background: linear-gradient(90deg, var(--orange-primary), var(--orange-light), #ffb347);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.cta-subtitle {
	font-size: 1rem;
	color: var(--text-light);
	max-width: 480px;
	line-height: 1.75;
	margin-bottom: 40px;
}

/* Formulário */
.lead-form-wrap {
	background: var(--dark-card);
	border: 1px solid var(--dark-border2);
	border-radius: 20px;
	padding: 36px 32px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.lead-form-title {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 4px;
}
.lead-form-sub {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}
.form-field {
	position: relative;
	margin-bottom: 12px;
}
.form-field input,
.form-field select {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1.5px solid var(--dark-border2);
	border-radius: 10px;
	color: #fff;
	font-family: var(--font-body);
	font-size: 0.92rem;
	padding: 14px 16px;
	outline: none;
	transition:
		border-color 0.22s,
		background 0.22s;
	-webkit-appearance: none;
}
.form-field input::placeholder {
	color: rgba(255, 255, 255, 0.25);
}
.form-field select option {
	background: #1a1a1a;
	color: #fff;
}
.form-field input:focus,
.form-field select:focus {
	border-color: var(--orange-primary);
	background: rgba(255, 82, 0, 0.05);
}
.btn-submit {
	width: 100%;
	background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
	color: #fff;
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 1rem;
	padding: 17px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 8px;
	transition:
		transform 0.25s,
		box-shadow 0.25s;
	box-shadow: 0 8px 28px var(--orange-glow);
}
.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(255, 82, 0, 0.5);
}
.btn-submit:disabled {
	background: linear-gradient(135deg, #00c875, #00a86b);
	box-shadow: none;
	transform: none;
	cursor: default;
}
.form-note {
	font-size: 0.73rem;
	color: var(--text-muted);
	text-align: center;
	margin-top: 12px;
}
.form-note svg {
	width: 13px;
	height: 13px;
	vertical-align: middle;
}

/* Trust badges */
.trust-badges {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 36px;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.trust-icon {
	width: 40px;
	height: 40px;
	background: var(--orange-subtle);
	border: 1px solid rgba(255, 82, 0, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.trust-icon svg {
	width: 20px;
	height: 20px;
	color: var(--orange-light);
}
.trust-text-title {
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.trust-text-sub {
	font-size: 0.72rem;
	color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
	background: #040404;
	border-top: 1px solid var(--dark-border);
	padding: 40px 0 24px;
}
.footer-logo {
	height: 28px;
	width: auto;
	opacity: 0.85;
}
.footer-tagline {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 6px;
}
.footer-tagline strong {
	color: var(--orange-light);
}
.footer-hr {
	border-color: var(--dark-border);
	margin: 24px 0;
}
.footer-copy {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.18);
	text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
	.compare-panels {
		grid-template-columns: 1fr;
	}
	.cmp-vs {
		padding: 14px 0;
	}
	.vs-circle {
		width: 36px;
		height: 36px;
	}
	.trust-badges {
		gap: 16px;
	}
}
@media (max-width: 767px) {
	#hero {
		padding: 100px 0 60px;
	}
	.hero-stats {
		gap: 20px;
	}
	.stat-sep {
		display: none;
	}
	.metric-sep {
		display: none;
	}
	.lead-form-wrap {
		padding: 24px 18px;
	}
}
