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

:root {
	color-scheme: dark;
	--bg: #131415;
	--bg-soft: #1a1b1c;
	--bg-dark: #101112;
	--text: #e5e0d2;
	--muted: #9aa28f;
	--accent: #b2a06b;
	--accent-dark: #7f724d;
	--line: rgba(178, 160, 107, 0.16);
	--radius: 28px;
	--shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	--gold-soft: rgba(178, 160, 107, 0.18);
	--gold-glow: rgba(178, 160, 107, 0.28);
	--ink: #0e0f10;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", system-ui, sans-serif;
	background:
		radial-gradient(circle at 52% 12%, rgba(220, 220, 220, 0.12), transparent 55%),
		radial-gradient(circle at 20% 80%, rgba(150, 150, 150, 0.08), transparent 50%),
		radial-gradient(ellipse 800px 600px at 60% 35%, rgba(180, 180, 180, 0.04), transparent 70%),
		linear-gradient(180deg, #151617 0%, #1b1c1d 55%, #121314 100%);
	background-attachment: fixed;
	color: var(--text);
	line-height: 1.6;
}

h1, h2, h3 {
	font-family: "Montserrat", system-ui, sans-serif;
	letter-spacing: 0.2px;
}

h1 {
	font-size: clamp(2.2rem, 3vw, 3.2rem);
	line-height: 1.12;
}

h2 {
	font-size: clamp(1.8rem, 2.4vw, 2.6rem);
	line-height: 1.2;
	background: linear-gradient(180deg, #f0ece0 0%, #c8bc9a 55%, #8b7a4f 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
}

h3 {
	font-size: 1.2rem;
	line-height: 1.3;
	background: linear-gradient(180deg, #f0ece0 0%, #c8bc9a 55%, #8b7a4f 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

p {
	font-size: 1rem;
	color: rgba(200, 205, 190, 0.88);
}

.container {
	width: min(1180px, 92%);
	margin: 0 auto;
}

.eyebrow {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: rgba(175, 186, 160, 0.7);
	margin-bottom: 12px;
}

.hero {
	padding: 64px 0 48px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: -30% -10% auto -10%;
	height: 70%;
	/* background: radial-gradient(circle at 50% 40%, rgba(178, 160, 107, 0.16), transparent 60%); */
	opacity: 0.6;
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(90deg, rgba(178, 160, 107, 0.035) 0 1px, transparent 1px 48px),
		repeating-linear-gradient(0deg, rgba(178, 160, 107, 0.03) 0 1px, transparent 1px 48px);
	opacity: 0.35;
	mask-image: radial-gradient(circle at 60% 40%, rgba(0, 0, 0, 0.65), transparent 70%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 28px;
	align-items: center;
}

.hero-copy {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 560px;
}

.hero-media {
	position: relative;
	align-self: center;
	justify-self: center;
	width: min(460px, 90%);
	aspect-ratio: 1.4 / 1;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
	display: grid;
	place-items: center;
}

.hero-media::before {
	content: "";
	position: absolute;
	inset: -8% -6% -2% -6%;
	background:
		radial-gradient(circle at 60% 45%, rgba(190, 190, 190, 0.18), transparent 55%),
		radial-gradient(circle at 35% 70%, rgba(120, 120, 120, 0.22), transparent 52%);
	filter: blur(18px);
	opacity: 0.9;
	transform: translateZ(0);
	pointer-events: none;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: -18% -12% -10% -12%;
	background: radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.08), transparent 60%);
	opacity: 0.6;
	filter: blur(8px);
	pointer-events: none;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0;
	box-shadow: none;
	filter: drop-shadow(0 22px 40px rgba(178, 160, 107, 0.16))
		drop-shadow(0 0 44px rgba(255, 228, 164, 0.12));
}

.hero-title {
	font-size: clamp(2.8rem, 4.2vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.015em;
	font-weight: 600;
	background: linear-gradient(180deg, #f1e3b2 0%, #c6a85a 52%, #7a6236 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
	position: relative;
}

.hero-title::after {
	content: "";
	display: block;
	width: 88px;
	height: 2px;
	background: rgba(178, 160, 107, 0.55);
	margin-top: 14px;
}

.hero-title span {
	display: block;
	font-size: clamp(1.9rem, 2.8vw, 2.9rem);
	color: rgba(205, 210, 195, 0.9);
	letter-spacing: -0.01em;
	font-style: italic;
	margin-top: 10px;
}

.hero-lead {
	font-size: 1.1rem;
	color: rgba(200, 205, 190, 0.82);
	line-height: 1.7;
}

.hero-text-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	margin-top: 4px;
}

.hero-text-main {
	display: grid;
	gap: 10px;
	padding-right: 12px;
	border-right: 1px solid rgba(178, 160, 107, 0.18);
}

.hero-subblocks {
	display: grid;
	gap: 12px;
}

.hero-block {
	border-left: 2px solid rgba(178, 160, 107, 0.5);
	padding-left: 12px;
	font-size: 0.93rem;
	color: rgba(200, 205, 190, 0.85);
}

.hero-block p {
	color: inherit;
}

.hero-tag {
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(175, 186, 160, 0.7);
	margin-bottom: 6px;
}

.lead {
	font-size: 0.98rem;
}

.lead.strong {
	color: var(--text);
	font-weight: 600;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 6px;
}

.btn {
	background: linear-gradient(180deg, #7c1b20 0%, #5a1418 55%, #4a0f12 100%);
	color: #e7dcc0;
	text-decoration: none;
	padding: 16px 26px;
	border-radius: 999px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(178, 160, 107, 0.55);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 220, 160, 0.12);
}

.btn:hover {
	background: linear-gradient(180deg, #8a2026 0%, #5b151a 55%, #3d0d10 100%);
	transform: translateY(-2px);
}

.micro-benefits {
	font-size: 0.9rem;
	color: rgba(200, 205, 190, 0.72);
}

@media (max-width: 720px) {
	.hero {
		padding: 56px 0 36px;
	}

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

	.hero-media {
		order: -1;
		width: min(340px, 86%);
		margin-bottom: 10px;
	}

	.hero-text-grid {
		grid-template-columns: 1fr;
	}

	.hero-text-main {
		border-right: none;
		padding-right: 0;
		border-bottom: 1px solid rgba(20, 30, 30, 0.08);
		padding-bottom: 12px;
	}

	.hero-title span {
		font-size: clamp(1.4rem, 6vw, 1.9rem);
	}
}


.section {
	padding: 80px 0;
}

.section-head {
	margin-bottom: 36px;
}

.subhead {
	font-size: 1.1rem;
	color: var(--muted);
	margin-top: 10px;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
}

.panel {
	background: rgba(16, 16, 18, 0.9);
	border-radius: var(--radius);
	padding: 26px;
	border: 1px solid rgba(178, 160, 107, 0.2);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.panel p + p {
	margin-top: 16px;
}

.panel.list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.list-item {
	padding: 14px 16px;
	background: rgba(178, 160, 107, 0.08);
	border-radius: 16px;
	font-weight: 500;
	color: var(--text);
}

.scroll-next {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
}

.scroll-next .arrow {
	font-size: 1.1rem;
}

.section-dark {
	background: radial-gradient(circle at 10% 10%, rgba(178, 160, 107, 0.12), transparent 45%),
		linear-gradient(130deg, #0b0c0d, #0f1012);
	color: var(--text);
}

.section-dark .panel {
	background: rgba(16, 16, 18, 0.9);
	border-color: rgba(178, 160, 107, 0.2);
	color: var(--text);
}

.section-dark p,
.section-dark .subhead,
.section-dark .label,
.section-dark .range-values {
	color: rgba(200, 205, 190, 0.8);
}

.stats {
	position: relative;
	overflow: hidden;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	align-items: center;
}

.stats-copy {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.stats-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.chip {
	background: rgba(178, 160, 107, 0.08);
	color: var(--text);
	border: 1px solid rgba(178, 160, 107, 0.2);
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.chip:hover {
	transform: translateY(-2px);
}

.chip.active {
	background: rgba(178, 160, 107, 0.22);
	border-color: rgba(178, 160, 107, 0.7);
}

.stats-visual {
	display: grid;
	justify-items: center;
	gap: 14px;
}

.pie {
	width: min(360px, 80vw);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: conic-gradient(
		#2a2520 0deg 90deg,
		#1f1b17 90deg 180deg,
		#2b2621 180deg 270deg,
		#1b1714 270deg 360deg
	);
	position: relative;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pie-seg {
	position: absolute;
	inset: 0;
	cursor: pointer;
	border-radius: 50%;
	background: transparent;
}

.pie-seg.seg-1 {
	clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 50%);
}

.pie-seg.seg-2 {
	clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
}

.pie-seg.seg-3 {
	clip-path: polygon(50% 50%, 50% 100%, 0 100%, 0 50%);
}

.pie-seg.seg-4 {
	clip-path: polygon(50% 50%, 0 50%, 0 0, 50% 0);
}

.pie.active-1 {
	background: conic-gradient(
		var(--accent) 0deg 90deg,
		#1f1b17 90deg 180deg,
		#2b2621 180deg 270deg,
		#1b1714 270deg 360deg
	);
}

.pie.active-2 {
	background: conic-gradient(
		#2a2520 0deg 90deg,
		var(--accent) 90deg 180deg,
		#2b2621 180deg 270deg,
		#1b1714 270deg 360deg
	);
}

.pie.active-3 {
	background: conic-gradient(
		#2a2520 0deg 90deg,
		#1f1b17 90deg 180deg,
		var(--accent) 180deg 270deg,
		#1b1714 270deg 360deg
	);
}

.pie.active-4 {
	background: conic-gradient(
		#2a2520 0deg 90deg,
		#1f1b17 90deg 180deg,
		#2b2621 180deg 270deg,
		var(--accent) 270deg 360deg
	);
}

.pie::after {
	content: "";
	position: absolute;
	inset: 18%;
	background: #121113;
	border-radius: 50%;
	border: 1px solid rgba(178, 160, 107, 0.2);
}

.pie-center {
	position: absolute;
	inset: 22%;
	border-radius: 50%;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 12px;
	z-index: 1;
}

.pie-title {
	font-family: "Cormorant Garamond", "Times New Roman", serif;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 600;
	color: #fff;
}

.pie-text {
	font-size: 0.85rem;
	color: rgba(200, 205, 190, 0.75);
}

.pie-caption {
	font-size: 0.85rem;
	color: rgba(200, 205, 190, 0.6);
}

.label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

.range {
	width: 100%;
	margin: 16px 0;
}

.range-values {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	margin-bottom: 20px;
}

.result-box {
	background: rgba(178, 160, 107, 0.08);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.result-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.95rem;
}

.result-row strong {
	color: var(--text);
}

.result-row.accent {
	padding-top: 8px;
	border-top: 1px solid rgba(178, 160, 107, 0.2);
	font-weight: 500;
}

.form-panel h3 {
	margin-bottom: 16px;
}


.lead-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.lead-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.9rem;
}

.lead-form input {
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(178, 160, 107, 0.25);
	background: rgba(10, 10, 12, 0.6);
	color: var(--text);
}

.lead-form input::placeholder {
	color: rgba(200, 205, 190, 0.5);
}

.steps {
	display: grid;
	gap: 22px;
}

.steps.roadmap {
	position: relative;
	padding-left: 34px;
}

.steps.roadmap::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 6px;
	width: 2px;
	background: linear-gradient(180deg, rgba(178, 160, 107, 0.6), rgba(178, 160, 107, 0.05));
}

.step {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 18px;
	align-items: start;
	padding: 18px 20px;
	border: 1px solid rgba(178, 160, 107, 0.2);
	border-radius: 20px;
	background: rgba(16, 16, 18, 0.9);
	position: relative;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step::before {
	content: "";
	position: absolute;
	left: -34px;
	top: 26px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(178, 160, 107, 0.18);
}

.step:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.step-num {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0.08em;
}

.step-body p {
	margin-top: 8px;
}

.muted {
	color: rgba(200, 205, 190, 0.6);
}

.section-soft {
	background: linear-gradient(180deg, rgba(178, 160, 107, 0.05), rgba(11, 12, 13, 0.96));
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}

.card {
	background: rgba(16, 16, 18, 0.92);
	border-radius: 20px;
	padding: 20px;
	border: 1px solid rgba(178, 160, 107, 0.2);
	display: grid;
	gap: 12px;
}

.card-media {
	height: 140px;
	border-radius: 16px;
	border: 1px solid rgba(178, 160, 107, 0.18);
	overflow: hidden;
	background: rgba(178, 160, 107, 0.08);
}

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

.faq {
	display: grid;
	gap: 12px;
}

.faq-item {
	background: rgba(16, 16, 18, 0.92);
	border: 1px solid rgba(178, 160, 107, 0.2);
	border-radius: 16px;
	padding: 16px 18px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	text-align: left;
	font-family: inherit;
	font-size: 0.98rem;
	cursor: pointer;
}

.faq-item .answer {
	grid-column: 1 / -1;
	max-height: 0;
	overflow: hidden;
	color: rgba(200, 205, 190, 0.75);
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-item.active .answer {
	max-height: 260px;
	margin-top: 10px;
}

.faq-item .plus {
	font-size: 1.2rem;
	color: var(--accent);
	transition: transform 0.3s ease;
}

.faq-item.active .plus {
	transform: rotate(45deg);
}

.cta {
	padding-bottom: 110px;
}

.cta-box {
	background: rgba(16, 16, 18, 0.95);
	border-radius: 28px;
	padding: 32px;
	border: 1px solid rgba(178, 160, 107, 0.2);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 720px) {
	.hero {
		padding-top: 50px;
	}

	.hero-actions {
		align-items: flex-start;
	}

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

	.steps.roadmap {
		padding-left: 0;
	}

	.steps.roadmap::before,
	.step::before {
		display: none;
	}

	.result-row {
		flex-direction: column;
	}
	.stats-actions {
		grid-template-columns: 1fr;
	}
}
