/*!
 * Meet Digital Marketing — PPC / Google Ads Page
 * Reuses global tokens + shared components (svc-hero, dashboard-card,
 * services-grid, process-list, features-grid, cta-section, faq-list)
 * from main.css. This file only holds the conversion funnel visual.
 */

.funnel-steps {
	display: flex;
	align-items: stretch;
	gap: 0.5rem;
}

.funnel-step {
	position: relative;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	padding: 1.5rem 1.25rem;
	text-align: center;
	flex: 1 1 0;
	min-width: 0;
}

.funnel-step__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-ink);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.875rem;
	font-family: var(--font-mono);
	font-weight: 600;
}

.funnel-step h3 {
	font-size: 0.9375rem;
	margin-bottom: 0.375rem;
}

.funnel-step p {
	font-size: 0.8125rem;
	color: var(--color-text-secondary);
	margin-bottom: 0;
}

.funnel-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-blue);
	font-size: 1.25rem;
	font-weight: 700;
	flex: 0 0 auto;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.funnel-steps {
		flex-direction: column;
		gap: 0.75rem;
	}
	.funnel-arrow {
		transform: rotate(90deg);
	}
}
