:root {
	--ink: #0f1f1a;
	--ink-soft: #23342d;
	--sand: #f3efe7;
	--sun: #f6b73c;
	--moss: #2b5d4b;
	--leaf: #3d7a63;
	--clay: #d9c7a7;
	--white: #ffffff;
	--shadow: 0 20px 60px rgba(15, 31, 26, 0.12);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: var(--ink);
	background: radial-gradient(1200px 600px at 10% -10%, #fde8c7 0%, transparent 60%),
		radial-gradient(900px 500px at 90% 0%, #cde6d8 0%, transparent 55%),
		var(--sand);
	line-height: 1.65;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: min(1100px, 92vw);
	margin: 0 auto;
}

header {
	padding: 28px 0 0;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.logo {
	font-family: "Fraunces", "Georgia", serif;
	font-size: 1.3rem;
	letter-spacing: 0.02em;
}

.nav-links {
	display: flex;
	gap: 18px;
	font-weight: 600;
	font-size: 0.95rem;
}

.hero {
	padding: 70px 0 60px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
	gap: 40px;
}

.hero h1 {
	font-family: "Fraunces", "Georgia", serif;
	font-size: clamp(2.4rem, 3vw + 1rem, 4rem);
	margin: 0 0 16px;
}

.hero p {
	font-size: 1.1rem;
	color: var(--ink-soft);
}

.hero-card {
	background: var(--white);
	border-radius: 26px;
	padding: 28px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(15, 31, 26, 0.06);
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(246, 183, 60, 0.18);
	color: #7a4a00;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 18px;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--sun), #f2a72e);
	color: #3d2b00;
	font-weight: 700;
	margin-top: 14px;
	box-shadow: 0 14px 30px rgba(246, 183, 60, 0.35);
	transition: transform 0.2s ease;
}

.cta:hover {
	transform: translateY(-2px);
}

.grid {
	display: grid;
	gap: 22px;
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
	background: var(--white);
	border-radius: 20px;
	padding: 22px;
	box-shadow: var(--shadow);
}

section {
	padding: 60px 0;
}

h2 {
	font-family: "Fraunces", "Georgia", serif;
	font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
	margin-bottom: 14px;
}

.table-wrap {
	overflow-x: auto;
	border-radius: 18px;
	border: 1px solid rgba(15, 31, 26, 0.08);
}

table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
}

th,
td {
	padding: 16px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(15, 31, 26, 0.08);
}

th {
	background: rgba(43, 93, 75, 0.08);
	font-weight: 700;
}

.badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(43, 93, 75, 0.1);
	color: var(--moss);
	font-weight: 600;
	font-size: 0.85rem;
}

.steps {
	counter-reset: step;
	display: grid;
	gap: 18px;
}

.step {
	background: var(--white);
	border-radius: 18px;
	padding: 18px 20px;
	box-shadow: var(--shadow);
	position: relative;
	padding-left: 54px;
}

.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 16px;
	top: 18px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--moss);
	color: var(--white);
	display: grid;
	place-items: center;
	font-weight: 700;
}

.faq details {
	background: var(--white);
	border-radius: 16px;
	padding: 16px 18px;
	box-shadow: var(--shadow);
}

.faq summary {
	cursor: pointer;
	font-weight: 700;
}

.footer {
	padding: 40px 0 60px;
	font-size: 0.95rem;
	color: var(--ink-soft);
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	animation: reveal 0.9s ease forwards;
}

.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.2s;
}

.delay-3 {
	animation-delay: 0.3s;
}

@keyframes reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 720px) {
	.nav {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-links {
		flex-wrap: wrap;
	}
}
