.vcas-page {
	--vcas-primary: #f59e0b;
	--vcas-primary-dark: #92400e;
	--vcas-accent: #2563eb;
	--vcas-ink: #0f172a;
	--vcas-muted: #64748b;
	--vcas-soft: #fff7ed;
	--vcas-border: rgba(245, 158, 11, 0.18);
	--vcas-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
	font-family: inherit;
	color: var(--vcas-ink);
	background: linear-gradient(180deg, #fffaf4 0%, #ffffff 34%, #f8fbff 100%);
	overflow: hidden;
}

.vcas-page *,
.vcas-page *::before,
.vcas-page *::after {
	box-sizing: border-box;
}

.vcas-page a {
	text-decoration: none;
}

.vcas-page img {
	display: block;
	max-width: 100%;
	height: auto;
}

.vcas-container {
	width: min(1220px, calc(100% - 40px));
	margin: 0 auto;
}

.vcas-section {
	position: relative;
	padding: clamp(70px, 8vw, 110px) 0;
}

.vcas-hero {
	position: relative;
	min-height: 680px;
	padding: 118px 0 92px;
	isolation: isolate;
	background-color: #111827;
	background-image: linear-gradient(92deg, rgba(15, 23, 42, 0.94), rgba(146, 64, 14, 0.76), rgba(37, 99, 235, 0.5)), var(--vcas-hero-image);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.vcas-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 16% 22%, rgba(245, 158, 11, 0.34), transparent 30%),
		radial-gradient(circle at 82% 68%, rgba(37, 99, 235, 0.22), transparent 28%),
		linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.46));
}

.vcas-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
	gap: clamp(32px, 6vw, 80px);
	align-items: center;
}

.vcas-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 8px 14px;
	border: 1px solid rgba(245, 158, 11, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--vcas-primary-dark);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.vcas-eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vcas-primary), var(--vcas-accent));
	box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}

.vcas-hero .vcas-eyebrow,
.vcas-why .vcas-eyebrow,
.vcas-cta .vcas-eyebrow {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.14);
	color: #fde68a;
	backdrop-filter: blur(12px);
}

