*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg: #0d0f14;
	--surface: #141820;
	--card: #1a1f2e;
	--amber: #e8a838;
	--amber-dim: #c48a22;
	--amber-glow: rgba(232, 168, 56, 0.12);
	--text: #f0ece4;
	--muted: #8a8e9a;
	--border: rgba(232, 168, 56, 0.18);
	--radius: 16px;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
	opacity: 0.5;
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 48px;
	background: rgba(13, 15, 20, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}
.nav-logo {
	font-family: 'Instrument Serif', serif;
	font-size: 1.4rem;
	color: var(--amber);
	letter-spacing: -0.02em;
}
.nav-logo span {
	color: var(--text);
}
.nav-links {
	display: flex;
	gap: 32px;
}
.nav-links a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: var(--amber);
}
.nav-cta {
	background: var(--amber);
	color: #0d0f14;
	border: none;
	padding: 10px 22px;
	border-radius: 8px;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 0.88rem;
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s;
}
.nav-cta:hover {
	background: var(--amber-dim);
	transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 140px 48px 80px;
	position: relative;
	overflow: hidden;
}
.hero-glow {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 500px;
	background: radial-gradient(
		ellipse at center,
		rgba(232, 168, 56, 0.18) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(232, 168, 56, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(232, 168, 56, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(
		ellipse 80% 60% at 50% 40%,
		black 30%,
		transparent 100%
	);
}
.hero-inner {
	text-align: center;
	max-width: 820px;
	position: relative;
	z-index: 1;
	animation: fadeUp 0.9s ease both;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--border);
	background: var(--amber-glow);
	border-radius: 50px;
	padding: 6px 16px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 32px;
}
.hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--amber);
	box-shadow: 0 0 8px var(--amber);
	animation: pulse 2s infinite;
}
h1 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2.6rem, 6vw, 5rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
}
h1 em {
	font-style: italic;
	color: var(--amber);
}
.hero-sub {
	font-size: 1.1rem;
	color: var(--muted);
	max-width: 560px;
	margin: 0 auto 44px;
	font-weight: 400;
}
.hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.btn-primary {
	background: var(--amber);
	color: #0d0f14;
	border: none;
	padding: 15px 32px;
	border-radius: 10px;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	text-decoration: none;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 24px rgba(232, 168, 56, 0.3);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(232, 168, 56, 0.45);
}
.btn-secondary {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	padding: 15px 32px;
	border-radius: 10px;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	text-decoration: none;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.btn-secondary:hover {
	border-color: var(--amber);
	background: var(--amber-glow);
}
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
	animation: fadeUp 0.9s 0.3s ease both;
	opacity: 0;
}
.stat-num {
	font-family: 'Instrument Serif', serif;
	font-size: 2.4rem;
	color: var(--amber);
	line-height: 1;
}
.stat-label {
	font-size: 0.82rem;
	color: var(--muted);
	margin-top: 4px;
}

/* ── SECTION BASICS ── */
section {
	padding: 100px 48px;
	position: relative;
	z-index: 1;
}
.section-tag {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 12px;
}
h2 {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.15;
	letter-spacing: -0.025em;
	margin-bottom: 18px;
}
h2 em {
	font-style: italic;
	color: var(--amber);
}
.section-lead {
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 540px;
	line-height: 1.7;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
}

/* ── PROBLEMS ── */
#problems {
	background: var(--surface);
}
.problems-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-top: 56px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.problem-item {
	padding: 36px;
	border-bottom: 1px solid var(--border);
	display: flex;
	gap: 20px;
	align-items: flex-start;
	transition: background 0.2s;
}
.problem-item:hover {
	background: var(--amber-glow);
}
.problem-item:nth-child(odd) {
	border-right: 1px solid var(--border);
}
.problem-item:nth-last-child(-n + 2) {
	border-bottom: none;
}
.p-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--amber-glow);
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
	font-size: 1.3rem;
}
.p-title {
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 0.97rem;
}
.p-desc {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

/* ── SERVICES ── */
#services {
	background: var(--bg);
}
.services-layout {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 80px;
	align-items: start;
	margin-top: 60px;
}
.services-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.service-tab {
	padding: 20px 24px;
	border-radius: 12px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.25s;
	display: flex;
	align-items: center;
	gap: 16px;
}
.service-tab:hover,
.service-tab.active {
	background: var(--card);
	border-color: var(--border);
}
.service-tab.active .s-dot {
	background: var(--amber);
	box-shadow: 0 0 12px rgba(232, 168, 56, 0.5);
}
.s-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--muted);
	flex-shrink: 0;
	transition: all 0.25s;
}
.s-name {
	font-weight: 600;
	font-size: 0.97rem;
}
.service-detail {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 40px;
	position: sticky;
	top: 100px;
}
.sd-icon {
	font-size: 2.8rem;
	margin-bottom: 24px;
}
.sd-title {
	font-family: 'Instrument Serif', serif;
	font-size: 1.7rem;
	margin-bottom: 14px;
}
.sd-desc {
	color: var(--muted);
	line-height: 1.75;
	margin-bottom: 24px;
}
.sd-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sd-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.92rem;
	color: var(--text);
}
.sd-list li::before {
	content: '→';
	color: var(--amber);
	flex-shrink: 0;
	margin-top: 1px;
}

