.pp-page {
	--pp-purple: var(--violet-600);
	--pp-purple-dark: var(--violet-800);
	--pp-purple-deep: var(--violet-900);
	--pp-gradient: linear-gradient(135deg, var(--violet-600) 0%, var(--violet-800) 100%);
	color: var(--ink);
	background: #fff;
}

.pp-split-section {
	padding: 48px 0;
	background: #fff;
}

.pp-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.pp-split-text .pp-kicker {
	display: block;
	margin-bottom: 12px;
}

.pp-split-text h2 {
	font-size: clamp(26px, 3.5vw, 34px);
	font-weight: 700;
	color: #1f1235;
	margin-bottom: 16px;
}

.pp-split-text p {
	color: #4b5563;
	line-height: 1.8;
	margin-bottom: 24px;
}

.pp-split-image img {
	width: 100%;
	border-radius: 16px;
	object-fit: cover;
	max-height: 360px;
}

@media (max-width: 768px) {
	.pp-split {
		grid-template-columns: 1fr;
	}
}

.pp-hero {
	padding: 30px 0 20px;
	text-align: center;
	background: linear-gradient(180deg, #f6f1fd 0%, #ffffff 100%);
}

.pp-hero h1 {
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 700;
	margin-bottom: 18px;
	color: #1f1235;
}

.pp-hero p {
	max-width: 720px;
	margin: 0 auto 24px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.8;
}

.pp-hero-pills {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 34px;
}

.pp-hero-pills span {
	background: #fff;
	border: 1px solid #e9e2fb;
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pp-purple-dark);
}

.pp-section {
	padding: 64px 0;
}

.pp-section-alt {
	background: #f6f1fd;
}

.pp-section-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 36px;
}

.pp-section-head h2 {
	font-size: clamp(26px, 3.5vw, 34px);
	font-weight: 700;
	margin: 10px 0;
}

.pp-section-head p {
	color: #4b5563;
	line-height: 1.8;
}

.pp-kicker {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	color: var(--pp-purple);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.pp-intro {
	max-width: 820px;
	margin: 0 auto;
}

.pp-intro p {
	color: #4b5563;
	line-height: 1.9;
	margin-bottom: 16px;
}

.pp-intro-cta {
	font-weight: 600;
	color: var(--ink);
}

.pp-intro-cta a {
	color: var(--pp-purple);
	text-decoration: underline;
	margin-inline-start: 6px;
}

.pp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.pp-card {
	background: #fff;
	border: 1px solid #e9e2fb;
	border-radius: 14px;
	padding: 24px 22px;
	box-shadow: 0 4px 16px rgba(88, 28, 135, .05);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pp-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(88, 28, 135, .12);
	border-color: #d9c8fb;
}

.pp-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--pp-gradient);
	color: #fff;
	font-size: 18px;
	margin-bottom: 14px;
}

.pp-card h4 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1f1235;
}

.pp-card p {
	font-size: 15px;
	color: var(--ink-muted);
	line-height: 1.7;
	margin: 0;
}

.pp-list {
	max-width: 760px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.pp-list li {
	position: relative;
	padding-inline-start: 28px;
	margin-bottom: 14px;
	color: var(--ink-muted);
	line-height: 1.7;
}

.pp-list li::before {
	content: '\2713';
	position: absolute;
	inset-inline-start: 0;
	color: var(--pp-purple);
	font-weight: 700;
}

.pp-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 40px;
}

.pp-step {
	background: #fff;
	border: 1px solid #e9e2fb;
	border-radius: 14px;
	padding: 26px 20px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(88, 28, 135, .05);
}

.pp-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--pp-gradient);
	color: #fff;
	font-weight: 700;
	margin-bottom: 14px;
	box-shadow: 0 6px 16px rgba(88, 28, 135, .25);
}

.pp-step h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.pp-step p {
	font-size: 14px;
	color: var(--ink-muted);
	line-height: 1.6;
	margin: 0;
}

