/* ===== Home (Hero) ===== */
.index-body .hero {
	position: relative;
	overflow: hidden;
	padding: 96px 0 88px;
	background:
		linear-gradient(135deg, rgba(251, 246, 238, .78) 0%, rgba(251, 246, 238, .52) 42%, rgba(24, 17, 12, .32) 100%),
		url("../images/poster.webp") center right / cover no-repeat;
}

.index-body .hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 22% 20%, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 34%),
		linear-gradient(90deg, rgba(251, 246, 238, .08) 0%, rgba(251, 246, 238, .02) 48%, rgba(61, 44, 30, .24) 100%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
}

.hero-copy-panel {
	max-width: 680px;
	padding: 34px 36px 36px;
	background: rgba(251, 246, 238, .82);
	border: 1px solid rgba(236, 223, 200, .82);
	border-radius: 28px;
	backdrop-filter: blur(10px) saturate(120%);
	box-shadow: 0 24px 60px rgba(61, 44, 30, .16);
}

@media (min-width: 1200px) {
	.hero-copy-panel {
		margin-left: -120px;
	}
}

.hero-eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(246, 236, 216, .92);
	color: #c9892b;
	font-size: 13px;
	font-weight: 600;
	border-radius: 999px;
	letter-spacing: .8px;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.hero h1 {
	font-size: 44px;
	line-height: 1.15;
	color: #3d2c1e;
	font-weight: 800;
	letter-spacing: -.5px;
	margin-bottom: 18px;
}

.hero h1 em {
	font-style: normal;
	color: #c9892b;
}

.hero .hero-lead {
	font-size: 17px;
	color: #6b5640;
	margin-bottom: 28px;
	max-width: 520px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 24px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	transition: all .2s ease;
	border: 1px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background: #c9892b;
	color: #fff;
	box-shadow: 0 6px 18px rgba(201, 137, 43, .25);
}

.btn-primary:hover {
	background: #b67821;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(201, 137, 43, .3);
}

.btn-ghost {
	background: #fff;
	color: #5a3a1d;
	border-color: #ecdfc8;
}

.btn-ghost:hover {
	border-color: #c9892b;
	color: #c9892b;
}

/* Features */
.features {
	padding: 60px 0;
}

.section-head {
	text-align: center;
	margin-bottom: 48px;
}

.section-head .kicker {
	color: #c9892b;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-head h2 {
	font-size: 34px;
	color: #3d2c1e;
	font-weight: 800;
	letter-spacing: -.3px;
}

.section-head p {
	margin-top: 12px;
	color: #6b5640;
	font-size: 16px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.feature-card {
	background: #fff;
	border: 1px solid #ecdfc8;
	border-radius: 18px;
	padding: 28px 26px;
	transition: all .25s ease;
}

.feature-card:hover {
	transform: translateY(-3px);
	border-color: #e2c692;
	box-shadow: 0 14px 28px rgba(122, 78, 28, .08);
}

.feature-card .icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #f6ecd8;
	color: #c9892b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 16px;
}

.feature-card h3 {
	font-size: 18px;
	color: #3d2c1e;
	font-weight: 700;
	margin-bottom: 8px;
}

.feature-card p {
	color: #6b5640;
	font-size: 14px;
	line-height: 1.65;
}

/* CTA */
.cta {
	padding: 50px 0 30px;
}

