:root {
	--bg: #9d9abc;
	--card-bg: #b2aee0;
	--text: #ffffff;
	--text-dark: #000000;
	--text-accent: #a48160;
	--bg-light: #f5f3f1;
	--bg-icon: #f7f6f3;
	--radius: 24px;
	interpolate-size: allow-keywords;
}

/* Hero */
.gift-hero {

	display: grid;
	place-items: center;
	background: var(--bg);
}

.hero-inner {
	padding: 40px 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 3vw, 40px);
	align-items: center;
}

.hero-copy h1 {
	margin: 0 0 24px;
	text-transform: uppercase;
	font-weight: 500;
	font-size: clamp(30px, 3vw, 60px);
	line-height: 1.1;
	color: var(--text);
}

.btn-buy {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	padding: 0 28px;
	max-width: 350px;
	width: 100%;
	background: #fff;
	color: var(--text-dark);
	border: 1px solid #fff;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: opacity .2s;
	margin-bottom: 15px;
}

.btn-buy:hover {
	opacity: .9;
}

.btn-buy:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .6);
	outline-offset: 2px;
}

.link-balance {
	display: block;
	margin-top: 16px;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	text-decoration: underline;
}

.link-balance:hover {
	color: #fff;
}

.hero-card {
	background: var(--card-bg);
	border-radius: var(--radius);
	padding: 27px 1px 27px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-card img {
	width: min(668px, 100%);
	height: auto;
	border-radius: calc(var(--radius) - 2px);
	display: block;
	object-fit: cover;
}

/* Content */
.content-section {
	background: #fff;
	padding: clamp(25px, 3vw, 80px) clamp(12px, 2vw, 24px);
}

.container {
	max-width: 1380px;
	margin: 0 auto;
}

/* Intro */
.intro-text {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: clamp(45px, 3vw, 80px);
}

.intro-description,
.intro-denominations {
	margin: 0;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 300;
	line-height: 1.5;
}

.intro-denominations {
	font-weight: 500;
}

.intro-denominations .text-underline {
	text-decoration: underline;
	text-underline-offset: 5px;
}

/* Advantages */
.advantages-section {
	position: relative;
	margin-bottom: clamp(25px, 3vw, 80px);
}

.section-title {
	margin: 20px 0 40px;
	font-size: clamp(20px, 2vw, 28px);;
	font-weight: 500;
	line-height: 1.5;
	padding: 0;

}
.section-inner {
	max-width: 700px;
	margin-inline: auto;
}
.advantages-grid {
	display: grid;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.advantage-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
}

.advantage-icon {
	position: relative;
	width: 76px;
	height: 76px;
	flex-shrink: 0;
}

.advantage-icon svg {
	position: absolute;
	top: 0;
	left: 0;
}

.advantage-icon .icon-inner {
	top: 20px;
	left: 20px;
}

.advantage-text {
	margin: 0;
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.3;
	font-weight: 400;
	max-width: 600px;
}

/* Decorative */
.decor-circle {
	position: absolute;

}

.decor-circle-1 {
	top: 0;
	left: -100px;
	transform: rotate(-30deg);
}

.decor-circle-2 {
	top: 220px;
	right: -130px;
	transform: rotate(26deg);
}
.decor-circle-3 {
	bottom: 50px;
	left: 0;
	transform: rotate(26deg);
}
.decor-circle-4 {
	bottom: -100px;
	right: 50px;
	transform: rotate(26deg);
}


/* FAQ */
.faq-section {
	margin-top: 80px;
	position: relative;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-item {
	background: var(--bg-light);
	border-radius: 30px;
	padding: 20px;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text-accent);
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-icon {
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform .3s;
}

.faq-item[open] .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	padding-top: 20px;
	border-top: 1px solid #f0f0f0;
}

.faq-answer p {
	margin: 0;
	font-size: 15px;
	line-height: 24px;
	color: var(--text-dark);
}

.faq-answer a {
	color: var(--text-dark);
	text-decoration: underline;
}

.faq-answer a:hover {
	opacity: .7;
}

::details-content {
	transition: height 0.5s ease, content-visibility 0.5s ease allow-discrete;
	height: 0;
	overflow: clip;
}
[open]::details-content {
	height: auto;
}

@media (width < 768px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.decor-circle {
		display: none;
	}
	.btn-buy {
		height: 38px;
		font-size: 12px;
		max-width: 144px;
		margin-inline: auto;
	}
	.link-balance {
		font-size: 12px;
		margin-top: 0;
	}
	.advantage-item {
		padding: 0;
	}
}