/* 1VMCH Pricing Original Match Widget */
.onevmch-exact,
.onevmch-exact * {
	box-sizing: border-box;
}

.onevmch-exact {
	--ovm-navy: #021940;
	--ovm-blue: #125eca;
	--ovm-blue-hover: #0f4ba3;
	--ovm-light-bg: #f4f7fb;
	--ovm-white: #ffffff;
	--ovm-muted: #4a5a6d;
	--ovm-muted-dark: #b0bec5;
	--ovm-divider: #e1e8ed;
	--ovm-icon-bg: rgba(18, 94, 202, 0.2);
	--ovm-icon-color: #60a5fa;
	--ovm-button-top: #3e8eb9;
	--ovm-card-shadow: 0 10px 30px rgba(2, 25, 64, 0.04);
	--ovm-card-shadow-hover: 0 20px 40px rgba(2, 25, 64, 0.08);
	position: relative;
	width: 100%;
	color: var(--ovm-navy);
	font-family: inherit;
	line-height: 1.5;
	isolation: isolate;
}

.onevmch-exact a {
	text-decoration: none;
}

.onevmch-exact .ovm-band {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.onevmch-exact.ovm-width-contained .ovm-band {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.onevmch-exact .ovm-inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding-left: 12px;
	padding-right: 12px;
}

@media (max-width: 1399px) {
	.onevmch-exact .ovm-inner {
		max-width: 1140px;
	}
}

@media (max-width: 1199px) {
	.onevmch-exact .ovm-inner {
		max-width: 960px;
	}
}

@media (max-width: 991px) {
	.onevmch-exact .ovm-inner {
		max-width: 720px;
	}
}

@media (max-width: 767px) {
	.onevmch-exact .ovm-inner {
		max-width: 540px;
	}
}

.onevmch-exact .ovm-center {
	text-align: center;
}

.onevmch-exact .ovm-title {
	margin: 0 0 20px;
	font-family: inherit;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.onevmch-exact .ovm-copy {
	max-width: 700px;
	font-family: inherit;
	font-size: 1.1rem;
	line-height: 1.6;
}

.onevmch-exact .ovm-copy p {
	margin: 0 0 0.9em;
}

.onevmch-exact .ovm-copy p:last-child {
	margin-bottom: 0;
}

.onevmch-exact .ovm-center .ovm-copy {
	margin-left: auto;
	margin-right: auto;
}

.onevmch-exact .ovm-button-row {
	margin-top: 48px;
}

.onevmch-exact .ovm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 14px 32px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-family: inherit;
	font-size: inherit;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.onevmch-exact .ovm-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.onevmch-exact .ovm-btn-primary {
	background: linear-gradient(180deg, var(--ovm-button-top) 0%, var(--ovm-blue) 100%);
	color: var(--ovm-white);
}

.onevmch-exact .ovm-btn-primary:hover {
	color: var(--ovm-white);
	box-shadow: 0 8px 20px rgba(18, 94, 202, 0.2);
}

.onevmch-exact .ovm-btn-outline {
	border-color: var(--ovm-blue);
	background-color: transparent;
	color: var(--ovm-blue);
}

.onevmch-exact .ovm-btn-outline:hover {
	background-color: var(--ovm-blue);
	border-color: var(--ovm-blue);
	color: var(--ovm-white);
}

.onevmch-exact .ovm-btn-large {
	padding: 16px 40px;
	font-size: 1.1rem;
}

/* Hero */
.onevmch-exact .ovm-hero {
	padding: 120px 0 80px;
	background-color: var(--ovm-white);
}

.onevmch-exact .ovm-hero-title {
	color: var(--ovm-navy);
}

.onevmch-exact .ovm-hero-highlight {
	color: var(--ovm-blue);
}

.onevmch-exact .ovm-hero-copy {
	color: var(--ovm-muted);
}

/* Pricing */
.onevmch-exact .ovm-pricing {
	padding: 90px 0;
	background-color: var(--ovm-light-bg);
}

.onevmch-exact .ovm-pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.onevmch-exact .ovm-pricing-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 40px 30px;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 16px;
	background-color: var(--ovm-white);
	box-shadow: var(--ovm-card-shadow);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.onevmch-exact .ovm-pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--ovm-card-shadow-hover);
}

.onevmch-exact .ovm-pricing-card.is-featured {
	padding-top: 37px;
	border-top: 4px solid var(--ovm-blue);
}

.onevmch-exact .ovm-plan-title {
	margin: 0 0 20px;
	color: var(--ovm-navy);
	font-family: inherit;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
}

.onevmch-exact .ovm-plan-price {
	margin: 0 0 5px;
	color: var(--ovm-blue);
	font-family: inherit;
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
}

.onevmch-exact .ovm-plan-price.is-compact {
	margin-top: 15px;
	font-size: 2rem;
}

.onevmch-exact .ovm-plan-subtitle {
	margin: 0 0 25px;
	color: var(--ovm-muted);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.4;
}

.onevmch-exact .ovm-plan-feature {
	margin: 0 0 30px;
	padding-top: 20px;
	border-top: 1px solid var(--ovm-divider);
	color: var(--ovm-navy);
	font-family: inherit;
	font-weight: 600;
	line-height: 1.5;
}

