.vrx-oef {
	--vrx-bg: #ffffff;
	--vrx-surface: #f8fafc;
	--vrx-border: #e5e7eb;
	--vrx-text: #111827;
	--vrx-muted: #6b7280;
	--vrx-primary: #111827;
	--vrx-primary-hover: #111827;
	--vrx-primary-soft: #f3f4f6;
	--vrx-danger: #b91c1c;
	--vrx-success: #047857;
	max-width: 980px;
	margin: 40px auto;
	padding: 0 16px;
	color: var(--vrx-text);
	font-family: inherit;
}

.vrx-oef * {
	box-sizing: border-box;
}

.vrx-oef-card {
	background: var(--vrx-bg);
	border: 1px solid var(--vrx-border);
	border-radius: 28px;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.vrx-oef-header {
	padding: 34px;
	background:
		radial-gradient(circle at top right, rgba(17,24,39,0.09), transparent 34%),
		linear-gradient(135deg, #ffffff, #f8fafc);
	border-bottom: 1px solid var(--vrx-border);
}

.vrx-oef-eyebrow {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--vrx-muted);
}

.vrx-oef h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.08;
}

.vrx-oef h3 {
	margin: 0 0 10px;
	font-size: 24px;
}

.vrx-oef h4 {
	margin: 0 0 14px;
	font-size: 18px;
}

.vrx-oef-header p,
.vrx-oef-help {
	margin: 0;
	color: var(--vrx-muted);
	line-height: 1.65;
}

.vrx-oef-contact-note {
	margin: 0;
	padding: 16px 34px;
	background: #f9fafb;
	border-bottom: 1px solid var(--vrx-border);
	color: var(--vrx-muted);
	line-height: 1.6;
}

.vrx-oef-contact-note a {
	font-weight: 800;
	color: var(--vrx-text);
	text-decoration: none;
}

.vrx-oef-contact-note a:hover {
	text-decoration: underline;
}

.vrx-oef-info-note {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1d4ed8;
	font-weight: 700;
}

.vrx-oef-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-bottom: 1px solid var(--vrx-border);
	background: #fff;
}

.vrx-oef-step {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 10px;
	color: var(--vrx-muted);
	font-weight: 700;
	border-right: 1px solid var(--vrx-border);
}

.vrx-oef-step:last-child {
	border-right: none;
}

.vrx-oef-step span {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--vrx-primary-soft);
	color: var(--vrx-text);
	font-size: 13px;
}

.vrx-oef-step.is-active {
	color: var(--vrx-text);
	background: #f9fafb;
}

.vrx-oef-step.is-active span {
	background: var(--vrx-primary);
	color: #fff;
}

.vrx-oef-panel {
	display: none;
	padding: 34px;
}

.vrx-oef-panel.is-active {
	display: block;
}

.vrx-oef-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.vrx-oef-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-weight: 700;
}

.vrx-oef-field span {
	font-size: 14px;
}

.vrx-oef-field small {
	color: var(--vrx-muted);
	font-weight: 400;
	line-height: 1.5;
}

