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

html {
	scroll-behavior: smooth;
	font-size: 16px
}

body {
	font-family: 'Google Sans', 'Google Sans Text', sans-serif;
	background: var(--white);
	color: var(--ink);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased
}

/* ── VARS ── */
:root {
	/* NuveMenu Brand Palette */
	--noir: #0D0D0D;
	--graphite: #2C2C2C;
	--offwhite: #ffffff;
	--teal: #1A7A6E;
	--teal-dark: #145f56;
	--mint: #A8D5CF;

	/* Semantic aliases */
	--ink: #0D0D0D;
	--ink2: #4a4a4a;
	--ink3: #7a7a7a;
	--surface: #ffffff;
	--surface2: #f0f0f0;
	--white: #ffffff;
	--border: #e5e5e5;
	--border2: #d4d4d4;

	/* Accent */
	--blue: #1A7A6E;
	--blue2: #1A7A6E;
	--green: #1A7A6E;

	--shadow: 0 1px 3px rgba(13, 13, 13, .07), 0 4px 12px rgba(13, 13, 13, .05);
	--shadow-hover: 0 4px 14px rgba(13, 13, 13, .1), 0 14px 36px rgba(13, 13, 13, .08);
	--shadow-float: 0 8px 32px rgba(26, 122, 110, .18), 0 2px 8px rgba(26, 122, 110, .1);
	--r: 20px;
	--r2: 28px;
	--r3: 16px;
}

/* ── NAVBAR ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s, box-shadow .3s;
}

nav.scrolled {
	border-color: var(--border);
	box-shadow: 0 1px 8px rgba(0, 0, 0, .06)
}

.logo {
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	text-decoration: none;
	letter-spacing: -.5px
}

.logo span {
	color: var(--teal)
}

.nav-links {
	display: flex;
	gap: 8px;
	list-style: none
}

.nav-links a {
	color: var(--ink2);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 100px;
	transition: background .2s, color .2s
}

.nav-links a:hover {
	background: #f0f0f0;
	color: var(--ink)
}

.nav-cta {
	background: var(--noir);
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	padding: 8px 22px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background .2s, box-shadow .2s;
	white-space: nowrap
}

.nav-cta:hover {
	background: var(--graphite);
	box-shadow: 0 4px 16px rgba(13, 13, 13, .25)
}

/* ── HERO ── */
#hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 40px 80px;
	position: relative;
	overflow: hidden;
	background: var(--white);
}

/* ring-particle canvas */
#hero-canvas {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 860px
}

.hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	background: rgba(168, 213, 207, .25);
	border: 1px solid rgba(26, 122, 110, .2);
	color: var(--teal);
	padding: 6px 18px 6px 8px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .01em;
	animation: fadeUp .7s ease both;
}

.hero-chip-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--teal);
	animation: blink 2s infinite
}

@keyframes blink {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: .3
	}
}

h1.hero-title {
	font-size: clamp(44px, 6.5vw, 80px);
	font-weight: 900;
	letter-spacing: -2.5px;
	line-height: 1.03;
	margin-bottom: 24px;
	color: var(--ink);
	animation: fadeUp .7s .08s ease both;
}

h1.hero-title .accent {
	background: linear-gradient(90deg, var(--noir), var(--teal));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: clamp(17px, 2vw, 20px);
	color: var(--ink2);
	max-width: 600px;
	margin: 0 auto 44px;
	line-height: 1.65;
	font-weight: 400;
	animation: fadeUp .7s .16s ease both;
}

.hero-btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeUp .7s .24s ease both
}

.btn-blue {
	background: var(--noir);
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	padding: 13px 32px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .25s;
	box-shadow: 0 2px 12px rgba(13, 13, 13, .2)
}

.btn-blue:hover {
	background: var(--graphite);
	box-shadow: 0 6px 24px rgba(13, 13, 13, .35);
	transform: translateY(-1px)
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	padding: 13px 32px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid var(--border2);
	cursor: pointer;
	transition: all .25s
}

.btn-outline:hover {
	background: #f0f0f0;
	border-color: var(--teal);
	color: var(--teal);
	transform: translateY(-1px)
}

.hero-logos {
	display: flex;
	gap: 48px;
	justify-content: center;
	align-items: center;
	margin-top: 72px;
	flex-wrap: wrap;
	animation: fadeUp .7s .32s ease both;
}

.hero-logos span {
	font-size: 12px;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 600
}

.logo-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink2);
	transition: all .3s;
}

.logo-pill:hover {
	box-shadow: 0 4px 16px rgba(201, 168, 76, .25);
	transform: translateY(-3px)
}

