@font-face {
	font-family: "Allrounder Monument Test";
	src: url("https://db.onlinewebfonts.com/t/7f09473e2d90ede1aa176b58e021d609.eot");
	src: url("https://db.onlinewebfonts.com/t/7f09473e2d90ede1aa176b58e021d609.eot?#iefix")format("embedded-opentype"),
	url("https://db.onlinewebfonts.com/t/7f09473e2d90ede1aa176b58e021d609.woff2")format("woff2"),
	url("https://db.onlinewebfonts.com/t/7f09473e2d90ede1aa176b58e021d609.woff")format("woff"),
	url("https://db.onlinewebfonts.com/t/7f09473e2d90ede1aa176b58e021d609.ttf")format("truetype"),
	url("https://db.onlinewebfonts.com/t/7f09473e2d90ede1aa176b58e021d609.svg#Allrounder Monument Test")format("svg");
}

:root {
	/* Elegant light palette */
	--cream-white: #fdfbf7;
	--cream-light: #f9f6f0;
	--beige-soft: #f0ebe3;
	--beige-warm: #e8dfd4;
	--text-dark: #2d2520;
	--text-medium: #4a3f35;
	--text-light: #6b5d52;
	--gold-primary: #c08948;
	--gold-dark: #9d6f3a;
	--white: #ffffff;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--cream-white);
	color: var(--text-dark);
	overflow-x: hidden;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 4%;
	background: rgba(253, 251, 247, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--beige-warm);
	box-shadow: 0 2px 10px rgba(45, 37, 32, 0.03);
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.logo {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(0.8rem, 2.5vw, 1.15rem);
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 0.5px;
	flex-shrink: 1;
	min-width: 0;
}

.nav-cta {
	padding: 0.65rem 1.5rem;
	background: var(--text-dark);
	color: var(--cream-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: clamp(0.8rem, 2vw, 1rem);
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.nav-cta:hover {
	background: var(--text-medium);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(45, 37, 32, 0.2);
}

@media (min-width: 768px) {
	header {
		padding: 1.2rem 5%;
	}

	.logo {
		font-size: clamp(0.95rem, 2.5vw, 1.15rem);
	}

	.nav-cta {
		padding: 0.8rem 2rem;
		font-size: clamp(0.9rem, 2vw, 1rem);
	}
}

/* HERO SECTION */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 10rem 5% 6rem;
	background: linear-gradient(to bottom, var(--cream-white) 0%, var(--cream-light) 100%);
}

.hero-container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	order: 1;
	text-align: center;
}

.eyebrow {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background: var(--beige-soft);
	color: var(--text-medium);
	font-size: clamp(0.75rem, 2vw, 0.9rem);
	color: var(--text-medium);
	font-size: clamp(0.8rem, 2vw, 0.9rem);
	font-weight: 600;
	border-radius: 30px;
	margin-bottom: 2rem;
	letter-spacing: 0.5px;
}

.hero-content h1 {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(2.2rem, 7vw, 5rem);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
}

.hero-content h1 .gold {
	color: var(--gold-primary);
	display: block;
}

.hero-hook {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: var(--text-medium);
    line-height: 1.7;
    margin: 2rem auto 2.5rem;
    max-width: 650px;
    font-weight: 400;
    font-style: italic;
}

@media (min-width: 768px) {
    .hero-hook {
        text-align: left;
        margin-left: 0;
    }
}

.hero-subtitle {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(0.95rem, 3vw, 1.6rem);
	color: var(--gold-primary);
	font-weight: 500;
	margin-bottom: 2.5rem;
	line-height: 1.4;
	letter-spacing: 0.5px;
}

.value-props {
	margin: 3rem auto;
	max-width: 650px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.value-prop {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	text-align: left;
	padding: 1.5rem;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(45, 37, 32, 0.04);
	transition: all 0.3s ease;
}

.value-prop:hover {
	box-shadow: 0 8px 24px rgba(45, 37, 32, 0.08);
	transform: translateY(-2px);
}

.value-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: var(--gold-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1rem;
	font-weight: 700;
}

.value-prop-text strong {
	font-size: clamp(0.95rem, 2.5vw, 1.2rem);
	color: var(--text-dark);
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.value-prop-text p {
	font-size: clamp(0.85rem, 2vw, 1.05rem);
	color: var(--text-light);
	line-height: 1.6;
}

/* CTA Buttons */
.cta-group {
	display: flex;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin-top: 3rem;
	justify-content: center;
}

.btn {
	padding: 1.2rem 3rem;
	font-size: clamp(0.95rem, 2.5vw, 1.15rem);
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s ease;
	display: inline-block;
	cursor: pointer;
	border: none;
	font-family: 'Inter', sans-serif;
	white-space: nowrap;
	min-width: 220px;
	text-align: center;
}

.btn-primary {
	background: var(--text-dark);
	color: var(--cream-white);
	box-shadow: 0 4px 16px rgba(45, 37, 32, 0.15);
}

.btn-primary:hover {
	background: var(--text-medium);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(45, 37, 32, 0.25);
}

.btn-secondary {
	background: var(--white);
	color: var(--text-dark);
	border: 2px solid var(--text-dark);
	box-shadow: 0 2px 8px rgba(45, 37, 32, 0.08);
}

.btn-secondary:hover {
	background: var(--beige-soft);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(45, 37, 32, 0.15);
}

.guarantee {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	color: var(--text-medium);
	font-size: clamp(0.85rem, 2vw, 1rem);
}

/* Book Visual */
.hero-visual {
	order: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.book-showcase {
	position: relative;
	max-width: 600px;
	width: 100%;
}

.book-image {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 30px 80px rgba(45, 37, 32, 0.2);
}

.social-proof-badge {
	position: absolute;
	bottom: -15px;
	/* left: 10px; */
	background: var(--white);
	padding: 1rem 1.3rem;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(45, 37, 32, 0.15);
	border: 1px solid var(--beige-warm);
}

.badge-stars {
	color: var(--gold-primary);
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
}

.badge-text {
	font-size: 0.8rem;
	color: var(--text-dark);
	font-weight: 700;
}

.badge-subtext {
	font-size: 0.7rem;
	color: var(--text-light);
}

@media (min-width: 768px) {
	.social-proof-badge {
		bottom: -20px;
		left: -30px;
		padding: 1.5rem 2rem;
		border-radius: 16px;
	}

	.badge-stars {
		font-size: 1.4rem;
		margin-bottom: 0.4rem;
	}

	.badge-text {
		font-size: 0.95rem;
	}

	.badge-subtext {
		font-size: 0.85rem;
	}
}

/* Trust Bar */
.trust-bar {
	background: var(--white);
	padding: 3rem 5%;
	border-top: 1px solid var(--beige-warm);
	border-bottom: 1px solid var(--beige-warm);
}

.trust-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2.5rem;
	text-align: center;
}

.trust-number {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(3rem, 7vw, 4rem);
	font-weight: 800;
	color: var(--gold-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.trust-label {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: var(--text-medium);
	font-weight: 500;
}

/* Quote Section */
.quote-section {
	padding: clamp(5rem, 12vw, 8rem) 5%;
	background: var(--white);
}

.quote-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.stars-decoration {
	color: var(--gold-primary);
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

.quote-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.4rem, 4vw, 2.2rem);
	line-height: 1.7;
	color: var(--text-dark);
	font-style: italic;
	font-weight: 500;
}

.quote-author {
	margin-top: 2rem;
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: var(--gold-primary);
	font-weight: 600;
}

/* Testimonials Grid */
.testimonials-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

@media (max-width: 900px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 600px;
	}
}

.testimonial-card {
	background: var(--cream-white);
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: 8px;
	padding: 2rem;
	text-align: center;
}

.testimonial-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.testimonial-card .quote-text {
	font-size: clamp(1.15rem, 2.5vw, 1.3rem);
	line-height: 1.8;
}

/* Social Proof */
.social-proof {
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	color: var(--gold-primary);
	font-weight: 600;
	margin-bottom: 2.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.social-proof {
		text-align: left;
	}
}

/* Chapter Discovery Cards */
.chapter-discovery {
	border: none !important;
	background: transparent !important;
}

.chapter-cards {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin-top: 1.5rem;
}

.chapter-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--cream-light);
	border-radius: 8px;
	padding: 1.2rem 1.5rem;
}

.chapter-emoji {
	font-size: 1.5rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.chapter-card-label {
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.3rem;
	font-size: 1rem;
}

.chapter-card-desc {
	font-size: 0.95rem;
	color: var(--text-medium, #555);
	line-height: 1.5;
	margin: 0;
}

/* Chapters */
.chapters {
	padding: clamp(5rem, 12vw, 8rem) 5%;
	background: var(--cream-white);
}

/* Look Inside Section */
.look-inside {
	padding: clamp(5rem, 12vw, 8rem) 5%;
	background: var(--cream-soft);
}

.look-inside-container {
	max-width: 1200px;
	margin: 0 auto;
}

.book-preview {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin: 3rem 0;
}

.preview-page {
	background: var(--white);
	padding: 2rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(45, 37, 32, 0.08);
	min-height: 400px;
}

.look-inside-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.look-inside-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 3vw, 1.4rem);
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 500;
    font-style: italic;
}

@media (min-width: 768px) {
	.book-preview {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
		margin: 4rem 0;
	}
	
	.preview-page {
		padding: 3rem 2.5rem;
		min-height: 500px;
	}
}

.page-title {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	color: var(--text-dark);
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
}

.page-subtitle {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	color: var(--gold-primary);
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 600;
}

.story-title {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(1.3rem, 3vw, 1.6rem);
	color: var(--text-dark);
	margin-bottom: 2rem;
	font-weight: 600;
	line-height: 1.4;
}

.preview-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.0rem, 2.5vw, 1.15rem);
	line-height: 1.8;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	text-align: left;
}