.vrx-oef input[type="text"],
.vrx-oef input[type="email"],
.vrx-oef input[type="number"],
.vrx-oef textarea {
	width: 100%;
	border: 1px solid var(--vrx-border);
	border-radius: 14px;
	padding: 14px 15px;
	font: inherit;
	background: #fff;
	color: var(--vrx-text);
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.vrx-oef input:focus,
.vrx-oef textarea:focus {
	border-color: #111827;
	box-shadow: 0 0 0 4px rgba(17,24,39,0.08);
}

.vrx-oef-choice-group {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 24px 0;
}

.vrx-oef-choice,
.vrx-oef-item,
.vrx-oef-checkbox {
	display: flex;
	gap: 12px;
	padding: 18px;
	border: 1px solid var(--vrx-border);
	border-radius: 18px;
	background: #fff;
	cursor: pointer;
}

.vrx-oef-choice input,
.vrx-oef-checkbox input {
	margin-top: 4px;
}

.vrx-oef-choice strong {
	display: block;
	margin-bottom: 4px;
}

.vrx-oef-choice small {
	color: var(--vrx-muted);
	line-height: 1.5;
}

.vrx-oef-choice:has(input:checked) {
	border-color: var(--vrx-primary);
	background: #f9fafb;
}

.vrx-oef-choice.is-disabled {
	opacity: .58;
	cursor: not-allowed;
	background: #f3f4f6;
}

.vrx-oef-choice.is-disabled input {
	cursor: not-allowed;
}

.vrx-oef-order-summary,
.vrx-oef-review {
	margin-top: 22px;
	padding: 18px;
	border: 1px solid var(--vrx-border);
	border-radius: 18px;
	background: var(--vrx-surface);
}

.vrx-oef-items-wrap {
	margin: 22px 0;
	padding: 22px;
	border: 1px solid var(--vrx-border);
	border-radius: 20px;
	background: var(--vrx-surface);
}

.vrx-oef-item {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.vrx-oef-item-main {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.vrx-oef-item-title {
	font-weight: 700;
}

.vrx-oef-item-meta {
	color: var(--vrx-muted);
	font-size: 13px;
	margin-top: 4px;
}

.vrx-oef-qty {
	width: 110px !important;
}

.vrx-oef-excluded-summary {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	color: #9a3412;
}

.vrx-oef-excluded-summary ul {
	margin: 8px 0 0 18px;
}

.vrx-oef-item.is-excluded {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #6b7280;
	cursor: not-allowed;
	opacity: .78;
}

.vrx-oef-item.is-excluded input {
	cursor: not-allowed;
}

.vrx-oef-excluded-note {
	margin-top: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #9a3412;
}

.vrx-oef-statement {
	margin-top: 22px;
	padding: 20px;
	border-radius: 20px;
	background: #f9fafb;
	border: 1px solid var(--vrx-border);
}

.vrx-oef-statement p {
	margin-top: 0;
	line-height: 1.65;
}

.vrx-oef-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.vrx-oef-btn {
	border: 0;
	border-radius: 999px;
	padding: 14px 22px;
	font-weight: 800;
	cursor: pointer;
	font: inherit;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.vrx-oef-btn:hover {
	transform: translateY(-1px);
}

.vrx-oef-btn-primary:hover {
	background: var(--vrx-primary-hover);
}

.vrx-oef-btn-primary {
	background: var(--vrx-primary);
	color: #fff;
	box-shadow: 0 12px 30px rgba(17,24,39,.18);
}

.vrx-oef-btn-secondary {
	background: var(--vrx-primary-soft);
	color: var(--vrx-text);
}

.vrx-oef-btn[disabled] {
	opacity: .55;
	cursor: not-allowed;
	transform: none;
}

.vrx-oef-alert,
.vrx-oef-result {
	margin-top: 18px;
	padding: 16px 18px;
	border-radius: 16px;
	line-height: 1.6;
}

.vrx-oef-alert-error {
	background: #fef2f2;
	color: var(--vrx-danger);
	border: 1px solid #fecaca;
}

.vrx-oef-alert-success {
	background: #ecfdf5;
	color: var(--vrx-success);
	border: 1px solid #bbf7d0;
}

.vrx-oef-hp {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
}

.vrx-oef-turnstile {
	margin-top: 18px;
}

.vrx-oef-turnstile .vrx-oef-help {
	margin-top: 8px;
}

.vrx-oef-review table {
	width: 100%;
	border-collapse: collapse;
}

.vrx-oef-review th,
.vrx-oef-review td {
	text-align: left;
	padding: 10px;
	border-bottom: 1px solid var(--vrx-border);
	vertical-align: top;
}

.vrx-oef-review th {
	width: 220px;
	color: var(--vrx-muted);
}

@media (max-width: 760px) {
	.vrx-oef-grid,
	.vrx-oef-choice-group {
		grid-template-columns: 1fr;
	}

	.vrx-oef-header,
	.vrx-oef-panel {
		padding: 24px;
	}

	.vrx-oef-contact-note {
		padding: 14px 24px;
	}

	.vrx-oef-steps {
		grid-template-columns: 1fr;
	}

	.vrx-oef-step {
		justify-content: flex-start;
		border-right: none;
		border-bottom: 1px solid var(--vrx-border);
	}

	.vrx-oef-item {
		align-items: flex-start;
		flex-direction: column;
	}
}