.logo-pill .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

/* ── FLOATING CARDS (hero visual) ── */
.hero-cards {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 72px;
	flex-wrap: wrap;
	animation: fadeUp .7s .36s ease both;
}

.floating-card {
	background: var(--white);
	border: 1px solid var(--border2);
	border-radius: var(--r2);
	padding: 24px 28px;
	box-shadow: var(--shadow);
	transition: all .4s cubic-bezier(.25, .46, .45, .94);
	cursor: default;
	min-width: 200px;
}

.floating-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 16px 48px rgba(26, 122, 110, .18), 0 4px 12px rgba(13, 13, 13, .08)
}

.fc-icon {
	font-size: 28px;
	margin-bottom: 12px
}

.fc-val {
	font-size: 28px;
	font-weight: 800;
	color: var(--teal);
	letter-spacing: -1px
}

.fc-label {
	font-size: 13px;
	color: var(--ink2);
	margin-top: 4px;
	line-height: 1.4
}

.floating-card.float1 {
	animation: float1 6s ease-in-out infinite;
}

.floating-card.float2 {
	animation: float2 7s ease-in-out infinite
}

.floating-card.float3 {
	animation: float3 5.5s ease-in-out infinite
}

@keyframes float1 {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-12px)
	}
}

@keyframes float2 {

	0%,
	100% {
		transform: translateY(-8px)
	}

	50% {
		transform: translateY(4px)
	}
}

@keyframes float3 {

	0%,
	100% {
		transform: translateY(-4px)
	}

	50% {
		transform: translateY(-16px)
	}
}

/* ── SECTION BASE ── */
section {
	padding: 100px 40px;
	position: relative
}

.container {
	max-width: 1140px;
	margin: 0 auto
}

.section-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 14px;
	display: block
}

.section-title {
	font-size: clamp(30px, 3.8vw, 48px);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1.12;
	color: var(--ink);
	margin-bottom: 16px
}

.section-sub {
	font-size: 17px;
	color: var(--ink2);
	line-height: 1.7;
	max-width: 540px
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .65s ease, transform .65s ease
}

.reveal.on {
	opacity: 1;
	transform: translateY(0)
}

.reveal-l {
	opacity: 0;
	transform: translateX(-32px);
	transition: opacity .65s ease, transform .65s ease
}

.reveal-l.on {
	opacity: 1;
	transform: translateX(0)
}

.reveal-r {
	opacity: 0;
	transform: translateX(32px);
	transition: opacity .65s ease, transform .65s ease
}

.reveal-r.on {
	opacity: 1;
	transform: translateX(0)
}

/* ── NUMBERS ── */
#numbers {
	background: var(--surface)
}


/* ── PRODUCT ROWS ── */
#products {
	background: var(--white)
}

.product-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 120px
}

.product-row:last-child {
	margin-bottom: 0
}

.product-row.flip .p-text {
	order: 2
}

.product-row.flip .p-visual {
	order: 1
}

.p-text .section-sub {
	margin-bottom: 32px
}

.features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--ink2)
}

.features li::before {
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--teal);
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: center
}

.p-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	color: var(--teal);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: gap .2s
}

.p-btn:hover {
	gap: 10px
}

.p-visual {
	position: relative
}

.p-img {
	border-radius: var(--r2);
	overflow: hidden;
	aspect-ratio: 4/3;
	border: 1px solid var(--border);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
	transition: box-shadow .4s, transform .4s
}

.p-img:hover {
	box-shadow: 0 32px 80px rgba(0, 0, 0, .12);
	transform: translateY(-4px)
}

.p-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.p-badge {
	position: absolute;
	bottom: -16px;
	right: 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r3);
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: var(--shadow);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap
}

.p-badge .dot-live {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--teal);
	box-shadow: 0 0 0 3px rgba(26, 122, 110, .2);
	animation: blink 2s infinite
}

/* ── BENEFITS ── */
#benefits {
	background: #f7faf9
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 56px
}

.benefit-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r2);
	padding: 36px;
	transition: all .35s
}

.benefit-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
	border-color: var(--teal)
}

.benefit-card:hover .b-icon {
	background: var(--teal);
	color: #fff
}

.b-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(168, 213, 207, .25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 18px;
	transition: all .3s
}

.b-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px
}

.b-desc {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.6
}

/* ── CASES ── */
#cases {
	background: var(--white)
}

.cases-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 56px
}

.case-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r2);
	padding: 28px 24px;
	transition: all .35s;
	text-align: center
}

