/* Marketing page: shared layout (max-width aligned with nav 1000px) */
.section-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

.marketing-page .hero-cta-primary,
.marketing-page .cta-final-button {
	color: white;
}

.marketing-page .hero-cta-primary:hover,
.marketing-page .cta-final-button:hover {
	color: white;
}

.section-title {
	font-family: var(--font-text);
	font-size: 2rem;
	font-weight: 800;
	color: white;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

/* 1. Hero */
.hero {
	padding: 8rem 0 10rem;
	background: rgb(24, 25, 31);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	height: 80%;
	background: radial-gradient(ellipse at center, rgba(137, 82, 224, 0.12) 0%, transparent 60%);
	pointer-events: none;
}

.hero-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.hero-headline {
	font-family: var(--font-text);
	font-size: 3.25rem;
	font-weight: 900;
	line-height: 1.15;
	color: white;
	margin-bottom: 1.25rem;
	letter-spacing: -0.03em;
}

.hero-subline {
	font-family: var(--font-text);
	font-size: 1.15rem;
	line-height: 1.6;
	color: rgb(160, 162, 180);
	margin: 0 0 1.5rem 0;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.hero-subtext {
	list-style: none;
	padding: 0;
	margin: 0 0 2.5rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.75rem;
	font-family: var(--font-text);
	font-size: 1.1rem;
	color: rgb(160, 162, 180);
}

.hero-subtext li::before {
	content: "✓ ";
	color: var(--primary-color);
	font-weight: 600;
}

.hero-actions {
	display: flex;
	justify-content: center;
}

.hero-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--primary-color);
	color: white;
	padding: 1.25rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0.5rem;
	font-family: var(--font-text);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(137, 82, 224, 0.35);
}

.hero-cta-primary:hover {
	background: var(--primary-color-hover);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(137, 82, 224, 0.45);
}

.hero-cta-arrow {
	flex-shrink: 0;
	transition: transform 0.2s;
}

.hero-cta-primary:hover .hero-cta-arrow {
	transform: translateX(4px);
}

/* 2. How it works */
.how-it-works {
	padding: 5rem 0;
	background: rgb(24, 25, 31);
	border-top: 1px solid rgb(30, 32, 39);
}

.how-it-works .section-title {
	text-align: center;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.step-block {
	background: rgb(30, 32, 39);
	border: 1px solid rgb(52, 54, 67);
	border-radius: 0.5rem;
	padding: 2rem;
	text-align: center;
}

.step-icon {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	background: var(--primary-color);
	color: white;
	font-weight: 800;
	font-size: 1.25rem;
	border-radius: 0.5rem;
	margin: 0 auto 1.25rem;
	display: block;
}

.step-block h3 {
	font-family: var(--font-text);
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
}

.step-block p {
	font-family: var(--font-text);
	font-size: 0.95rem;
	color: rgb(124, 126, 139);
	line-height: 1.5;
	margin: 0;
}

/* 3. Why this beats DIY */
.why-beats-diy {
	padding: 5rem 0;
	background: rgb(30, 32, 39);
	border-top: 1px solid rgb(52, 54, 67);
}

.why-beats-intro {
	font-family: var(--font-text);
	font-size: 1.1rem;
	color: rgb(124, 126, 139);
	margin-bottom: 1.5rem;
}

.why-beats-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-beats-list li {
	font-family: var(--font-text);
	font-size: 1rem;
	color: rgb(200, 202, 214);
	line-height: 1.6;
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	position: relative;
}

.why-beats-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 6px;
	height: 6px;
	background: var(--primary-color);
	border-radius: 50%;
}

.why-beats-list strong {
	color: white;
}

/* 4. Example output */
.example-output {
	padding: 5rem 0;
	background: rgb(24, 25, 31);
	border-top: 1px solid rgb(30, 32, 39);
}

.example-intro {
	font-family: var(--font-text);
	font-size: 1rem;
	color: rgb(124, 126, 139);
	margin-bottom: 2rem;
}

.example-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.example-card {
	border-radius: 0.5rem;
	padding: 1.5rem;
	border: 1px solid rgb(52, 54, 67);
}

.example-before {
	background: rgb(30, 32, 39);
}

.example-after {
	background: rgba(137, 82, 224, 0.08);
	border-color: var(--primary-color);
}

.example-card h3 {
	font-family: var(--font-text);
	font-size: 1rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.25rem;
}

.example-label {
	font-family: var(--font-text);
	font-size: 0.8rem;
	color: rgb(124, 126, 139);
	margin-bottom: 1rem;
}

.example-snippet {
	font-family: var(--font-text);
	font-size: 0.85rem;
	color: rgb(200, 202, 214);
	line-height: 1.5;
}

.example-snippet p {
	margin: 0 0 0.5rem 0;
}

/* 5. Pricing */
.pricing {
	padding: 5rem 0;
	background: rgb(30, 32, 39);
	border-top: 1px solid rgb(52, 54, 67);
	overflow: visible;
}

.pricing .section-title {
	text-align: center;
}