.cta-card {
	background: linear-gradient(135deg, #5a3a1d 0%, #3d2c1e 100%);
	color: #f6ecd8;
	border-radius: 24px;
	padding: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.cta-card h2 {
	font-size: 28px;
	color: #fff;
	margin-bottom: 8px;
}

.cta-card p {
	color: #e9d8b6;
	font-size: 15px;
	max-width: 540px;
}

.cta-card .btn-primary {
	background: #f6c46b;
	color: #3d2c1e;
	box-shadow: none;
}

.cta-card .btn-primary:hover {
	background: #fff;
	transform: translateY(-1px);
}

/* ===== Legal pages (shared) ===== */
.legal-page {
	padding: 50px 0 40px;
}

.legal-page .title {
	font-size: 36px;
	color: #3d2c1e;
	font-weight: 800;
	margin-bottom: 8px;
	letter-spacing: -.3px;
}

.legal-page .updated {
	color: #8a7458;
	font-size: 14px;
	margin-bottom: 28px;
}

.legal-copy {
	background: #fff;
	border: 1px solid #ecdfc8;
	border-radius: 18px;
	padding: 36px 40px;
	color: #4d3c2a;
	font-size: 15px;
	line-height: 1.85;
}

.legal-copy h3 {
	color: #3d2c1e;
	font-size: 18px;
	margin: 24px 0 10px;
	font-weight: 700;
}

.legal-copy h3:first-child {
	margin-top: 0;
}

.legal-copy p {
	margin-bottom: 12px;
}

.legal-copy .legal-clause {
	font-weight: 700;
	color: #c9892b;
}

.legal-copy .item2 {
	font-weight: 700;
	color: #3d2c1e;
	margin: 22px 0 10px;
	font-size: 16px;
}

.legal-copy ul.policy-list {
	margin: 8px 0 16px 0;
	padding-left: 20px;
}

.legal-copy ul.policy-list li {
	list-style: disc;
	margin-bottom: 6px;
}

.legal-copy .policy-section {
	padding: 14px 0;
	border-bottom: 1px dashed #f1e3c8;
}

.legal-copy .policy-section:last-child {
	border-bottom: 0;
}

/* Account deletion guide */
.delete-guide {
	margin: 18px 0 18px;
	padding: 20px;
	background: linear-gradient(180deg, #fffaf2 0%, #fcf4e5 100%);
	border: 1px solid #ecd9b7;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(137, 108, 71, .08);
}

.delete-guide-head {
	margin-bottom: 18px;
}

.delete-guide-head h4 {
	color: #3d2c1e;
	font-size: 20px;
	line-height: 1.2;
	margin: 6px 0 6px;
	font-weight: 800;
}

.delete-guide-head p {
	color: #6b5640;
	font-size: 14px;
	margin-bottom: 0;
}

.delete-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.delete-guide-card {
	margin: 0;
	background: #fff;
	border: 1px solid #eadcc1;
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 8px 20px rgba(61, 44, 30, .04);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.delete-guide-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f6ecd8;
	color: #c9892b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
}

.delete-guide-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	border: 1px solid #f0e2c8;
	background: #fbf6ee;
}

.delete-guide-card figcaption {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.delete-guide-card figcaption strong {
	color: #3d2c1e;
	font-size: 15px;
	line-height: 1.4;
}

.delete-guide-card figcaption span {
	color: #6b5640;
	font-size: 13px;
	line-height: 1.6;
}

/* Data protection highlights */
.protection-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0 8px;
}

.protection-card {
	background: #f6ecd8;
	border-radius: 14px;
	padding: 18px 20px;
	text-align: center;
}

.protection-card span {
	display: block;
	font-size: 12px;
	color: #c9892b;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.protection-card strong {
	color: #3d2c1e;
	font-size: 15px;
}

/* Diagram block */
.diagram-frame {
	background: #fbf6ee;
	border: 1px dashed #e2c692;
	border-radius: 14px;
	padding: 18px;
	display: flex;
	justify-content: center;
}

.diagram-frame img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.diagram-figure figcaption {
	color: #8a7458;
	font-size: 13px;
	text-align: center;
	margin-top: 10px;
}

/* ===== Contact ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 32px;
	align-items: stretch;
}

.contact-copy .contact-lead {
	font-size: 18px;
	color: #3d2c1e;
	font-weight: 600;
	margin-bottom: 12px;
}

.contact-copy .contact-body {
	color: #6b5640;
	font-size: 15px;
	margin-bottom: 24px;
}

.contact-notes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.contact-note-card {
	background: #fff;
	border: 1px solid #ecdfc8;
	border-radius: 14px;
	padding: 18px 20px;
}

.contact-note-card .contact-note-kicker {
	display: inline-block;
	color: #c9892b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.contact-note-card h3 {
	color: #3d2c1e;
	font-size: 16px;
	margin-bottom: 6px;
}

.contact-note-card p {
	color: #6b5640;
	font-size: 14px;
}

.contact-card {
	background: linear-gradient(160deg, #fef4dd 0%, #f6d9a4 100%);
	border-radius: 18px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.contact-card-badge {
	display: inline-block;
	background: rgba(255, 255, 255, .7);
	color: #c9892b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 999px;
	width: fit-content;
}

.contact-card h3 {
	font-size: 22px;
	color: #3d2c1e;
	font-weight: 700;
}

.contact-card p {
	color: #5a3a1d;
}

.contact-card .contact-button {
	margin-top: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 24px;
	background: #3d2c1e;
	color: #fff;
	border-radius: 10px;
	font-weight: 600;
	width: fit-content;
}

.contact-card .contact-button:hover {
	background: #c9892b;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.index-body .hero {
		padding: 72px 0 64px;
		background-position: center center;
	}

	.hero-copy-panel {
		padding: 26px 22px 28px;
		border-radius: 24px;
	}

	.hero h1 {
		font-size: 36px;
	}

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

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

	.cta-card {
		padding: 32px;
	}
}

@media (max-width: 640px) {
	.index-body .hero {
		padding: 60px 0 54px;
		background-position: center top;
	}

	.hero-copy-panel {
		padding: 22px 18px 24px;
	}

	.hero h1 {
		font-size: 31px;
	}

	.hero .hero-lead {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.feature-grid {
		grid-template-columns: 1fr;
	}

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

	.contact-notes {
		grid-template-columns: 1fr;
	}

	.delete-guide-grid {
		grid-template-columns: 1fr;
	}

	.legal-copy {
		padding: 24px 20px;
	}

	.legal-page .title,
	.section-head h2 {
		font-size: 28px;
	}
}