.toc-chapter {
	margin-bottom: 2.5rem;
}

.toc-chapter-title {
	font-family: "Allrounder Monument Test", serif;
	font-size: 0.75rem;
	color: var(--text-medium);
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.toc-chapter-name {
	font-family: "Allrounder Monument Test", serif;
	font-size: 1rem;
	color: var(--gold-primary);
	margin-bottom: 1.2rem;
	font-weight: 700;
}

.toc-story {
	font-size: clamp(0.85rem, 2vw, 1rem);
	color: var(--text-dark);
	margin: 0.5rem 0;
	padding-left: 1.5rem;
	display: flex;
	justify-content: space-between;
	font-style: italic;
	gap: 0.5rem;
}

.page-num {
	color: var(--text-light);
	font-style: normal;
}

.toc-extras {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--beige-soft);
}

.preview-continue {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 2px solid var(--beige-warm);
	text-align: center;
}

.preview-continue em {
	color: var(--gold-primary);
	font-size: 1.1rem;
}

.look-inside-cta {
	text-align: center;
	margin-top: 4rem;
	padding: 3rem;
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(45, 37, 32, 0.08);
}

.look-inside-cta .cta-text {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	color: var(--text-dark);
	margin-bottom: 2rem;
	font-weight: 600;
}

.section-title {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 700;
	color: var(--text-dark);
	text-align: center;
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
}

