.rd-block {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	color: var(--rd-text);
	font-family: inherit;
}

.rd-block,
.rd-block * {
	box-sizing: border-box;
}

.rd-container {
	width: min(calc(100% - 40px), var(--rd-container));
	margin-inline: auto;
}

.rd-section {
	padding-block: var(--rd-section-space);
}

.rd-eyebrow {
	margin: 0 0 20px;
	color: var(--rd-blue);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0;
}

.rd-eyebrow--inverse {
	color: rgba(255, 255, 255, 0.78);
}

.rd-section-header {
	max-width: 680px;
}

.rd-section-header--wide {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
	align-items: end;
	gap: clamp(36px, 6vw, 90px);
	max-width: none;
}

.rd-section-title {
	margin: 0;
	color: var(--rd-text);
	font-size: clamp(40px, 4vw, 56px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.rd-section-copy {
	margin: 24px 0 0;
	color: var(--rd-text-muted);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.65;
}

.rd-section-header--wide .rd-section-copy {
	margin-top: 0;
}

.rd-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.rd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 178px;
	min-height: 58px;
	padding: 16px 30px;
	border: 1.5px solid var(--rd-blue);
	border-radius: 999px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rd-button--primary {
	background: var(--rd-blue);
	color: var(--rd-white);
	box-shadow: none;
}

.rd-button--secondary {
	background: var(--rd-white);
	color: var(--rd-blue);
	box-shadow: 0 5px 14px rgba(0, 55, 251, 0.24);
}

.rd-button--inverse {
	border-color: var(--rd-white);
	background: var(--rd-white);
	color: var(--rd-blue);
	box-shadow: none;
}

.rd-button--inverse-outline {
	border-color: rgba(255, 255, 255, 0.68);
	background: transparent;
	color: var(--rd-white);
}

.rd-button--primary:hover {
	border-color: var(--rd-blue-hover);
	background: var(--rd-blue-hover);
	color: var(--rd-white);
	box-shadow: 0 8px 18px rgba(0, 55, 251, 0.22);
	transform: translateY(-1px);
}

.rd-button--secondary:hover {
	background: var(--rd-blue-light);
	color: var(--rd-blue);
	box-shadow: 0 7px 18px rgba(0, 55, 251, 0.3);
	transform: translateY(-1px);
}

.rd-button--inverse:hover {
	border-color: var(--rd-white);
	background: var(--rd-blue-light);
	color: var(--rd-blue-hover);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
	transform: translateY(-1px);
}

.rd-button:focus-visible,
.rd-faq summary:focus-visible {
	outline: 3px solid rgba(0, 55, 251, 0.34);
	outline-offset: 4px;
}

.rd-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--rd-blue);
	color: var(--rd-white);
}

.rd-check svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 991px) {
	.rd-section {
		padding-block: var(--rd-section-space-tablet);
	}

	.rd-section-header--wide {
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
		gap: 24px;
	}

	.rd-section-header--wide .rd-section-copy {
		max-width: 680px;
	}
}

@media (max-width: 767px) {
	.rd-container {
		width: calc(100% - 28px);
	}

	.rd-section {
		padding-block: var(--rd-section-space-mobile);
	}

	.rd-section-title {
		font-size: clamp(34px, 9.5vw, 44px);
		line-height: 1.1;
		letter-spacing: -0.03em;
	}

	.rd-section-copy {
		font-size: 17px;
		line-height: 1.6;
	}
}

@media (max-width: 479px) {
	.rd-actions {
		flex-direction: column;
	}

	.rd-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rd-button {
		transition: none;
	}
}