.vcas-hero h1,
.vcas-section-heading h2,
.vcas-why__box h2,
.vcas-cta__box h2 {
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.vcas-hero h1 {
	max-width: 780px;
	color: #ffffff;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 0.99;
	text-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.vcas-hero p,
.vcas-section-heading p,
.vcas-rich-text p,
.vcas-benefit-card p,
.vcas-feature-card p,
.vcas-usecase-card p,
.vcas-why__box p,
.vcas-cta__box p {
	color: var(--vcas-muted);
	line-height: 1.72;
}

.vcas-hero p {
	max-width: 680px;
	margin: 22px 0 0;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	color: rgba(255, 255, 255, 0.9);
}

.vcas-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.vcas-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 900;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.vcas-btn--primary {
	background: linear-gradient(135deg, var(--vcas-primary), #f97316);
	color: #ffffff;
	box-shadow: 0 18px 38px rgba(245, 158, 11, 0.28);
}

.vcas-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.46);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	backdrop-filter: blur(12px);
}

.vcas-btn--light {
	background: #ffffff;
	color: var(--vcas-primary-dark);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.vcas-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.vcas-hero__chips span {
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 800;
	backdrop-filter: blur(12px);
}

.vcas-hero__visual {
	display: grid;
	gap: 14px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
	color: #ffffff;
}

.vcas-logo-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 148px;
	padding: 24px;
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.vcas-logo-frame img {
	max-height: 96px;
	object-fit: contain;
}

.vcas-hero__visual strong {
	font-size: 24px;
	font-weight: 950;
	letter-spacing: -0.03em;
}

.vcas-hero__visual span {
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.6;
}

.vcas-intro {
	background: #ffffff;
}

.vcas-intro__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(30px, 5vw, 70px);
	align-items: start;
}

.vcas-section-heading {
	max-width: 820px;
}

.vcas-section-heading h2 {
	font-size: clamp(2rem, 4vw, 3.35rem);
	color: var(--vcas-ink);
}

.vcas-section-heading p {
	max-width: 760px;
	margin: 16px auto 0;
	font-size: 1.02rem;
}

.vcas-center {
	margin: 0 auto 44px;
	text-align: center;
}

.vcas-rich-text {
	display: grid;
	gap: 18px;
	padding: 30px;
	border: 1px solid var(--vcas-border);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.vcas-rich-text p {
	margin: 0;
	font-size: 1.02rem;
}

.vcas-metric-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 44px;
}

.vcas-metric-card,
.vcas-benefit-card,
.vcas-feature-card,
.vcas-usecase-card,
.vcas-price-card {
	border: 1px solid var(--vcas-border);
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.vcas-metric-card {
	padding: 24px;
}

.vcas-metric-card strong {
	display: block;
	color: var(--vcas-primary-dark);
	font-size: clamp(1.8rem, 3vw, 2.55rem);
	font-weight: 950;
	letter-spacing: -0.04em;
}

.vcas-metric-card span {
	display: block;
	margin-top: 8px;
	color: var(--vcas-muted);
	font-weight: 700;
	line-height: 1.45;
}

.vcas-benefits,
.vcas-usecases {
	background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.vcas-features,
.vcas-pricing {
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.vcas-benefit-grid,
.vcas-feature-grid,
.vcas-usecase-grid,
.vcas-pricing-grid {
	display: grid;
	gap: 22px;
}

.vcas-benefit-grid,
.vcas-usecase-grid,
.vcas-pricing-grid {
	grid-template-columns: repeat(4, 1fr);
}

.vcas-feature-grid {
	grid-template-columns: repeat(3, 1fr);
}

.vcas-benefit-card,
.vcas-feature-card,
.vcas-usecase-card {
	padding: 28px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vcas-benefit-card:hover,
.vcas-feature-card:hover,
.vcas-usecase-card:hover,
.vcas-price-card:hover {
	transform: translateY(-5px);
	border-color: rgba(245, 158, 11, 0.36);
	box-shadow: var(--vcas-shadow);
}

.vcas-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(37, 99, 235, 0.12));
	font-size: 1.55rem;
}

.vcas-benefit-card h3,
.vcas-feature-card h3,
.vcas-usecase-card h3,
.vcas-price-card h3 {
	margin: 0 0 10px;
	color: var(--vcas-ink);
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.vcas-benefit-card p,
.vcas-feature-card p,
.vcas-usecase-card p {
	margin: 0;
}

.vcas-usecase-card {
	position: relative;
	padding-top: 34px;
}

.vcas-usecase-card::before {
	content: "";
	position: absolute;
	left: 28px;
	top: 22px;
	width: 42px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--vcas-primary), var(--vcas-accent));
}

.vcas-price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vcas-price-card.is-featured {
	border-color: rgba(245, 158, 11, 0.52);
	box-shadow: 0 28px 80px rgba(245, 158, 11, 0.18);
	transform: translateY(-10px);
}

.vcas-plan-hidden-id {
	display: none;
}

.vcas-plan-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 7px 11px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vcas-primary), #f97316);
	color: #ffffff;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.vcas-price-card__top > span {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(245, 158, 11, 0.12);
	color: var(--vcas-primary-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.vcas-price-card__top h3 {
	margin: 16px 0 10px;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #071733;
}

.vcas-price-card__top p {
	min-height: 94px;
	margin: 0;
	color: var(--vcas-muted);
	line-height: 1.65;
}

.vcas-plan-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 18px 0;
}

.vcas-plan-meta strong {
	padding: 10px;
	border-radius: 14px;
	background: #fff7ed;
	font-size: 13px;
	color: var(--vcas-primary-dark);
	text-align: center;
}

.vcas-price-line {
	display: flex;
	align-items: baseline;
	gap: 8px;
	max-width: 100%;
	margin-bottom: 12px;
	overflow: hidden;
	white-space: nowrap;
}

.vcas-price-value {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 100%;
	color: #0f172a;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
}

.vcas-price-line.is-long-price .vcas-price-value {
	font-size: 25px;
}

.vcas-price-line.is-xlong-price .vcas-price-value {
	font-size: 23px;
}

.vcas-cycle-label {
	flex: 0 0 auto;
	color: var(--vcas-muted);
	font-weight: 700;
}

.vcas-cycle-select {
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--vcas-border);
	border-radius: 14px;
	background: #ffffff;
	color: #0f172a;
	font-weight: 800;
	outline: none;
}