.case-card:hover {
	background: var(--white);
	box-shadow: var(--shadow-hover);
	transform: translateY(-6px);
	border-color: var(--gold)
}

.case-avatar {
	width: 56px;
	height: 56px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	margin: 0 auto 16px
}

.case-avatar img {
	max-height: 5rem;
	border-radius: 10px;
}

.case-stars {
	color: var(--teal);
	font-size: 13px;
	margin-bottom: 8px
}

.case-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 3px
}

.case-city {
	font-size: 11px;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 14px
}

.case-quote {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.6;
	font-style: italic
}

/* ── PRICING ── */
#pricing {
	background: #f7faf9
}

.pricing-wrap {
	max-width: 520px;
	margin: 56px auto 0
}

.pricing-card {
	background: var(--white);
	border: 1.5px solid var(--teal);
	border-radius: var(--r2);
	padding: 52px 48px;
	box-shadow: 0 8px 40px rgba(26, 122, 110, .12);
	position: relative;
	overflow: visible;
	text-align: center
}

.pricing-top-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--teal), var(--mint));
	border-radius: var(--r2) var(--r2) 0 0
}

.pricing-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 20px;
	display: block
}

.pricing-amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-bottom: 6px
}

.pricing-cur {
	font-size: 24px;
	font-weight: 700;
	color: var(--ink2);
	align-self: flex-start;
	margin-top: 14px
}

.pricing-val {
	font-size: 72px;
	font-weight: 900;
	letter-spacing: -3px;
	color: var(--ink);
	line-height: 1
}

.pricing-mo {
	font-size: 18px;
	color: var(--ink2);
	font-weight: 500
}

.pricing-note {
	font-size: 13px;
	color: var(--ink3);
	margin-bottom: 40px
}

.pricing-div {
	height: 1px;
	background: var(--border);
	margin: 0 0 32px
}

.pricing-feats {
	list-style: none;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 40px
}

.pricing-feats li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--ink2)
}

.pricing-feats li::before {
	content: "✓";
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(26, 122, 110, .1);
	color: var(--teal);
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.btn-pricing {
	display: block;
	width: 100%;
	padding: 16px;
	background: var(--teal);
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all .25s;
	box-shadow: 0 4px 20px rgba(13, 13, 13, .2);
	text-align: center
}

.btn-pricing:hover {
	background: var(--teal-dark);
	box-shadow: 0 8px 32px rgba(26, 122, 110, .4);
	transform: translateY(-1px)
}

.pricing-guarantee {
	text-align: center;
	margin-top: 16px;
	font-size: 16px;
	color: var(--ink3);
	text-align:center;
	margin-top:36px
}

/* ── ABOUT ── */
#about {
	background: var(--white)
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center
}

.about-img {
	border-radius: var(--r2);
	overflow: hidden;
	aspect-ratio: 1;
	border: 1px solid var(--border)
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.about-nums {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 36px
}

.about-num {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r3);
	padding: 20px 18px
}

.about-num-val {
	font-size: 28px;
	font-weight: 800;
	color: var(--teal);
	letter-spacing: -1px
}

.about-num-lbl {
	font-size: 13px;
	color: var(--ink2);
	margin-top: 2px
}

.aws-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 10px 20px;
	margin-top: 28px;
	font-size: 13px;
	color: var(--ink2)
}

.aws-pill strong {
	color: var(--ink)
}

/* ── CTA FINAL ── */
#cta {
	background: linear-gradient(135deg, rgba(168, 213, 207, .25) 0%, #fff 50%, rgba(26, 122, 110, .06) 100%);
	text-align: center;
	padding: 120px 40px;
	position: relative;
	overflow: hidden;
}

#cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(26, 122, 110, .08), transparent 70%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.cta-title {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 18px
}

.cta-sub {
	font-size: 18px;
	color: var(--ink2);
	margin-bottom: 44px;
	line-height: 1.6;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto
}

/* ── FOOTER ── */
footer {
	background: var(--noir);
	border-top: 1px solid var(--graphite);
	padding: 48px 40px 32px
}

.footer-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px
}

.footer-brand .logo {
	font-size: 18px
}

.footer-brand p {
	font-size: 13px;
	color: #888;
	margin-top: 8px;
	max-width: 240px;
	line-height: 1.6
}

.footer-col h4 {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #555;
	margin-bottom: 16px
}

.footer-col a {
	display: block;
	font-size: 14px;
	color: #888;
	text-decoration: none;
	margin-bottom: 8px;
	transition: color .2s
}

.footer-col a:hover {
	color: var(--champagne)
}

.footer-bottom {
	max-width: 1140px;
	margin: 32px auto 0;
	padding-top: 24px;
	border-top: 1px solid var(--graphite);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px
}

