/* ==========================================================================
   page-collections.css — Debt Collection Services
   NextWave BPO · Estilos específicos de esta landing page.
   Depende de: style.css → lp-base.css
   Prefijo: col-
   ========================================================================== */



/* ── SCROLL / ENTRANCE ANIMATIONS ───────────────────────────────────────── */
/* .nw-obs = JS lo añade para activar la animación.
   Si JS no corre, los elementos nunca reciben .nw-obs → siempre visibles. */
@media (prefers-reduced-motion: no-preference) {

	/* Hero: wrapper .nw-anim activa el estado oculto */
	.col-hero-inner.nw-anim .nw-fade-up {
		opacity: 0;
		transform: translateY(22px);
		transition: opacity 0.55s ease-out, transform 0.55s ease-out;
	}
	.col-hero-inner.nw-anim .nw-fade-up.nw-in {
		opacity: 1;
		transform: none;
	}

	/* Secciones: .nw-obs activa el estado oculto en el elemento mismo */
	.nw-fade-up.nw-obs {
		opacity: 0;
		transform: translateY(22px);
		transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	}
	.nw-fade-right.nw-obs {
		opacity: 0;
		transform: translateX(-36px);
		transition: opacity 0.65s ease-out, transform 0.65s ease-out;
	}
	.nw-fade-left.nw-obs {
		opacity: 0;
		transform: translateX(36px);
		transition: opacity 0.65s ease-out, transform 0.65s ease-out;
	}
	.nw-zoom-in.nw-obs {
		opacity: 0;
		transform: scale(0.82);
		transition: opacity 0.65s ease-out, transform 0.65s ease-out;
	}
	.nw-flip-left.nw-obs {
		opacity: 0;
		transform: perspective(800px) rotateY(-45deg);
		transition: opacity 0.7s ease-out, transform 0.7s ease-out;
	}
	.nw-zoom-out.nw-obs {
		opacity: 0;
		transform: scale(1.18);
		transition: opacity 0.7s ease-out, transform 0.7s ease-out;
	}

	/* Estado revelado — aplica a todos los tipos */
	.nw-obs.nw-in {
		opacity: 1 !important;
		transform: none !important;
	}

	/* Stagger via CSS transition-delay — sin atributos en el HTML */
	.col-pain-card--2.nw-obs                              { transition-delay: 150ms; }
	.col-pain-card--3.nw-obs                              { transition-delay: 300ms; }
	.col-steps > .col-step:nth-child(3).nw-obs            { transition-delay: 150ms; }
	.col-steps > .col-step:nth-child(5).nw-obs            { transition-delay: 300ms; }
	.col-steps > .col-step:nth-child(7).nw-obs            { transition-delay: 450ms; }
	.col-metrics__inner > .col-metric:nth-child(2).nw-obs { transition-delay: 150ms; }
	.col-metrics__inner > .col-metric:nth-child(3).nw-obs { transition-delay: 300ms; }
	.col-metrics__inner > .col-metric:nth-child(4).nw-obs { transition-delay: 450ms; }
}


/* ── HERO HEIGHT — matches Nearshore Staffing Solutions' hero (.svc-hero)
   exactly: height = viewport minus header, not min-height:100vh. Desktop
   only — the existing @media (max-width:768px) override further down
   already tunes mobile on its own (padding-driven, not height-locked),
   left untouched. ────────────────────────────────────────────────────── */
@media (min-width: 769px) {
	.lp-hero {
		height: calc(100vh - var(--nw-header-h, 124px));
		height: calc(100svh - var(--nw-header-h, 124px));
		min-height: 480px;
	}
}

/* ── HERO TYPOGRAPHY — universalizing the Hero across pages, deriving from
   Remote Talent's .rt2-hero__* as the reference. This is the first page
   testing that derivation; more pages migrate on request, not all at once.
   Eyebrow is scoped to .lp-hero specifically — .lp-eyebrow is a shared
   utility class other sections on this same page also use, and only the
   hero's should change here. ─────────────────────────────────────────── */
