.comecar-hero {
	min-height: 60vh;
	background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 55%, #1A1A1A 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 120px 24px 80px;
	text-align: center;
}

.comecar-hero-bg-grid {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 40px 40px;
	background-position: center;
	z-index: 1;
}

.comecar-hero-glow {
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
	top: 10%;
	left: 50%;
	transform: translate(-50%, -20%);
	z-index: 1;
	pointer-events: none;
}

.comecar-hero-content {
	max-width: 800px;
	position: relative;
	z-index: 2;
}

/* ─── SECTION STEPS ─── */
.steps-section {
	padding: 90px 24px;
	background: var(--bg-card);
}

.step-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 30px;
	height: 100%;
	position: relative;
	transition: var(--transition);
}

.step-card:hover {
	border-color: var(--gold-light);
	transform: translateY(-4px);
}

.step-number {
	width: 44px;
	height: 44px;
	background: var(--gold-light);
	color: var(--gold-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 24px;
}

/* ─── MOBILE RESPONSIVE AD SECTION ─── */
.mobile-ad-section {
	padding: 90px 24px;
	background: var(--bg);
	position: relative;
}

.iphone-mockup {
	width: 270px;
	height: 540px;
	background: #111;
	border: 10px solid #2e2e2e;
	border-radius: 40px;
	position: relative;
	box-shadow: 0 30px 80px rgba(0,0,0,0.35), inset 0 0 6px rgba(255,255,255,0.15);
	margin: 0 auto;
}

/* Dynamic Island/Speaker slot */
.iphone-mockup::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 20px;
	background: #000;
	border-radius: 12px;
	z-index: 10;
}

.iphone-screen {
	background: var(--bg);
	width: 100%;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
	padding: 42px 14px 14px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.iphone-app-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 12px;
}

.iphone-app-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* ─── TRUST SECTION ─── */
.trust-section {
	padding: 90px 24px;
	background: var(--bg-card);
}

.trust-item {
	display: flex;
	gap: 16px;
	margin-bottom: 30px;
}

.trust-icon-box {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: rgba(201,169,110,0.1);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.trust-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
}

.trust-desc {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ─── RESPONSIVE OVERRIDES ─── */
@media (max-width: 991px) {
	.steps-section, .mobile-ad-section, .trust-section {
		padding: 64px 16px;
	}
	.comecar-hero {
		padding: 100px 16px 60px;
	}
	.iphone-mockup {
		margin-top: 40px;
	}
}