/* ── HOW IT WORKS ── */
#how {
	background: var(--surface);
}
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 64px;
	position: relative;
}
.steps::before {
	content: '';
	position: absolute;
	top: 38px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--amber), transparent);
	opacity: 0.4;
}
.step {
	padding: 36px 24px;
	text-align: center;
	background: var(--card);
	border: 1px solid var(--border);
	position: relative;
}
.step:first-child {
	border-radius: 14px 0 0 14px;
}
.step:last-child {
	border-radius: 0 14px 14px 0;
}
.step-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--bg);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-family: 'Instrument Serif', serif;
	font-size: 1.3rem;
	color: var(--amber);
	position: relative;
	z-index: 1;
}
.step h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 10px;
}
.step p {
	color: var(--muted);
	font-size: 0.87rem;
	line-height: 1.65;
}

/* ── WHO ── */
#who {
	background: var(--bg);
}
.who-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px;
}
.who-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	transition:
		transform 0.25s,
		border-color 0.25s;
}
.who-card:hover {
	transform: translateY(-4px);
	border-color: var(--amber);
}
.who-emoji {
	font-size: 2.2rem;
	margin-bottom: 18px;
	display: block;
}
.who-card h3 {
	font-weight: 700;
	margin-bottom: 8px;
}
.who-card p {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

/* ── CTA BANNER ── */
#cta-section {
	background: var(--bg);
	padding: 80px 48px;
}
.cta-box {
	max-width: 900px;
	margin: 0 auto;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 72px 64px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-box::before {
	content: '';
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 300px;
	background: radial-gradient(
		ellipse,
		rgba(232, 168, 56, 0.15) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.cta-box h2 {
	margin-bottom: 18px;
}
.cta-box p {
	color: var(--muted);
	max-width: 500px;
	margin: 0 auto 36px;
}
.cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── CONTACT ── */
#contact {
	background: var(--surface);
}
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-top: 56px;
}
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.ci-icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--amber-glow);
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
	font-size: 1.1rem;
}
.ci-label {
	font-size: 0.78rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.ci-value {
	font-weight: 500;
	margin-top: 2px;
}
form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.88rem;
	color: var(--muted);
}
input,
textarea,
select {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 12px 16px;
	color: var(--text);
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
}
input:focus,
textarea:focus,
select:focus {
	border-color: var(--amber);
}
textarea {
	resize: vertical;
	min-height: 120px;
}
select option {
	background: var(--card);
}
.submit-btn {
	background: var(--amber);
	color: #0d0f14;
	border: none;
	padding: 14px;
	border-radius: 10px;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 24px rgba(232, 168, 56, 0.25);
}
.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(232, 168, 56, 0.4);
}
.form-note {
	font-size: 0.8rem;
	color: var(--muted);
	text-align: center;
}

/* ── FOOTER ── */
footer {
	border-top: 1px solid var(--border);
	padding: 32px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--muted);
	font-size: 0.85rem;
}
.footer-logo {
	font-family: 'Instrument Serif', serif;
	color: var(--amber);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	nav {
		padding: 16px 24px;
	}
	.nav-links {
		display: none;
	}
	section {
		padding: 72px 24px;
	}
	#hero {
		padding: 120px 24px 60px;
	}
	.hero-stats {
		gap: 28px;
	}
	.problems-grid {
		grid-template-columns: 1fr;
	}
	.problem-item:nth-child(odd) {
		border-right: none;
	}
	.problem-item:nth-last-child(-n + 2) {
		border-bottom: 1px solid var(--border);
	}
	.problem-item:last-child {
		border-bottom: none;
	}
	.services-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.service-detail {
		position: static;
	}
	.steps {
		grid-template-columns: 1fr 1fr;
	}
	.step:first-child {
		border-radius: 14px 0 0 0;
	}
	.step:last-child {
		border-radius: 0 0 14px 0;
	}
	.who-grid {
		grid-template-columns: 1fr;
	}
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.cta-box {
		padding: 48px 32px;
	}
	footer {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}
@media (max-width: 560px) {
	.steps {
		grid-template-columns: 1fr;
	}
	.step:first-child {
		border-radius: 14px 14px 0 0;
	}
	.step:last-child {
		border-radius: 0 0 14px 14px;
	}
}