@media (min-width: 769px) {
	.lp-hero .lp-eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		font-size: .75rem;
		font-weight: 800;
		letter-spacing: .22em;
		margin-bottom: 22px;
	}

	.lp-hero .lp-eyebrow::before {
		content: '';
		display: block;
		width: 28px;
		height: 2px;
		background: var(--nw-cyan);
	}

	.lp-hero__title {
		font-size: 58px;
		margin-bottom: 22px;
	}

	.lp-hero__sub {
		color: rgba(255, 255, 255, .8);
	}
}

/* Tablet tier — same title scale as Remote Talent's own tablet override. */
@media (min-width: 769px) and (max-width: 1024px) {
	.lp-hero__title {
		font-size: clamp(2.25rem, 5vw, 3.25rem);
	}
}


/* ── HERO VIDEO BACKGROUND ───────────────────────────────────────────────── */
.lp-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	/* Base .lp-hero__video ships opacity:.18, meant to be a barely-there
	   texture — the video was effectively invisible under the base
	   overlay below. Page-specific override so it actually reads as a
	   background video here, without touching the shared base other
	   .lp-hero pages rely on. */
	opacity: .55;
}

/* Base .lp-hero::before ships rgba(2,6,12,.86) — nearly opaque, which
   combined with the low video opacity above was hiding it almost
   entirely. Lightened just for this page so the video shows through
   while keeping text contrast. */
.lp-hero::before {
	background: rgba(2, 6, 12, .55);
}


/* ── TIPOGRAFÍA DE SECCIONES (3-11) ─────────────────────────────────────── */
.col-section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 800;
	color: #111827;
	line-height: 1.15;
	margin-bottom: 12px;
	letter-spacing: -.3px;
}

.col-section-title em {
	color: var(--nw-cyan-text);
	font-style: normal;
}

.col-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.col-section-sub {
	font-size: var(--lp-text-base);
	color: #6b7280;
	line-height: var(--lp-leading-body);
	max-width: 540px;
	margin: 0 auto;
}


/* ── HERO — layout 2 columnas (específico de collections) ───────────────── */
.col-hero-inner {
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: 48px;
	align-items: center;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 3 — PAIN / PROBLEM
   ═══════════════════════════════════════════════════════════════════════════ */
#col-main { background: var(--nw-navy); }

.col-pain {
	background: var(--nw-navy);
	padding: 50px 0;
}

.col-pain__inner {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 48px;
	align-items: center;
}

.col-pain__intro { text-align: left; }

.col-pain .col-pain__title {
	font-size: 48px !important;
	font-weight: 900 !important;
	color: #fff !important;
	text-transform: none !important;
	line-height: 1.05 !important;
	letter-spacing: -.03em !important;
	margin-bottom: 16px !important;
}

.col-pain__title em {
	color: #00b4d8 !important;
	font-style: normal;
}

.col-pain__desc {
	font-size: var(--lp-text-base);
	color: rgba(255, 255, 255, .6);
	line-height: var(--lp-leading-body);
	margin-bottom: 16px;
}

.col-pain__stat { margin-top: 0; }

.col-pain__stat-row {
	display: flex;
	align-items: baseline;
	gap: 4px;
	line-height: 1;
}

.col-pain__stat-pre {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, .6);
}

.col-pain__stat-num {
	font-size: 36px !important;
	font-weight: 900 !important;
	color: #00b4d8 !important;
	line-height: 1;
	letter-spacing: -.03em;
}

.col-pain__stat-text {
	font-size: 12px;
	color: rgba(255, 255, 255, .55);
	line-height: 1.45;
	margin-top: 5px;
	max-width: 240px;
}

.col-pain__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.col-pain-card {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	min-height: 338px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	transition: transform var(--nw-speed, .25s);
}

.col-pain-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(7,17,31,.05) 0%,
		rgba(7,17,31,.55) 45%,
		rgba(7,17,31,.92) 70%,
		rgba(7,17,31,.99) 100%
	);
	z-index: 1;
	pointer-events: none;
}

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

.col-pain-card--1 { background-image: url('https://nextwavebpo.com/wp-content/uploads/unpaid-invoices-cash-flow-problem.avif'); }
.col-pain-card--2 { background-image: url('https://nextwavebpo.com/wp-content/uploads/costly-collections-agent-usa.avif'); }
.col-pain-card--3 { background-image: url('https://nextwavebpo.com/wp-content/uploads/time-lost-chasing-debtors.avif'); }