.onevmch-exact .ovm-plan-button-wrap {
	margin-top: auto;
}

.onevmch-exact .ovm-plan-button-wrap .ovm-btn {
	width: 100%;
}

/* Why */
.onevmch-exact .ovm-why {
	padding: 90px 0;
	background-color: var(--ovm-navy);
	color: var(--ovm-white);
}

.onevmch-exact .ovm-why-grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 48px;
	align-items: center;
}

.onevmch-exact .ovm-why-title {
	color: var(--ovm-white);
}

.onevmch-exact .ovm-why-copy {
	margin-left: 0;
	color: var(--ovm-muted-dark);
}

.onevmch-exact .ovm-benefit-list {
	display: grid;
	gap: 20px;
}

.onevmch-exact .ovm-benefit {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 15px 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.03);
}

.onevmch-exact .ovm-benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background-color: var(--ovm-icon-bg);
	color: var(--ovm-icon-color);
}

.onevmch-exact .ovm-benefit-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
}

.onevmch-exact .ovm-benefit-text {
	color: var(--ovm-muted-dark);
	font-family: inherit;
	line-height: 1.6;
}

.onevmch-exact .ovm-benefit-text strong {
	color: var(--ovm-white);
}

/* Trusted */
.onevmch-exact .ovm-trusted {
	padding: 60px 0;
	background-color: var(--ovm-white);
}

.onevmch-exact .ovm-trusted-title {
	margin-bottom: 8px;
	color: var(--ovm-navy);
}

.onevmch-exact .ovm-trusted-copy {
	color: var(--ovm-muted);
}

.onevmch-exact .ovm-logo-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
	opacity: 0.6;
}

.onevmch-exact .ovm-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.onevmch-exact .ovm-logo-text {
	color: var(--ovm-muted);
	font-family: inherit;
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: 2px;
	line-height: 1.2;
	text-transform: uppercase;
}

.onevmch-exact .ovm-logo-image img {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
}

/* Testimonials */
.onevmch-exact .ovm-testimonials {
	padding: 90px 0;
	background-color: var(--ovm-navy);
}

.onevmch-exact .ovm-testimonials-head {
	margin-bottom: 48px;
}

.onevmch-exact .ovm-testimonials-title {
	color: var(--ovm-white);
}

.onevmch-exact .ovm-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.onevmch-exact .ovm-testimonial-card {
	height: 100%;
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.05);
}

.onevmch-exact .ovm-quote {
	display: block;
	width: 40px;
	height: 40px;
	margin-bottom: 20px;
	color: rgba(18, 94, 202, 0.5);
	fill: currentColor;
}

.onevmch-exact .ovm-testimonial-copy {
	margin: 0 0 30px;
	color: var(--ovm-muted-dark);
	font-family: inherit;
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.7;
}

.onevmch-exact .ovm-testimonial-copy p {
	margin: 0 0 0.8em;
}

.onevmch-exact .ovm-testimonial-copy p:last-child {
	margin-bottom: 0;
}

.onevmch-exact .ovm-author {
	display: flex;
	align-items: center;
	gap: 15px;
	color: var(--ovm-white);
	font-family: inherit;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.4;
}

.onevmch-exact .ovm-avatar,
.onevmch-exact .ovm-avatar-image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 999px;
}

.onevmch-exact .ovm-avatar {
	background-color: var(--ovm-blue);
	color: var(--ovm-white);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
}

.onevmch-exact .ovm-avatar-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CTA */
.onevmch-exact .ovm-cta {
	padding: 90px 0;
	background-color: var(--ovm-light-bg);
}

.onevmch-exact .ovm-cta-title {
	color: var(--ovm-navy);
}

.onevmch-exact .ovm-cta-copy {
	color: var(--ovm-muted);
}

/* Responsive */
@media (max-width: 1024px) {
	.onevmch-exact .ovm-pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.onevmch-exact .ovm-why-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 767px) {
	.onevmch-exact .ovm-inner {
		padding-left: 12px;
		padding-right: 12px;
	}

	.onevmch-exact .ovm-title {
		font-size: 2rem;
	}

	.onevmch-exact .ovm-hero {
		padding-top: 84px;
		padding-bottom: 64px;
	}

	.onevmch-exact .ovm-pricing,
	.onevmch-exact .ovm-why,
	.onevmch-exact .ovm-testimonials,
	.onevmch-exact .ovm-cta {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.onevmch-exact .ovm-trusted {
		padding-top: 52px;
		padding-bottom: 52px;
	}

	.onevmch-exact .ovm-pricing-grid,
	.onevmch-exact .ovm-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.onevmch-exact .ovm-pricing-card,
	.onevmch-exact .ovm-testimonial-card {
		padding: 30px 22px;
	}

	.onevmch-exact .ovm-benefit {
		align-items: flex-start;
		padding: 16px;
	}

	.onevmch-exact .ovm-btn,
	.onevmch-exact .ovm-plan-button-wrap .ovm-btn {
		width: 100%;
	}

	.onevmch-exact .ovm-logo-row {
		gap: 24px;
	}
}