.pp-note {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	background: #f6f1fd;
	border: 1px solid #e9e2fb;
	border-radius: 14px;
	padding: 26px;
}

.pp-note h5 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.pp-note p {
	color: var(--ink-muted);
	line-height: 1.7;
	margin: 0;
}

.pp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: .3s ease;
	border: 1px solid transparent;
}

.pp-btn-primary {
	background: var(--pp-gradient);
	color: #fff;
	box-shadow: 0 8px 20px rgba(88, 28, 135, .25);
}

.pp-btn-primary:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(88, 28, 135, .32);
}

.pp-form-section {
	background: var(--surface-soft);
}

/* Fields themselves: components/forms.css (<x-web.field>). */
.pp-form {
	max-inline-size: 820px;
	margin-inline: auto;
	background: var(--surface);
	border: 1px solid var(--ui-line);
	border-radius: var(--radius-lg);
	padding-block: 36px;
	padding-inline: 32px;
	box-shadow: var(--shadow-md);
	text-align: start;
}

.pp-form-heading {
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
	margin-block: 28px 4px;
}

.pp-form-heading:first-child {
	margin-block-start: 0;
}

/* A section heading used as a <legend>: undo Bootstrap's legend sizing. */
.wf-fieldset > .pp-legend {
	float: none;
	inline-size: auto;
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
	margin-block: 28px 4px;
}

.pp-form-subtext {
	font-size: 14px;
	color: var(--ink-muted);
	margin-block: 0 18px;
}

.pp-fieldset {
	margin-block-end: 18px;
}

.pp-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.pp-other-field {
	margin-block-start: 12px;
}

.pp-other-field[hidden] {
	display: none;
}

/* The whole label is the hit area (44px+). */
.pp-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	min-block-size: 48px;
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--ink);
	cursor: pointer;
	background: var(--surface-soft);
	border: 1px solid var(--ui-line);
	border-radius: var(--radius-sm);
	padding-block: 10px;
	padding-inline: 12px;
	text-align: start;
	transition: border-color .15s ease, background .15s ease;
}

.pp-checkbox:hover {
	border-color: var(--violet-300);
	background: var(--violet-50);
}

.pp-checkbox:has(input:checked) {
	border-color: var(--violet-400);
	background: var(--violet-50);
}

.pp-checkbox input[type="checkbox"] {
	flex: none;
	inline-size: 20px;
	block-size: 20px;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	border: 2px solid var(--ink-subtle);
	border-radius: 5px;
	background: var(--surface);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: border-color .15s ease, background .15s ease;
}

.pp-checkbox input[type="checkbox"]::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 2px;
	background: var(--gradient-brand);
	transform: scale(0);
	transition: transform .12s ease;
}

.pp-checkbox input[type="checkbox"]:checked {
	border-color: var(--violet-600);
}

.pp-checkbox input[type="checkbox"]:checked::after {
	transform: scale(1);
}

.pp-checkbox input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--violet-600);
	outline-offset: 2px;
}

.pp-checkbox input[aria-invalid="true"] {
	border-color: var(--danger);
}

.pp-checkbox span {
	flex: 1;
}

.pp-consent {
	background: var(--surface-muted);
	padding: 14px;
	margin-block: 10px 8px;
}

.pp-consent a {
	color: var(--violet-700);
	text-decoration: underline;
}

.pp-submit {
	inline-size: 100%;
	min-block-size: 52px;
	margin-block-start: 12px;
	border: none;
	cursor: pointer;
}

@media (max-width: 992px) {
	.pp-grid,
	.pp-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.pp-checkbox-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.pp-grid,
	.pp-steps,
	.pp-checkbox-grid {
		grid-template-columns: 1fr;
	}

	.pp-form {
		padding-block: 24px;
		padding-inline: 18px;
	}
}

.pp-section.pp-section--flush {
	padding: 1px 0;
}