.col-pain-card__num {
	position: absolute;
	top: 10px;
	right: 14px;
	font-size: 72px;
	font-weight: 900;
	color: rgba(255, 255, 255, .12);
	line-height: 1;
	user-select: none;
	letter-spacing: -.04em;
	z-index: 2;
}

.col-pain-card__body {
	position: relative;
	z-index: 2;
	padding: 16px 18px 20px;
}

.col-pain-card__title {
	font-size: var(--lp-text-base) !important;
	font-weight: 700 !important;
	color: #fff !important;
	margin-bottom: 5px !important;
	line-height: 1.25 !important;
}

.col-pain-card p {
	font-size: var(--lp-text-xs);
	color: var(--lp-text-faint);
	line-height: var(--lp-leading-body);
	margin: 0;
}

@media (max-width: 767px) {
	.col-pain__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.col-pain__intro { text-align: center; }
	.col-pain__stat-row { justify-content: center; }
	.col-pain__stat-text { max-width: 100%; }

	.col-pain__cards {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.col-pain-card {
		position: sticky;
		top: calc(var(--nw-header-h, 80px) + 16px);
		margin-bottom: 12px;
		min-height: 260px;
	}

	.col-pain-card:not(:last-child) {
		view-timeline-name: --pain-card;
		view-timeline-axis: block;
		animation-timeline: --pain-card;
		animation-name: pain-card-shrink;
		animation-range: entry 90% cover 50%;
		animation-fill-mode: both;
	}

	@keyframes pain-card-shrink {
		0%, 75% { scale: 100%; }
		100%     { scale: 85%; }
	}
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 4 — SERVICES SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */
.col-services {
	background: #f8fafc;
	padding: 50px 0;
}

/* Slider wrapper */
.col-serv-slider {
	position: relative;
	overflow: hidden;
}

/* Track — flex row, JS drives translateX */
.col-serv-track {
	display: flex;
	gap: 18px;
	position: relative;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

/* Card — full image background, text at bottom */
.col-serv-card {
	--x-px: calc(var(--x, 0) * 1px);
	--y-px: calc(var(--y, 0) * 1px);
	flex: 0 0 auto;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	transition: transform var(--nw-speed, .25s);
}

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

/* Spotlight — sits above dark gradient, visible on hover */
.col-serv-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(
		500px circle at var(--x-px) var(--y-px),
		rgba(0, 180, 216, 0.30),
		transparent 50%
	);
	z-index: 2;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.col-serv-card:hover::before { opacity: 1; }

/* Dark gradient overlay */
.col-serv-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(7,17,31,.05) 0%,
		rgba(7,17,31,.55) 45%,
		rgba(7,17,31,.92) 70%,
		rgba(7,17,31,.99) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.col-serv-card--1 { background-image: url('https://nextwavebpo.com/wp-content/uploads/early-stage-collections-service.avif'); }
.col-serv-card--2 { background-image: url('https://nextwavebpo.com/wp-content/uploads/ar-management-dashboard.avif'); }
.col-serv-card--3 { background-image: url('https://nextwavebpo.com/wp-content/uploads/skip-tracing-debt-recovery.avif'); }
.col-serv-card--4 { background-image: url('https://nextwavebpo.com/wp-content/uploads/payment-negotiation-collections.avif'); }
.col-serv-card--5 { background-image: url('https://nextwavebpo.com/wp-content/uploads/dispute-resolution-collections.avif'); }
.col-serv-card--6 { background-image: url('https://nextwavebpo.com/wp-content/uploads/b2b-collections-service-scaled.png'); }

.col-serv-card__body {
	position: relative;
	z-index: 3;
	padding: 16px 18px 20px;
}

/* Typography */
.col-serv-card__title {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #fff !important;
	margin: 0 0 5px !important;
	line-height: 1.25 !important;
}

.col-serv-card__text {
	font-size: 11px !important;
	color: rgba(255,255,255,.65) !important;
	line-height: var(--lp-leading-body) !important;
	margin: 0 !important;
}

/* Controls row: dots + arrows */
.col-serv-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
}

.col-serv-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.col-serv-dot {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: #c8cdd6;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.25s, width 0.25s;
}

.col-serv-dot.is-active {
	background: var(--nw-cyan);
	width: 18px;
}

.col-serv-arrows {
	display: flex;
	gap: 6px;
}

.col-serv-arrow {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #d1d5db;
	background: #fff;
	color: #374151;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s;
}

.col-serv-arrow:hover {
	color: var(--nw-navy);
	border-color: #9ca3af;
}

.col-serv-arrow:disabled {
	opacity: 0.25;
	cursor: default;
	pointer-events: none;
}

/* Override Elementor kit global button styles */
body.page-template-page-collections-php .col-serv-dot {
	background-image: none !important;
	border-radius: 3px !important;
	border: 0 !important;
	width: 6px !important;
	height: 6px !important;
	min-width: unset !important;
	padding: 0 !important;
	box-shadow: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

body.page-template-page-collections-php .col-serv-dot.is-active {
	background-color: var(--nw-cyan) !important;
	width: 18px !important;
	border-radius: 3px !important;
}

body.page-template-page-collections-php .col-serv-arrow {
	background-color: #fff !important;
	background-image: none !important;
	border-radius: 50% !important;
	border: 1px solid #d1d5db !important;
	color: #374151 !important;
	width: 28px !important;
	height: 28px !important;
	min-width: unset !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	box-shadow: none !important;
	text-transform: none !important;
}

body.page-template-page-collections-php .col-serv-arrow:hover {
	background-color: #fff !important;
	color: var(--nw-navy) !important;
	border-color: #9ca3af !important;
}

body.page-template-page-collections-php .col-serv-arrow:disabled {
	opacity: 0.25 !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 5 — HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.col-how {
	background: #fff;
	padding: 50px 0;
}

.col-steps {
	display: flex;
	align-items: stretch;
	gap: 0;
	counter-reset: step-counter;
}

.col-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
	padding: 1.75rem 1.25rem;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: var(--lp-radius-md);
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
	counter-increment: step-counter;
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.col-step:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, .14);
	border-color: rgba(0, 180, 216, .35);
}

.col-step__connector {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.75rem;
	flex-shrink: 0;
	color: #94a3b8;
	align-self: center;
}

.col-step__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(0, 180, 216, .2);
	color: var(--nw-cyan-text);
	flex-shrink: 0;
}

.col-step__icon::before {
	content: counter(step-counter);
	position: absolute;
	top: -6px;
	right: -6px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--nw-navy);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.col-step__title {
	margin: 0;
	font-size: 1rem !important;
	font-weight: 800 !important;
	color: var(--nw-navy) !important;
	line-height: 1.25 !important;
}

.col-step__desc {
	margin: 0;
	font-size: 0.82rem;
	color: #4a5568;
	line-height: 1.65;
}

.col-step__badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #ecfdf5;
	color: #065f46;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 6 — WHY COLOMBIA
   ═══════════════════════════════════════════════════════════════════════════ */
.col-colombia {
	background: var(--nw-navy);
	padding: 50px 0;
}

.col-colombia__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: stretch;
}

