/* Video consultation booking — ZenOnco teal + accent orange CTAs */
:root {
	--vc-teal: #087A78;
	--vc-teal-dark: #065e5c;
	--vc-teal-soft: #e4f6f5;
	--vc-accent: #F47322;
	--vc-accent-hover: #d95f12;
	--vc-ink: #1a2b2a;
	--vc-muted: #5a6b6a;
	--vc-line: #d5e3e2;
	--vc-bg: #f4f9f8;
	--vc-white: #fff;
	--vc-danger: #b42318;
	--vc-radius: 14px;
	--vc-font: "Poppins", "Segoe UI", sans-serif;
}

.vc-page {
	font-family: var(--vc-font);
	color: var(--vc-ink);
	background: var(--vc-white);
}

.vc-page .container {
	max-width: 1040px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.vc-eyebrow {
	margin: 0 0 8px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--vc-teal);
}

/* Hero — full-bleed consultation photo */
.vc-hero {
	position: relative;
	min-height: min(78vh, 620px);
	display: flex;
	align-items: flex-end;
	padding: 72px 0 64px;
	overflow: hidden;
	color: var(--vc-white);
}

.vc-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.vc-hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 65% center;
	display: block;
	transform: scale(1.02);
	animation: vcHeroZoom 12s ease-out both;
}

@keyframes vcHeroZoom {
	from { transform: scale(1.08); }
	to { transform: scale(1.02); }
}

.vc-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 32, 31, 0.92) 0%, rgba(6, 55, 54, 0.78) 42%, rgba(8, 80, 78, 0.35) 72%, rgba(8, 90, 88, 0.2) 100%),
		linear-gradient(180deg, rgba(4, 28, 27, 0.35) 0%, transparent 35%, rgba(4, 28, 27, 0.55) 100%);
}

.vc-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 560px;
	animation: vcFadeUp 0.7s ease both;
}

.vc-hero__secure {
	margin: 14px 0 0;
	font-size: 0.82rem;
	opacity: 0.85;
}

.vc-hero__brand {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0 0 12px;
}

.vc-hero__title {
	font-size: clamp(2.1rem, 4.8vw, 3.15rem);
	font-weight: 700;
	line-height: 1.12;
	margin: 0 0 14px;
	max-width: 14ch;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.vc-hero__text {
	font-size: 1.05rem;
	line-height: 1.55;
	margin: 0 0 20px;
	max-width: 34em;
	opacity: 0.94;
}

.vc-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.vc-hero__pills li {
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	font-size: 0.82rem;
	font-weight: 600;
	backdrop-filter: blur(6px);
}

@media (max-width: 699px) {
	.vc-hero {
		min-height: min(70vh, 520px);
		align-items: flex-end;
		padding: 56px 0 48px;
	}
	.vc-hero__photo {
		object-position: 72% center;
	}
	.vc-hero__shade {
		background:
			linear-gradient(180deg, rgba(4, 28, 27, 0.25) 0%, rgba(4, 36, 35, 0.55) 40%, rgba(4, 32, 31, 0.92) 100%),
			linear-gradient(90deg, rgba(4, 32, 31, 0.65) 0%, rgba(4, 32, 31, 0.25) 100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-hero__photo {
		animation: none;
		transform: none;
	}
}

/* Legacy grid/aside styles no longer used in markup — keep meter below */

.vc-form__meter {
	height: 4px;
	background: var(--vc-line);
	border-radius: 999px;
	overflow: hidden;
	margin: -10px 0 10px;
}

.vc-form__meter-fill {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--vc-teal), var(--vc-accent));
	border-radius: 999px;
	transition: width 0.25s ease;
}

.vc-form__step-label {
	margin: 0 0 18px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--vc-teal-dark);
}

.vc-panel.is-active {
	animation: vcFadeUp 0.35s ease both;
}

.vc-summary__fee {
	display: inline-block;
	margin-top: 6px;
	font-weight: 700;
	color: var(--vc-accent-hover);
}

.vc-trust {
	list-style: none;
	margin: 18px 0 0;
	padding: 14px 0 0;
	border-top: 1px solid var(--vc-line);
	display: grid;
	gap: 8px;
}

