.hrt-avp,
.hrt-avp * {
	box-sizing: border-box;
}

.hrt-avp {
	width: 100%;
	background: #fffdf9;
	color: #000;
	font-family: inherit;
}

.hrt-avp__inner {
	width: 100%;
	margin: 0 auto;
}

.hrt-avp__header {
	text-align: center;
}

.hrt-avp__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	padding: 7px 15px;
	border-radius: 60px;
	background: #fff1db;
	color: #ff9600;
	font-weight: 700;
}

.hrt-avp__badge-icon,
.hrt-avp__step-icon,
.hrt-avp__notice-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hrt-avp svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hrt-avp__heading {
	margin: 0;
	font-family: inherit;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	line-height: 1.15;
}

.hrt-avp__highlight {
	color: #ff9600;
}

.hrt-avp__header-description {
	width: 100%;
	max-width: 780px;
	margin: 14px auto 0;
	color: #4a4a4a;
	font-size: 1rem;
	line-height: 1.7;
}

.hrt-avp__header-description p {
	margin: 0;
}

.hrt-avp__header-description a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.hrt-avp__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.hrt-avp__card {
	position: relative;
	min-width: 0;
	padding: 28px 24px;
	border: 1px solid #f2e6d6;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hrt-avp__card:hover {
	transform: translateY(-5px);
	border-color: #ff9600;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.hrt-avp__card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hrt-avp__card-link:focus-visible {
	outline: 3px solid rgba(255, 150, 0, 0.35);
	outline-offset: 5px;
	border-radius: 14px;
}

.hrt-avp__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: #fff1db;
	color: #ff9600;
	font-weight: 800;
}

.hrt-avp__step-icon {
	margin-bottom: 12px;
	color: #ff9600;
	font-size: 22px;
}

.hrt-avp__title {
	margin: 0 0 8px;
	color: #000;
	font-family: inherit;
	font-size: 1.25rem;
	line-height: 1.3;
}

.hrt-avp__description {
	color: #4a4a4a;
	font-size: 0.95rem;
	line-height: 1.65;
}

.hrt-avp__description p {
	margin: 0;
}

.hrt-avp__cta {
	margin-top: 30px;
	text-align: center;
}

.hrt-avp__actions {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.hrt-avp__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	color: #000;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.hrt-avp__button--primary {
	border-color: #ff9600;
	background: #ff9600;
}

.hrt-avp__button--primary:hover {
	border-color: #df7615;
	background: #df7615;
	color: #000;
}

.hrt-avp__button--secondary {
	border-color: #25d366;
	background: #25d366;
}

.hrt-avp__button--secondary:hover {
	border-color: #1eba59;
	background: #1eba59;
	color: #000;
}

.hrt-avp__button:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.hrt-avp__button:focus-visible {
	outline: 3px solid rgba(255, 150, 0, .4);
	outline-offset: 3px;
}

.hrt-avp__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	font-size: 16px;
	line-height: 1;
}

.hrt-avp__cta-description {
	max-width: 850px;
	margin: 16px auto 0;
	color: #777;
	font-size: 14px;
	line-height: 1.65;
}

.hrt-avp__cta-description > :first-child {
	margin-top: 0;
}

.hrt-avp__cta-description > :last-child {
	margin-bottom: 0;
}

.hrt-avp__notice {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	padding: 17px 22px;
	border-radius: 16px;
	background: #fff1db;
	color: #000;
	text-align: center;
	line-height: 1.6;
}

.hrt-avp__notice p {
	margin: 0;
}

.hrt-avp__notice-icon {
	flex: 0 0 auto;
	margin-top: 0.2em;
	color: #ff9600;
	font-size: 20px;
}

@media (max-width: 1024px) {
	.hrt-avp__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.hrt-avp__header-description {
		font-size: 0.95rem;
	}

	.hrt-avp__grid {
		grid-template-columns: 1fr;
	}

	.hrt-avp__notice {
		justify-content: flex-start;
		text-align: left;
	}

	.hrt-avp__button {
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrt-avp__card,
	.hrt-avp__button {
		transition: none;
	}

	.hrt-avp__card:hover,
	.hrt-avp__button:hover {
		transform: none;
	}
}