.col-colombia__placeholder {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	padding-top: 48px;
	min-height: 360px;
}

.col-colombia__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.col-colombia .lp-eyebrow { color: var(--nw-cyan); }
.col-colombia .col-section-title { color: #fff; }
.col-colombia .col-section-title em { color: var(--nw-cyan); }

.col-colombia__title {
	text-align: center;
	margin-bottom: 40px;
}

.col-colombia__sub {
	font-size: var(--lp-text-base);
	color: rgba(255, 255, 255, .55);
	line-height: var(--lp-leading-body);
	margin-bottom: 22px;
	margin-top: 0;
}

.col-colombia__list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	width: fit-content;
}

.col-colombia__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, .90);
	line-height: 1.5;
}

.col-colombia__list svg {
	width: 20px;
	height: 20px;
	min-width: 20px;
	color: var(--nw-cyan);
	flex-shrink: 0;
}

/* Cost comparison card */
.col-colombia__compare {
	width: fit-content;
	min-width: 100%;
	background: rgba(7, 17, 31, .75);
	border: 1px solid rgba(0, 180, 216, .45);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 0 24px rgba(0, 180, 216, .08);
}

.col-colombia__compare-sides {
	display: flex;
	align-items: center;
	padding: 24px 28px;
}

.col-colombia__compare-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.col-colombia__compare-col:last-child { align-items: flex-end; }