.vc-trust li {
	position: relative;
	padding-left: 22px;
	font-size: 0.84rem;
	color: var(--vc-muted);
	line-height: 1.4;
}

.vc-trust li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--vc-teal);
	font-weight: 700;
}

.vc-upload.is-dragover .vc-upload__label {
	border-color: var(--vc-accent);
	background: #fff8f3;
}

.vc-btn--compact {
	padding: 12px 20px;
	font-size: 0.92rem;
}

.vc-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--vc-line);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
}

.vc-sticky[hidden] {
	display: none !important;
}

.vc-sticky__inner {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.vc-sticky__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.vc-sticky__copy strong {
	font-size: 0.92rem;
	color: var(--vc-ink);
}

.vc-sticky__copy span {
	font-size: 0.78rem;
	color: var(--vc-muted);
}

@media (min-width: 900px) {
	.vc-sticky {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-hero__photo,
	.vc-form,
	.vc-panel.is-active,
	.vc-form__meter-fill {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}
}

.vc-page {
	padding-bottom: 72px;
}

@media (min-width: 900px) {
	.vc-page {
		padding-bottom: 0;
	}
}

@keyframes vcFadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.vc-section {
	padding: 56px 0;
}

.vc-section--muted {
	background: var(--vc-bg);
}

.vc-section--book {
	padding-top: 40px;
	padding-bottom: 64px;
	margin-top: -28px;
	position: relative;
	z-index: 2;
}

.vc-section__title {
	font-size: clamp(1.45rem, 2.8vw, 1.9rem);
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--vc-ink);
}

.vc-section__lead {
	color: var(--vc-muted);
	margin: 0 0 22px;
	max-width: 40em;
	line-height: 1.5;
}

.vc-book__intro {
	text-align: center;
	margin-bottom: 20px;
}

.vc-book__intro .vc-section__lead {
	margin-left: auto;
	margin-right: auto;
}

/* Form */
.vc-form {
	background: var(--vc-white);
	border: 1px solid var(--vc-line);
	border-radius: 18px;
	padding: 22px 18px 26px;
	box-shadow: 0 16px 40px rgba(8, 122, 120, 0.1);
	animation: vcFadeUp 0.5s ease 0.08s both;
	max-width: 720px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.vc-form {
		padding: 28px 32px 32px;
	}
}

.vc-form__progress {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 26px;
}

.vc-form__step {
	border: 1px solid var(--vc-line);
	background: var(--vc-bg);
	color: var(--vc-muted);
	border-radius: 999px;
	padding: 10px 8px;
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.vc-form__step span {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 122, 120, 0.12);
	color: var(--vc-teal-dark);
	font-size: 0.72rem;
}

.vc-form__step.is-active {
	background: var(--vc-teal);
	border-color: var(--vc-teal);
	color: #fff;
}

.vc-form__step.is-active span {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.vc-form__step.is-done {
	border-color: var(--vc-teal);
	color: var(--vc-teal-dark);
}

.vc-panel[hidden] {
	display: none !important;
}

.vc-form-grid {
	display: grid;
	gap: 14px 16px;
}

@media (min-width: 640px) {
	.vc-form-grid {
		grid-template-columns: 1fr 1fr;
	}
	.vc-field--full {
		grid-column: 1 / -1;
	}
}

.vc-field {
	display: block;
	margin-bottom: 0;
}

.vc-field > span,
.vc-field legend {
	display: block;
	font-size: 0.86rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--vc-ink);
}

.vc-optional {
	font-weight: 400;
	color: var(--vc-muted);
}

.vc-ist {
	font-weight: 600;
	color: var(--vc-teal);
	font-size: 0.78rem;
	margin-left: 4px;
}

.vc-field input[type="text"],
.vc-field input[type="email"],
.vc-field input[type="tel"],
.vc-field textarea {
	width: 100%;
	border: 1px solid var(--vc-line);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--vc-ink);
	background: #fff;
	box-sizing: border-box;
}

.vc-field textarea {
	resize: vertical;
	min-height: 84px;
}

.vc-field input:focus,
.vc-field textarea:focus {
	outline: 2px solid rgba(244, 115, 34, 0.35);
	border-color: var(--vc-accent);
}