.footer-bottom p {
	font-size: 12px;
	color: #555
}

/* ── DIVIDER ── */
.divider {
	height: 0.5px;
	background: var(--border2);
	max-width: 1140px;
	margin: 0 auto
}

/* ── SCROLL PROGRESS ── */
#progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--mint));
	z-index: 2000;
	transition: width .1s linear;
	width: 0
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
	nav {
		padding: 0 20px
	}

	.nav-links {
		display: none
	}

	section {
		padding: 72px 20px
	}

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

	.product-row.flip .p-text,
	.product-row.flip .p-visual {
		order: unset
	}

	.numbers-grid {
		grid-template-columns: 1fr
	}

	.benefits-grid {
		grid-template-columns: 1fr
	}

	.cases-row {
		grid-template-columns: repeat(2, 1fr)
	}

	.about-grid {
		grid-template-columns: 1fr
	}

	.about-img {
		display: none
	}

	.pricing-card {
		padding: 36px 24px
	}

	footer {
		padding: 48px 20px 32px
	}

	.hero-cards {
		gap: 12px
	}

	.floating-card {
		min-width: 150px;
		padding: 18px 20px
	}

	.fc-val {
		font-size: 22px
	}
}

@media(max-width:520px) {
	.cases-row {
		grid-template-columns: 1fr
	}

	.hero-btns {
		flex-direction: column;
		align-items: center
	}
}

/* ── WORD-BY-WORD REVEAL (Google Antigravity style) ── */
.word-wrap {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	line-height: 1.16
}

.word {
	display: inline-block;
	transform: translateY(105%) rotate(4deg);
	opacity: 0;
	transition: transform .55s cubic-bezier(.16, 1, .3, 1), opacity .4s ease;
	will-change: transform, opacity;
}

.word.shown {
	transform: translateY(0) rotate(0deg);
	opacity: 1
}

/* stagger via JS inline delay */
.hero-title .accent-word {
	background: linear-gradient(90deg, var(--noir), var(--teal));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* sub-text words fade up slightly */
.sub-word {
	display: inline-block;
	transform: translateY(14px);
	opacity: 0;
	transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .45s ease;
	will-change: transform, opacity;
}

.sub-word.shown {
	transform: translateY(0);
	opacity: 1
}


/* ── LOGO MARQUEE ── */
.logo-marquee-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 860px;
	margin-top: 64px;
}

.marquee-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink3);
	text-align: center;
	margin-bottom: 20px;
}

.marquee-track {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-inner {
	display: flex;
	align-items: center;
	gap: 56px;
	width: max-content;
	animation: marquee-scroll 18s linear infinite;
}

.marquee-track:hover .marquee-inner {
	animation-play-state: paused
}

.client-logo {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.3px;
	color: var(--ink3);
	white-space: nowrap;
	filter: grayscale(1);
	opacity: .5;
	transition: opacity .3s, filter .3s;
	cursor: default;
}

.client-logo img {
	max-height: 5rem;
	width: auto;
}

.client-logo:hover {
	opacity: .85;
	filter: grayscale(0)
}

@keyframes marquee-scroll {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

/* ── NUMBERS SECTION: cards row ── */
#numbers {
	background: var(--white);
	padding: 80px 40px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border)
}

.hero-cards-row {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* fc-pct sits inline with the counter value */
.fc-pct {
	font-size: 28px;
	font-weight: 900;
	color: var(--teal);
	letter-spacing: -1px;
}


/* ── PRICING GRID ── */
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	max-width: 1040px;
	margin: 48px auto 0;
	align-items: start;
	padding-top: 16px;
}

.pricing-card-featured {
	border-color: var(--teal) !important;
	box-shadow: 0 8px 40px rgba(26, 122, 110, .15) !important;
	position: relative;
}

.pricing-card-featured::after {
	content: 'MAIS POPULAR';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--teal);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 4px 14px;
	border-radius: 100px;
	white-space: nowrap;
}

.pricing-card-complete::after {
	content: 'COMPLETO';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--noir);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 4px 14px;
	border-radius: 100px;
	white-space: nowrap;
}

.pricing-card-complete {
	border-color: var(--border2) !important;
}

.pricing-card-secondary {
	border-color: var(--border2) !important;
}

.pricing-extra {
	background: #f7faf9;
	border: 1px solid #A8D5CF;
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 34px;
	font-size: 13px;
	color: #1A7A6E;
}

@media(max-width:760px) {
	.pricing-grid {
		grid-template-columns: 1fr
	}
}