.vcas-price-card ul,
.vcas-why__box ul {
	display: grid;
	gap: 10px;
	margin: 18px 0 24px;
	padding: 0;
	list-style: none;
}

.vcas-price-card li,
.vcas-why__box li {
	position: relative;
	padding-left: 26px;
	color: var(--vcas-muted);
	font-weight: 700;
	line-height: 1.55;
}

.vcas-price-card li::before,
.vcas-why__box li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #059669;
	font-weight: 950;
}

.vcas-plan-action {
	width: 100%;
	margin-top: auto;
}

.vcas-why,
.vcas-cta {
	background: #ffffff;
}

.vcas-why__box,
.vcas-cta__box {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 36px;
	align-items: center;
	padding: 46px;
	border-radius: 34px;
	background: linear-gradient(135deg, #111827, #92400e 54%, #f59e0b);
	box-shadow: 0 26px 80px rgba(146, 64, 14, 0.22);
	color: #ffffff;
}

.vcas-why__box h2,
.vcas-cta__box h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	color: #ffffff;
}

.vcas-why__box p,
.vcas-cta__box p {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.86);
}

.vcas-why__box ul {
	margin: 0;
}

.vcas-why__box li {
	color: rgba(255, 255, 255, 0.9);
}

.vcas-why__box li::before {
	color: #fde68a;
}

.vcas-cta {
	padding-top: 24px;
}

.vcas-cta__box {
	grid-template-columns: 1fr auto;
	background: linear-gradient(135deg, #0f172a, #1d4ed8 58%, #f59e0b);
}

.vcas-cta__box p {
	max-width: 760px;
}

@media (max-width: 1180px) {
	.vcas-benefit-grid,
	.vcas-usecase-grid,
	.vcas-pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vcas-price-card.is-featured {
		transform: none;
	}
}

@media (max-width: 940px) {
	.vcas-hero__grid,
	.vcas-intro__grid,
	.vcas-why__box,
	.vcas-cta__box {
		grid-template-columns: 1fr;
	}

	.vcas-hero {
		min-height: auto;
		padding: 96px 0 76px;
	}

	.vcas-metric-grid,
	.vcas-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vcas-hero__visual {
		max-width: 420px;
	}
}

@media (max-width: 640px) {
	.vcas-container {
		width: min(100% - 24px, 1220px);
	}

	.vcas-section {
		padding: 62px 0;
	}

	.vcas-hero {
		padding: 76px 0 58px;
	}

	.vcas-hero h1 {
		font-size: clamp(38px, 13vw, 56px);
	}

	.vcas-hero__actions,
	.vcas-btn {
		width: 100%;
	}

	.vcas-metric-grid,
	.vcas-benefit-grid,
	.vcas-feature-grid,
	.vcas-usecase-grid,
	.vcas-pricing-grid {
		grid-template-columns: 1fr;
	}

	.vcas-rich-text,
	.vcas-benefit-card,
	.vcas-feature-card,
	.vcas-usecase-card,
	.vcas-price-card,
	.vcas-why__box,
	.vcas-cta__box,
	.vcas-hero__visual {
		border-radius: 24px;
	}

	.vcas-why__box,
	.vcas-cta__box {
		padding: 30px;
	}

	.vcas-price-value {
		font-size: 30px;
	}
}