.vc-phone {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--vc-line);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.vc-phone__cc {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 56px;
	padding: 0 12px;
	background: var(--vc-bg);
	font-weight: 600;
	color: var(--vc-muted);
	border-right: 1px solid var(--vc-line);
	flex-shrink: 0;
}

.vc-phone input {
	border: none !important;
	border-radius: 0 !important;
	flex: 1;
	min-width: 0;
	box-shadow: none !important;
}

.vc-phone:focus-within {
	outline: 2px solid rgba(244, 115, 34, 0.35);
	border-color: var(--vc-accent);
}

.vc-field--radio {
	border: none;
	padding: 0;
	margin: 0;
}

.vc-radio-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.vc-radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	cursor: pointer;
	border: 1px solid var(--vc-line);
	border-radius: 999px;
	padding: 10px 14px;
	background: #fff;
}

.vc-radio:has(input:checked) {
	border-color: var(--vc-teal);
	background: var(--vc-teal-soft);
	color: var(--vc-teal-dark);
}

.vc-more {
	margin: 18px 0 20px;
	border: 1px dashed var(--vc-line);
	border-radius: 12px;
	padding: 4px 14px 4px;
	background: var(--vc-bg);
}

.vc-more summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 0.92rem;
	padding: 12px 0;
	list-style: none;
	color: var(--vc-teal-dark);
}

.vc-more summary::-webkit-details-marker { display: none; }

.vc-more summary span {
	font-weight: 400;
	color: var(--vc-muted);
	font-size: 0.85rem;
}

.vc-more__body {
	padding-bottom: 14px;
}

.vc-help {
	font-size: 0.85rem;
	color: var(--vc-muted);
	margin: 10px 0 14px;
	line-height: 1.4;
}

.vc-help--tight {
	margin-top: -2px;
	margin-bottom: 10px;
}

.vc-upload {
	position: relative;
	margin-bottom: 8px;
}

.vc-upload input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	width: 100%;
	height: 100%;
}

.vc-upload__label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
	border: 2px dashed var(--vc-line);
	border-radius: 14px;
	padding: 28px 16px;
	background: var(--vc-bg);
	color: var(--vc-muted);
	transition: border-color 0.15s, background 0.15s;
}

.vc-upload:hover .vc-upload__label,
.vc-upload:focus-within .vc-upload__label {
	border-color: var(--vc-accent);
	background: #fff8f3;
}

.vc-upload__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--vc-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.vc-upload__label strong {
	color: var(--vc-ink);
	font-size: 1rem;
}

.vc-upload__label span:last-child {
	font-size: 0.82rem;
	max-width: 28em;
}

.vc-file-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.vc-file-list li {
	font-size: 0.9rem;
	padding: 9px 12px;
	background: var(--vc-teal-soft);
	border-radius: 8px;
	margin-bottom: 6px;
	color: var(--vc-teal-dark);
}

.vc-dates {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
}

.vc-date-chip {
	flex: 0 0 auto;
	border: 1px solid var(--vc-line);
	background: #fff;
	border-radius: 12px;
	padding: 10px 14px;
	min-width: 72px;
	text-align: center;
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.vc-date-chip:hover:not(:disabled) {
	border-color: var(--vc-accent);
}

.vc-date-chip.is-selected {
	background: var(--vc-accent);
	border-color: var(--vc-accent);
	color: #fff;
}

.vc-date-chip.is-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.vc-date-chip__dow {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.85;
}

.vc-date-chip__day {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
}

.vc-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-height: 48px;
}

.vc-slot {
	border: 1px solid var(--vc-line);
	background: #fff;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	color: var(--vc-ink);
}

.vc-slot:hover:not(:disabled) {
	border-color: var(--vc-accent);
	color: var(--vc-accent-hover);
}

.vc-slot.is-selected {
	background: var(--vc-accent);
	border-color: var(--vc-accent);
	color: #fff;
}

.vc-slot:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	text-decoration: line-through;
}

.vc-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--vc-muted);
	margin: 18px 0;
	cursor: pointer;
}