.col-colombia__compare-name {
	font-size: 11px;
	color: var(--nw-cyan);
	font-weight: 600;
	line-height: 1.3;
}

.col-colombia__compare-price {
	display: block;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
}

.col-colombia__compare-price--bad  { color: #fff; }
.col-colombia__compare-price--good { color: #fff; }

.col-colombia__compare-per {
	font-size: 11px;
	color: rgba(255, 255, 255, .45);
}

.col-colombia__compare-vs {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(0, 180, 216, .1);
	border: 2px solid rgba(0, 180, 216, .45);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
	margin: 0 20px;
}

.col-colombia__compare-banner {
	background: var(--nw-cyan);
	text-align: center;
	padding: 13px;
	font-size: 14px;
	font-weight: 700;
	color: var(--nw-navy);
}

.col-colombia__compare-banner strong { font-weight: 800; }

/* Map container */
#map-container {
	width: 100%;
	border-radius: 16px;
	padding: 8px;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

#map-loading {
	color: rgba(255, 255, 255, .5);
	font-family: inherit;
	font-size: 13px;
}


/* SECTION 7 — TESTIMONIALS moved to shared component:
   assets/css/components/testimonials-slider.css */


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 8 — METRICS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.col-metrics {
	background: #f8fafc;
	padding: 56px 0 68px;
}

.col-metrics__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.col-metric {
	text-align: center;
	border-left: 1px solid #e5eaf0;
}

.col-metrics__inner .col-metric:first-child { border-left: none; }

.col-metric__num {
	display: block;
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: -.02em;
	color: var(--nw-navy);
	line-height: 1;
}

.col-metric__label {
	display: block;
	font-size: .8125rem;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--nw-cyan-text);
	margin-top: 8px;
	line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 9 — LEAD FORM
   ═══════════════════════════════════════════════════════════════════════════ */
.col-form-sec {
	background: #fff;
	padding: 50px 0;
}

.col-form-sec__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.col-form-sec .col-section-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.col-form-sec__sub {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.65;
	margin-bottom: 26px;
}

.col-form-sec__perks {
	list-style: none;
	padding: 0;
	margin: 0;
}

.col-form-sec__perks li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	color: #374151;
	padding: 9px 0;
	border-bottom: 1px solid #e5e7eb;
}

.col-form-sec__perks li:last-child { border: none; }
.col-form-sec__perks svg { color: var(--nw-cyan-text); flex-shrink: 0; }

/* Card look now owned by .gform-light-wrap (assets/css/components/gform-light.css) */
.col-form-sec__wrap {}

.col-form-sec__footer {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 14px;
}

.col-form-sec__footer p {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: #4a5568;
	margin: 0;
}


/* SECTION 10 — FAQ moved to shared component:
   assets/css/components/faq-grid.css */


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 11 — FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.col-cta-final {
	background-color: var(--nw-navy);
	background-image: url('https://nextwavebpo.com/wp-content/uploads/debt-collection-outsourcing-cta-background.avif');
	background-size: cover;
	background-position: center;
	padding: 50px 0;
	overflow: hidden;
	position: relative;
}

.col-cta-final::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(7,17,31,.72) 0%, rgba(7,17,31,.82) 100%),
		radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 180, 216, .10) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.col-cta-final .lp-container {
	position: relative;
	z-index: 1;
}

.col-cta-final__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
	max-width: 780px;
	margin-inline: auto;
}

.col-cta-final__eyebrow { justify-content: center; }

.col-cta-final__title {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -.4px;
	line-height: 1.1;
	max-width: 640px;
	margin: 0;
}

.col-cta-final__title em { color: var(--nw-cyan); font-style: normal; }

.col-cta-final__sub {
	font-size: var(--lp-text-base);
	color: var(--lp-text-muted);
	margin: 0;
	max-width: 480px;
}

.col-cta-final__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.col-cta-final__actions .lp-btn {
	width: 100%;
	justify-content: center;
	max-width: 360px;
}