.pricing-intro {
	text-align: center;
	font-family: var(--font-text);
	font-size: 1.05rem;
	color: rgb(160, 162, 180);
	margin-bottom: 2.5rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	align-items: stretch;
	gap: 1.5rem;
	max-width: 640px;
	margin: 0 auto 1.5rem;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	background: rgb(24, 25, 31);
	border: 1px solid rgb(52, 54, 67);
	border-radius: 0.75rem;
	padding: 0;
	text-align: center;
	position: relative;
	overflow: visible;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
	border-color: rgb(70, 72, 88);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-popular {
	border-color: var(--primary-color);
	background: linear-gradient(180deg, rgba(137, 82, 224, 0.08) 0%, rgb(24, 25, 31) 25%);
}

.pricing-popular:hover {
	border-color: var(--primary-color);
	box-shadow: 0 8px 28px rgba(137, 82, 224, 0.2);
}

.pricing-badge-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	transform: translateY(-50%);
	z-index: 1;
}

.pricing-badge {
	display: inline-block;
	background: var(--primary-color);
	color: white;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	letter-spacing: 0.03em;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(137, 82, 224, 0.4);
}

.pricing-card-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	padding: 2rem 1.5rem 1.75rem;
	gap: 0;
}

.pricing-tag {
	font-family: var(--font-text);
	font-size: 0.75rem;
	font-weight: 600;
	color: rgb(124, 126, 139);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
	order: -1;
}

.pricing-count {
	display: block;
	font-family: var(--font-text);
	font-size: 1.1rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.35rem;
}

.pricing-price {
	font-family: var(--font-text);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--primary-color);
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin-bottom: 0.25rem;
}

.pricing-price .pricing-old {
	font-size: 1rem;
	font-weight: 600;
	color: rgb(124, 126, 139);
	text-decoration: line-through;
	margin-right: 0.35rem;
}

.pricing-per {
	font-family: var(--font-text);
	font-size: 0.8rem;
	color: rgb(124, 126, 139);
}

.pricing-note {
	text-align: center;
	font-family: var(--font-text);
	font-size: 0.9rem;
	color: rgb(124, 126, 139);
	margin: 0;
}

/* 6. FAQ */
.faq {
	padding: 5rem 0;
	background: rgb(24, 25, 31);
	border-top: 1px solid rgb(30, 32, 39);
}

.faq .section-title {
	text-align: center;
	margin-bottom: 2rem;
}

.faq-list {
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	border-bottom: 1px solid rgb(45, 47, 56);
	padding: 1.25rem 0;
}

.faq-item:first-child {
	padding-top: 0;
}

.faq-question {
	font-family: var(--font-text);
	font-size: 1rem;
	font-weight: 700;
	color: white;
	margin: 0 0 0.5rem 0;
}

.faq-answer {
	font-family: var(--font-text);
	font-size: 0.9375rem;
	color: rgb(160, 162, 180);
	line-height: 1.6;
	margin: 0;
}

/* 7. Final CTA */
.cta-final {
	padding: 7rem 0 9rem;
	background: rgb(18, 19, 24);
	border-top: 1px solid rgb(30, 32, 39);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-final-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 50% 100%, rgba(137, 82, 224, 0.18) 0%, transparent 55%),
		radial-gradient(ellipse 60% 40% at 50% 0%, rgba(79, 172, 254, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.cta-final-inner {
	position: relative;
	z-index: 1;
}

.cta-final-headline {
	font-family: var(--font-text);
	font-size: 2.5rem;
	font-weight: 900;
	color: white;
	margin: 0 0 0.75rem 0;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.cta-final-text {
	font-family: var(--font-text);
	font-size: 1.2rem;
	color: rgb(160, 162, 180);
	margin: 0 0 2rem 0;
	font-weight: 500;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.cta-final-button {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--primary-color);
	color: white;
	padding: 1.25rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0.5rem;
	font-family: var(--font-text);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(137, 82, 224, 0.35);
}

.cta-final-button:hover {
	background: var(--primary-color-hover);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(137, 82, 224, 0.45);
}

.cta-final-arrow {
	flex-shrink: 0;
	transition: transform 0.2s;
}

.cta-final-button:hover .cta-final-arrow {
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		padding: 5rem 0 6rem;
	}

	.hero-headline {
		font-size: 2rem;
	}

	.hero-subline {
		font-size: 1.05rem;
	}

	.hero-subtext {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}

	.steps-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.example-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 280px;
	}

	.cta-final-headline {
		font-size: 1.75rem;
	}

	.cta-final-text {
		font-size: 1.05rem;
	}

	.section-container,
	.hero-container {
		padding: 0 1.5rem;
	}

	.how-it-works,
	.why-beats-diy,
	.example-output,
	.pricing,
	.faq,
	.cta-final {
		padding: 4rem 0;
	}

	.cta-final {
		padding-bottom: 5rem;
	}

	.section-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 4rem 0 5rem;
	}

	.hero-headline {
		font-size: 1.65rem;
	}

	.hero-subline {
		font-size: 1rem;
	}

	.hero-cta-primary,
	.cta-final-button {
		width: 100%;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		padding: 1.1rem 1.5rem;
		font-size: 1.1rem;
	}

	.cta-final-headline {
		font-size: 1.5rem;
	}

	.cta-final {
		padding: 5rem 0 6rem;
	}

	.section-container,
	.hero-container {
		padding: 0 1rem;
	}
}