.vc-consent input {
	margin-top: 3px;
	flex-shrink: 0;
	accent-color: var(--vc-accent);
}

.vc-consent a {
	color: var(--vc-teal);
}

.vc-summary {
	background: #fff4ec;
	border: 1px solid #ffd7bf;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 16px;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--vc-ink);
}

.vc-form__error {
	color: var(--vc-danger);
	font-size: 0.9rem;
	margin: 0 0 12px;
}

.vc-form__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

/* Buttons */
.vc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.vc-btn:active {
	transform: scale(0.98);
}

.vc-btn--accent {
	background: var(--vc-accent);
	color: #fff;
	box-shadow: 0 8px 20px rgba(244, 115, 34, 0.35);
}

.vc-btn--accent:hover {
	background: var(--vc-accent-hover);
	color: #fff;
	text-decoration: none;
}

.vc-btn--accent:disabled {
	opacity: 0.65;
	cursor: wait;
	box-shadow: none;
}

.vc-btn--primary {
	background: var(--vc-teal);
	color: #fff;
}

.vc-btn--ghost {
	background: transparent;
	color: var(--vc-teal-dark);
	border: 1px solid var(--vc-line);
	font-weight: 600;
}

.vc-btn--ghost:hover {
	border-color: var(--vc-teal);
}

/* How it works + split */
.vc-steps-list {
	list-style: none;
	margin: 0 0 36px;
	padding: 0;
	display: grid;
	gap: 16px;
}

@media (min-width: 800px) {
	.vc-steps-list {
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}
}

.vc-steps-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--vc-white);
	border: 1px solid var(--vc-line);
	border-radius: 14px;
	padding: 14px;
}

.vc-steps-list__n {
	flex: 0 0 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--vc-teal);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
}

.vc-steps-list strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.95rem;
}

.vc-steps-list p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--vc-muted);
	line-height: 1.4;
}

.vc-split {
	display: grid;
	gap: 24px;
}

@media (min-width: 720px) {
	.vc-split {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

.vc-split__title {
	font-size: 1.1rem;
	margin: 0 0 12px;
	font-weight: 700;
}

.vc-check {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vc-check li {
	position: relative;
	padding: 0 0 10px 26px;
	color: var(--vc-muted);
	line-height: 1.45;
}

.vc-check li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--vc-teal-soft);
	box-shadow: inset 0 0 0 4px var(--vc-teal);
}

.vc-disclaimer {
	font-size: 0.86rem;
	color: var(--vc-muted);
	background: #fff;
	border: 1px solid var(--vc-line);
	padding: 12px 14px;
	border-radius: 12px;
	margin: 14px 0 0;
	line-height: 1.45;
}

/* FAQ */
.vc-faq-wrap {
	max-width: 720px;
}

.vc-faq__item {
	border-bottom: 1px solid var(--vc-line);
	padding: 14px 0;
}

.vc-faq__item summary {
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 28px;
}

.vc-faq__item summary::-webkit-details-marker {
	display: none;
}

.vc-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	color: var(--vc-teal);
	font-weight: 700;
	font-size: 1.1rem;
}

.vc-faq__item[open] summary::after {
	content: "–";
}

.vc-faq__item p {
	margin: 10px 0 0;
	color: var(--vc-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.vc-faq-cta {
	margin: 28px 0 0;
	text-align: center;
}

/* Thank you (shared) */
.vc-thanks {
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding: 64px 0;
	background: linear-gradient(180deg, var(--vc-teal-soft) 0%, var(--vc-white) 60%);
}

.vc-thanks__card {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
	animation: vcFadeUp 0.6s ease both;
}

.vc-thanks__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--vc-accent);
	color: #fff;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-thanks__title {
	font-size: 1.85rem;
	margin: 0 0 12px;
}

.vc-thanks__slot {
	font-weight: 600;
	color: var(--vc-teal-dark);
	margin: 0 0 16px;
}

.vc-thanks__text {
	color: var(--vc-muted);
	line-height: 1.55;
	margin: 0 0 16px;
}

.vc-thanks__care {
	font-size: 0.95rem;
	margin: 0 0 28px;
}

.vc-thanks__care a {
	color: var(--vc-teal);
}
