.cpllda-section {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 56px 18px;
	color: #442a2f;
	animation: cpllda-fade-up .45s ease both;
}

.cpllda-section *,
.cpllda-section *::before,
.cpllda-section *::after {
	box-sizing: border-box;
}

.cpllda-wrap {
	width: min(var(--cpllda-max, 1120px), 100%);
	margin: 0 auto;
}

.cpllda-section h2 {
	margin: 0 0 16px;
	color: var(--cpllda-primary, #7b2638);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.08;
	letter-spacing: 0;
}

.cpllda-section h3 {
	margin: 12px 0 10px;
	color: var(--cpllda-primary, #7b2638);
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: 0;
}

.cpllda-section p {
	margin: 0 0 16px;
	line-height: 1.7;
}

.cpllda-hero {
	background:
		linear-gradient(135deg, rgba(247, 217, 223, .92), rgba(255, 255, 255, .96)),
		radial-gradient(circle at top left, rgba(201, 164, 92, .24), transparent 34%);
	border-bottom: 1px solid rgba(123, 38, 56, .12);
}

.cpllda-hero-inner {
	padding: 26px 0;
}

.cpllda-kicker {
	display: inline-flex;
	margin-bottom: 14px;
	color: var(--cpllda-gold, #c9a45c);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: .08em;
}

.cpllda-lead,
.cpllda-section-intro {
	max-width: 760px;
	color: #60444b;
	font-size: 18px;
}

.cpllda-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.cpllda-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	line-height: 1.2;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.cpllda-button:hover,
.cpllda-button:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.cpllda-button-primary {
	background: linear-gradient(135deg, var(--cpllda-cta, #7b2638), var(--cpllda-primary, #7b2638));
	color: #fff;
	box-shadow: 0 14px 28px rgba(123, 38, 56, .20);
}

.cpllda-button-secondary {
	background: #fff;
	color: var(--cpllda-primary, #7b2638);
	border-color: rgba(123, 38, 56, .24);
}

.cpllda-button-primary:hover,
.cpllda-button-primary:focus {
	box-shadow: 0 20px 38px rgba(123, 38, 56, .28);
}

.cpllda-card-grid,
.cpllda-pill-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.cpllda-card,
.cpllda-pill-card,
.cpllda-faq-item {
	background: #fff;
	border: 1px solid rgba(123, 38, 56, .12);
	border-radius: var(--cpllda-radius, 22px);
	box-shadow: 0 18px 44px rgba(70, 33, 42, .08);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cpllda-card:hover,
.cpllda-pill-card:hover,
.cpllda-faq-item:hover {
	transform: translateY(-3px);
	border-color: rgba(201, 164, 92, .36);
	box-shadow: 0 26px 58px rgba(70, 33, 42, .12);
}

.cpllda-card {
	padding: 24px;
}

.cpllda-card-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px;
	border-radius: 999px;
	background: var(--cpllda-secondary, #f7d9df);
	color: var(--cpllda-primary, #7b2638);
	font-weight: 800;
}

.cpllda-pill-card {
	display: flex;
	align-items: center;
	min-height: 78px;
	padding: 18px 20px;
	color: var(--cpllda-primary, #7b2638);
	font-weight: 700;
}

.cpllda-faq-list {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.cpllda-faq-tools {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.cpllda-faq-tools label {
	flex: 1;
}

.cpllda-faq-search {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid rgba(123, 38, 56, .16);
	border-radius: 999px;
	background: #fff;
	color: #2f2f2f;
}

.cpllda-faq-item {
	overflow: hidden;
}

.cpllda-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 18px 20px;
	border: 0;
	background: #fff;
	color: var(--cpllda-primary, #7b2638);
	font: inherit;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.cpllda-faq-question > span:first-child {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cpllda-question-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--cpllda-secondary, #f7d9df);
	color: var(--cpllda-primary, #7b2638);
	font-weight: 900;
}

.cpllda-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: var(--cpllda-secondary, #f7d9df);
	color: var(--cpllda-primary, #7b2638);
}

.cpllda-faq-icon::before,
.cpllda-faq-icon::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
}

.cpllda-faq-icon {
	position: relative;
}

.cpllda-faq-icon::after {
	transform: rotate(90deg);
	transition: transform .2s ease;
}

.cpllda-generated-section,
.cpllda-story-card,
.cpllda-story-hero {
	box-sizing: border-box;
	max-width: min(var(--cpllda-max, 1120px), calc(100% - 36px));
	margin: 28px auto;
	border: 1px solid rgba(123, 38, 56, .10);
	border-radius: var(--cpllda-radius, 22px);
	background:
		linear-gradient(135deg, rgba(247, 217, 223, .72), rgba(255, 255, 255, .96)),
		radial-gradient(circle at top right, rgba(201, 164, 92, .18), transparent 32%);
	box-shadow: 0 18px 44px rgba(70, 33, 42, .08);
}

.cpllda-generated-section {
	padding: 22px;
}

.cpllda-story-hero {
	padding: clamp(30px, 5vw, 64px);
}

.cpllda-story-card {
	padding: 28px;
}

.cpllda-story-card h2,
.cpllda-story-hero h1,
.cpllda-story-hero h2 {
	color: var(--cpllda-primary, #7b2638);
}

.cpllda-story-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 210px;
	border: 1px solid rgba(123, 38, 56, .12);
	border-radius: var(--cpllda-radius, 22px);
	background: #fff;
	box-shadow: inset 0 0 0 10px rgba(247, 217, 223, .34);
	color: var(--cpllda-primary, #7b2638);
}

.cpllda-story-visual svg {
	width: min(170px, 70%);
	height: auto;
	display: block;
}

.cpllda-story-visual::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 118px;
	height: 118px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(247, 217, 223, .92), rgba(201, 164, 92, .22));
	color: var(--cpllda-primary, #7b2638);
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
}

.cpllda-story-visual-heart::before {
	content: "♡";
}

.cpllda-story-visual-card::before {
	content: "✦";
}

.cpllda-story-visual-nfc::before {
	content: "NFC";
	font-size: 30px;
	letter-spacing: 0;
}

.cpllda-story-visual-album::before {
	content: "▣";
}

.cpllda-story-visual-gift::before {
	content: "◇";
}

.cpllda-story-separator {
	max-width: min(var(--cpllda-max, 1120px), calc(100% - 36px));
	margin: 34px auto;
	border: 0;
	border-top: 1px solid rgba(201, 164, 92, .42);
}

.cpllda-faq-item.is-open .cpllda-faq-icon::after {
	transform: rotate(0);
}

.cpllda-faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: max-height .24s ease, padding .24s ease;
}

.cpllda-faq-item.is-open .cpllda-faq-answer {
	max-height: 260px;
	padding-bottom: 18px;
}

.cpllda-faq-item.is-open .cpllda-faq-icon {
	background: var(--cpllda-primary, #7b2638);
	color: #fff;
}

.cpllda-centered {
	text-align: center;
}

.cpllda-centered .cpllda-section-intro {
	margin-left: auto;
	margin-right: auto;
}

.cpllda-cta,
.cpllda-contact {
	background: linear-gradient(135deg, rgba(123, 38, 56, .08), rgba(247, 217, 223, .42));
}

.cpllda-footer-premium {
	padding: 26px 18px;
	background: var(--cpllda-primary, #7b2638);
}

.cpllda-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
}

.cpllda-footer-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.cpllda-woo-reassurance {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 16px;
}

.cpllda-woo-reassurance span {
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(247, 217, 223, .65);
	color: var(--cpllda-primary, #7b2638);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 800px) {
	.cpllda-section {
		padding: 42px 16px;
	}

	.cpllda-card-grid,
	.cpllda-pill-grid {
		grid-template-columns: 1fr;
	}

	.cpllda-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.cpllda-faq-tools {
		align-items: stretch;
		flex-direction: column;
	}

	.cpllda-button {
		width: 100%;
	}

	.cpllda-woo-reassurance {
		grid-template-columns: 1fr;
	}
}

@keyframes cpllda-fade-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