/* Elementor override */
body.page-template-page-collections-php .col-cta-final__title {
	color: #fff !important;
}

body.page-template-page-collections-php .col-cta-final__title em,
body.page-template-page-collections-php .col-cta-final__eyebrow {
	color: var(--nw-cyan) !important;
}

@media (min-width: 640px) {
	.col-cta-final__actions {
		flex-direction: row;
		justify-content: center;
		width: auto;
	}

	.col-cta-final__actions .lp-btn {
		width: auto;
	}
}


/* ═══════════════════════════════════════════════════════════════════════════
   GRAVITY FORMS OVERRIDES
   Handled globally by style.css — "GRAVITY FORMS GLOBAL BASE STYLES"
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.col-hero-inner {
		grid-template-columns: 1fr;
	}
	.lp-form-card {
		max-width: 500px;
	}
	.lp-hero__sub {
		max-width: 100%;
	}
	.col-pain__inner {
		grid-template-columns: 1fr;
	}
	.col-form-sec__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.lp-hero { min-height: 0; align-items: flex-start; padding-bottom: 56px; padding-top: calc((var(--nw-header-h, 124px) + 32px) / 2); }

	/* Same fixed mobile title size as Remote Talent's .rt2-hero__title —
	   part of universalizing the Hero across pages. */
	.lp-hero__title {
		font-size: 1.75rem;
	}

	.lp-hero .lp-eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		font-size: .75rem;
		font-weight: 800;
		letter-spacing: .22em;
	}

	.lp-hero .lp-eyebrow::before {
		content: '';
		display: block;
		width: 28px;
		height: 2px;
		background: var(--nw-cyan);
	}

	.lp-hero__sub {
		color: rgba(255, 255, 255, .8);
	}

	.col-pain__grid,
	.col-serv-grid {
		grid-template-columns: 1fr;
	}
	.col-pain__cards { grid-template-columns: 1fr; }
	.col-steps {
		flex-direction: column;
		gap: 0;
	}
	.col-step {
		border: none;
		box-shadow: none;
		background: transparent;
		padding: 1.5rem 1.25rem;
		width: 100%;
		max-width: 320px;
		align-self: center;
	}
	.col-step__connector {
		padding: 0.5rem 0;
		align-self: center;
	}
	.col-step__connector svg {
		transform: rotate(90deg);
	}
	.col-colombia__inner { grid-template-columns: 1fr; }
	.col-colombia__placeholder {
		margin-left: calc(-1 * var(--nw-gutter, 32px));
		margin-right: calc(-1 * var(--nw-gutter, 32px));
		padding-top: 0;
	}
	#map-container {
		border-radius: 0;
		padding: 0;
		margin-top: 0;
	}
	.col-colombia__compare { width: 100%; }
	.col-colombia__compare-sides {
		padding: 18px 16px;
	}
	.col-colombia__compare-vs { margin: 0 12px; }
	.col-colombia__compare-price { font-size: 24px; }
	.col-colombia__compare-col { min-width: 0; }
	.col-metrics__inner {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 24px;
	}
	.col-metric { border-left: none; }
	.lp-trust-bar { padding-inline: 2.5rem; margin-top: -38px; }
	.lp-trust-bar__label {
		text-align: center;
		padding: 1.25rem 1.5rem;
		margin: 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
		max-width: 100%;
	}
	.lp-trust-bar__inner {
		flex-direction: column;
		align-items: stretch;
		padding: 0;
		gap: 0;
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		background: rgba(7, 17, 31, .45);
	}
	.lp-trust-bar__items {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}
	.lp-trust-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 1.75rem 1.5rem !important;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .07);
	}
	.lp-trust-item:last-child { border-bottom: 0; }
	.lp-trust-item div { text-align: center; }
	.col-cta-final__btns { flex-direction: column; align-items: center; }
}

@media (max-width: 540px) {
	.col-pain__grid,
	.col-serv-grid,
	.col-testi-grid { grid-template-columns: 1fr; }
	.lp-hero__btns { flex-direction: column; align-items: flex-start; }
	.lp-form-card { padding: 22px 18px; }
	.col-pain__stat { flex-direction: column; gap: 6px; text-align: center; }
	.col-pain__stat-text { max-width: 100%; text-align: center; }
}