.section-subtitle {
	text-align: center;
	font-size: clamp(0.95rem, 3vw, 1.3rem);
	color: var(--text-medium);
	font-style: italic;
	margin-bottom: 4rem;
}

.chapters-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: 2.5rem;
}

.chapter-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 16px;
	border-left: 5px solid var(--gold-primary);
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(45, 37, 32, 0.06);
}

.chapter-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(45, 37, 32, 0.12);
}

.chapter-number {
	font-family: "Allrounder Monument Test", serif;
	font-size: 3.5rem;
	color: var(--gold-primary);
	font-weight: 800;
	opacity: 0.25;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.chapter-card h3 {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(1.4rem, 3vw, 1.75rem);
	color: var(--text-dark);
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.chapter-card p {
	color: var(--text-medium);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.story-list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--beige-soft);
}

.story-item {
	font-size: 0.95rem;
	color: var(--gold-primary);
	font-style: italic;
	padding-left: 1.5rem;
	position: relative;
}

.story-item::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--gold-primary);
	font-weight: 600;
}

/* Author */
.author {
	padding: clamp(5rem, 12vw, 8rem) 5%;
	background: var(--white);
}

.author-container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.author-name {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(1.6rem, 5vw, 3rem);
	color: var(--gold-primary);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.author-bio {
	font-size: clamp(0.90rem, 2.5vw, 1.25rem);
	line-height: 1.9;
	color: var(--text-medium);
}

.company {
	margin-top: 2.5rem;
	font-size: clamp(0.85rem, 2vw, 1.05rem);
	color: var(--text-light);
	font-weight: 700;
	letter-spacing: 2px;
}

.author-linkedin {
	display: inline-block;
	margin-top: 1.5rem;
	font-size: 0.95rem;
	color: var(--gold-primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}

.author-linkedin:hover {
	border-bottom-color: var(--gold-primary);
}

/* Final CTA */
.final-cta {
	padding: clamp(6rem, 14vw, 10rem) 5%;
	background: var(--text-dark);
	text-align: center;
	color: var(--cream-white);
}

.final-cta h2 {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(2.8rem, 7vw, 4.5rem);
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.2;
}

.final-cta p {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	margin-bottom: 3rem;
	opacity: 0.95;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.final-cta .btn-primary {
	background: var(--gold-primary);
	color: white;
}

.final-cta .btn-primary:hover {
	background: var(--gold-dark);
}

.final-cta .btn-secondary {
	background: transparent;
	border-color: var(--cream-white);
	color: var(--cream-white);
}

.final-cta .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

.final-cta .cta-group {
	justify-content: center;
}

/* Footer */
footer {
	background: var(--cream-white);
	padding: 2.5rem 5%;
	text-align: center;
	color: var(--text-medium);
	font-size: 0.95rem;
	border-top: 1px solid var(--beige-warm);
}

/* Desktop Layout */
@media (min-width: 768px) {
	.hero-container {
		grid-template-columns: 1.1fr 1fr;
		gap: 6rem;
	}

	.hero-content {
		order: 1;
		text-align: left;
	}

	.hero-visual {
		order: 2;
	}

	.cta-group {
		justify-content: flex-start;
	}

	.guarantee {
		justify-content: flex-start;
	}

	.value-props {
		margin-left: 0;
	}

	.social-proof-badge {
		left: -30px;
	}
}

/* Footer */
footer {
    background: var(--cream-white);
    padding: 2.5rem 5% 1.5rem;
    text-align: center;
    color: var(--text-medium);
    font-size: 0.95rem;
    border-top: 1px solid var(--beige-warm);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.separator {
    color: var(--text-light);
    opacity: 0.5;
    display: none;
}

.copyright {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.legal-info {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.5;
}

@media (min-width: 768px) {
    footer {
        padding: 3rem 5% 2rem;
    }

    .separator {
        display: inline;
    }

    .footer-links {
        gap: 0.5rem 1rem;
    }
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.payment-success {
	font-family: 'Inter', sans-serif;
	background: linear-gradient(to bottom, var(--cream-white) 0%, var(--cream-light) 100%);
	color: var(--text-dark);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.payment-container {
	max-width: 600px;
	width: 100%;
	background: var(--white);
	padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 6vw, 4rem);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(45, 37, 32, 0.1);
	text-align: center;
}

.payment-container .checkmark {
	width: 80px;
	height: 80px;
	background: var(--gold-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	animation: scaleIn 0.5s ease-out;
}

.payment-container .checkmark svg {
	width: 40px;
	height: 40px;
	stroke: white;
	stroke-width: 3;
	fill: none;
	stroke-dasharray: 50;
	stroke-dashoffset: 50;
	animation: draw 0.5s ease-out 0.3s forwards;
}

@keyframes scaleIn {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

@keyframes draw {
	to {
		stroke-dashoffset: 0;
	}
}

.payment-container h1 {
	font-family: "Allrounder Monument Test", serif;
	font-size: clamp(2rem, 6vw, 3rem);
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.payment-container .subtitle {
	font-size: clamp(1.1rem, 3vw, 1.3rem);
	color: var(--gold-primary);
	margin-bottom: 2rem;
	font-weight: 500;
}

.payment-container .message {
	font-size: clamp(1rem, 2.5vw, 1.15rem);
	color: var(--text-medium);
	line-height: 1.8;
	margin-bottom: 2.5rem;
}

.payment-container .info-box {
	background: var(--beige-soft);
	padding: 1.5rem;
	border-radius: 12px;
	margin-bottom: 2.5rem;
	border-left: 4px solid var(--gold-primary);
}

.payment-container .info-box p {
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	color: var(--text-dark);
	line-height: 1.7;
}

.payment-container .info-box strong {
	color: var(--gold-primary);
}

.payment-container .btn-home {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--text-dark);
	color: var(--cream-white);
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: clamp(0.95rem, 2.5vw, 1.05rem);
	transition: all 0.3s ease;
}

.payment-container .btn-home:hover {
	background: var(--text-medium);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 37, 32, 0.2);
}

.payment-container .support {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--beige-soft);
}

.payment-container.support p {
	font-size: clamp(0.85rem, 2vw, 0.95rem);
	color: var(--text-medium);
}

.payment-container .support a {
	color: var(--gold-primary);
	text-decoration: none;
	font-weight: 600;
}

.payment-container .support a:hover {
	text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: clamp(5rem, 12vw, 8rem) 5%;
    background: var(--cream-white);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(45, 37, 32, 0.06);
    border-left: 4px solid var(--gold-primary);
}

.faq-question {
    font-family: "Allrounder Monument Test", serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--gold-dark);
}