/*
 * Visa apply flow — TripPlatter “editorial premium” UI
 * Namespace: .tpva (isolate from legacy .tp-va)
 */

.tpva {
	--tpva-bg: #1f232b;
	--tpva-bg-soft: #faf8f5;
	--tpva-card: #ffffff;
	--tpva-ink: #273444;
	--tpva-muted: #5c6570;
	--tpva-border: rgba(17, 20, 24, 0.09);
	--tpva-accent: #e53935;
	--tpva-accent-2: #d32f2f;
	--tpva-accent-soft: rgba(229, 57, 53, 0.12);
	--tpva-radius: 22px;
	--tpva-radius-sm: 14px;
	--tpva-font: var(--body-font-family, "Inter", system-ui, sans-serif);

	padding: clamp(1.25rem, 4vw, 3rem) 0 clamp(3rem, 8vw, 5rem);
	background:
		radial-gradient(900px 500px at 92% -8%, rgba(229, 57, 53, 0.14), transparent),
		radial-gradient(700px 440px at 8% 0%, rgba(211, 47, 47, 0.09), transparent),
		var(--tpva-bg-soft);
	font-family: var(--tpva-font);
	color: var(--tpva-ink);
	min-height: 62vh;
}

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

.tpva__wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding-left: 14px;
	padding-right: 14px;
}

.tpva__hero {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: clamp(1rem, 3vw, 2.5rem);
	padding: clamp(1.35rem, 3vw, 2rem);
	margin-bottom: 1.75rem;
	background: linear-gradient(135deg, #2a2f38 0%, #252b35 52%, #1f232b 100%);
	border-radius: var(--tpva-radius);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.06) inset,
		0 24px 56px rgba(15, 20, 25, 0.35);
	color: #f4f6f8;
	position: relative;
	overflow: hidden;
}

.tpva__hero::after {
	content: "";
	position: absolute;
	inset: auto -20% -55% -20%;
	height: 120%;
	background: radial-gradient(closest-side, rgba(229, 57, 53, 0.18), transparent);
	pointer-events: none;
}

/* Global style.css sets h1 { color: var(--headingColor) } and p { color: #363636 } — force light text on dark hero */
.tpva .tpva__hero h1.tpva__title {
	color: #ffffff !important;
}

.tpva .tpva__hero p.tpva__lead {
	color: rgba(245, 248, 251, 0.95) !important;
}

.tpva .tpva__hero p.tpva__hero-card-k {
	color: rgba(207, 214, 222, 0.95) !important;
}

.tpva .tpva__hero p.tpva__hero-card-foot {
	color: rgba(216, 224, 232, 0.82) !important;
}

.tpva .tpva__hero p.tpva__hero-card-price,
.tpva .tpva__hero #tpHeroPrice {
	color: #ffffff !important;
}

.tpva .tpva__hero a.tpva__back {
	color: #d5dee8 !important;
}

.tpva .tpva__hero a.tpva__back:hover,
.tpva .tpva__hero a.tpva__back:focus {
	color: #ffffff !important;
}

.tpva .tpva__hero .tpva__pill {
	color: #eef2f6 !important;
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
}

.tpva .tpva__hero .tpva__pill--ok {
	color: #ffcdd2 !important;
	border-color: rgba(229, 57, 53, 0.5);
	background: rgba(229, 57, 53, 0.22);
}

.tpva__hero-left {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.tpva__hero-card {
	position: relative;
	z-index: 1;
	min-width: 180px;
	max-width: 240px;
	padding: 1rem 1.15rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	text-align: right;
}

.tpva__hero-card-k {
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.72;
	margin: 0 0 4px;
	color: #cfd6de;
}

.tpva__hero-card-price {
	font-size: clamp(1.5rem, 3.5vw, 1.85rem);
	font-weight: 750;
	letter-spacing: -0.02em;
	margin: 0;
	color: #fff;
}

.tpva__hero-card-foot {
	font-size: 0.75rem;
	opacity: 0.65;
	margin: 8px 0 0;
	line-height: 1.35;
}

.tpva__eyebrow {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 10px;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(229, 57, 53, 0.2);
	color: #ffcdd2;
	border: 1px solid rgba(255, 205, 210, 0.3);
}

.tpva__title {
	font-size: clamp(1.6rem, 3.5vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 10px;
	line-height: 1.15;
}

.tpva__lead {
	margin: 0 0 14px;
	max-width: 560px;
	line-height: 1.55;
	opacity: 0.88;
	font-size: 0.95rem;
}

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

.tpva__pill {
	display: inline-flex;
	align-items: center;
	font-size: 0.78rem;
	padding: 7px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #e8ecf0;
	font-weight: 600;
}

.tpva__pill--ok {
	border-color: rgba(229, 57, 53, 0.45);
	background: rgba(229, 57, 53, 0.2);
	color: #ffcdd2;
}

.tpva__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 650;
	color: #c8d2dc;
	text-decoration: none;
	margin-bottom: 12px;
	transition: color 0.2s ease;
}

.tpva__back:hover {
	color: #fff;
}

.tpva__back-arr {
	opacity: 0.75;
}

.tpva__track {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 1.5rem;
	padding: 16px 12px 18px;
	background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
	border: 1px solid rgba(17, 20, 24, 0.08);
	border-radius: calc(var(--tpva-radius-sm) + 4px);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 10px 32px rgba(15, 20, 25, 0.06);
}

.tpva__track-line {
	position: absolute;
	left: calc(12px + 19px);
	right: calc(12px + 19px);
	top: calc(16px + 19px);
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #e8e5e1, rgba(229, 57, 53, 0.35), rgba(211, 47, 47, 0.35), #e8e5e1);
	opacity: 0.9;
	pointer-events: none;
	z-index: 0;
}

.tpva__step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	flex: 1 1 0;
	min-width: 0;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.tpva__step-dot {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #ffffff, #f1eeea);
	border: 2px solid #dcd6ce;
	box-shadow: 0 2px 8px rgba(15, 20, 25, 0.08);
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.tpva__step.is-active .tpva__step-dot {
	background: linear-gradient(145deg, #ef5350, #e53935);
	border-color: transparent;
	box-shadow: 0 8px 20px rgba(229, 57, 53, 0.45);
	transform: scale(1.05);
}

.tpva__step.is-done .tpva__step-dot {
	background: linear-gradient(145deg, #ef5350, #d32f2f);
	border-color: transparent;
}

.tpva__step-num {
	font-size: 13px;
	font-weight: 800;
	color: #5c5349;
	font-family: var(--tpva-font);
}

.tpva__step.is-active .tpva__step-num {
	color: #fff;
}

.tpva__step.is-done .tpva__step-num {
	font-size: 0;
	color: transparent;
	position: relative;
}

.tpva__step.is-done .tpva__step-num::after {
	content: "✓";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -56%);
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.tpva__step-txt {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-top: 2px;
}

.tpva .tpva__track .tpva__step:not(.is-active):not(.is-done) .tpva__step-txt strong {
	color: #5a6270 !important;
}

.tpva .tpva__track .tpva__step:not(.is-active):not(.is-done) .tpva__step-txt small {
	color: #8e97a5 !important;
}

.tpva .tpva__track .tpva__step.is-active .tpva__step-txt strong {
	color: #171c24 !important;
	font-size: 0.86rem;
}

.tpva .tpva__track .tpva__step.is-active .tpva__step-txt small {
	color: #5f6b78 !important;
}

.tpva .tpva__track .tpva__step.is-done .tpva__step-txt strong {
	color: #b71c1c !important;
}

.tpva .tpva__track .tpva__step.is-done .tpva__step-txt small {
	color: #c62828 !important;
}

.tpva__step-txt strong {
	display: block;
	font-size: 0.82rem;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.tpva__step-txt small {
	font-size: 0.7rem;
	line-height: 1.28;
	display: block;
	margin-top: 3px;
	opacity: 1;
}

.tpva__panel {
	background: var(--tpva-card);
	border: 1px solid var(--tpva-border);
	border-radius: var(--tpva-radius);
	box-shadow: 0 16px 42px rgba(17, 20, 24, 0.06);
	padding: clamp(1.25rem, 3vw, 2rem);
	overflow: hidden;
}

.tpva-pane {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.3s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.tpva-pane.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tpva__panel-head {
	margin-bottom: 1.35rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--tpva-border);
}

.tpva__kicker {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tpva-accent);
	margin: 0 0 10px;
}

.tpva__h2 {
	font-size: clamp(1.25rem, 2.6vw, 1.5rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0 0 8px;
	line-height: 1.2;
}

.tpva__sub {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--tpva-muted);
	max-width: 620px;
}

.tpva__person-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 14px;
}

.tpva__person {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 14px;
	border-radius: var(--tpva-radius-sm);
	border: 1px solid var(--tpva-border);
	background: linear-gradient(180deg, #fffdfb 0%, #faf7f2 100%);
}

.tpva__person-av {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 750;
	font-size: 1rem;
	background: linear-gradient(145deg, rgba(196, 92, 38, 0.15), rgba(26, 127, 127, 0.12));
	color: #8a4a2c;
}

.tpva__person-body {
	min-width: 0;
}

.tpva__person-body strong {
	display: block;
	font-size: 1rem;
	font-weight: 750;
	letter-spacing: -0.015em;
	margin-bottom: 4px;
}

.tpva__person-body span {
	font-size: 0.85rem;
	color: var(--tpva-muted);
}

.tpva__emptyhint {
	font-size: 0.9rem;
	color: var(--tpva-muted);
	text-align: center;
	padding: 28px 18px;
	margin: 0 0 14px;
	border-radius: var(--tpva-radius-sm);
	border: 1px dashed rgba(17, 20, 24, 0.15);
	background: rgba(250, 248, 245, 0.8);
}

.tpva__btn {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 18px;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 680;
	letter-spacing: -0.01em;
	border: none;
	transition: transform 0.18s ease, box-shadow 0.22s ease, opacity 0.18s ease;
}

.tpva__btn:disabled {
	opacity: 0.42;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

.tpva__btn--primary {
	color: #fff;
	background: linear-gradient(135deg, #ef5350 0%, #e53935 40%, #d32f2f 100%);
	box-shadow: 0 8px 28px rgba(229, 57, 53, 0.42);
}

.tpva__btn--primary:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 14px 34px rgba(229, 57, 53, 0.5);
}

.tpva__btn--ghost {
	color: #24303a;
	background: #fff;
	border: 1.5px solid rgba(17, 20, 24, 0.12);
	box-shadow: 0 4px 14px rgba(15, 20, 25, 0.06);
}

.tpva__btn--ghost:hover:not(:disabled) {
	border-color: rgba(196, 92, 38, 0.55);
	color: #9a4a20;
}

.tpva__btn-plus {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-weight: 800;
	background: var(--tpva-accent-soft);
	color: var(--tpva-accent);
	line-height: 1;
}

.tpva__btn--block {
	width: 100%;
	padding-top: 13px;
	padding-bottom: 13px;
	font-size: 0.95rem;
}

.tpva__btn--xl {
	width: 100%;
	justify-content: center;
	padding: 14px 20px;
	font-size: 1rem;
	font-weight: 750;
	margin-top: 25px;
}

.tpva__btn--wide {
	width: 100%;
	margin-top: 8px;
	justify-content: flex-start;
	text-align: left;
}

.tpva__btn-chev {
	font-size: 1.1em;
	line-height: 0;
}

.tpva__plans {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tpva__plan {
	cursor: pointer;
	margin: 0;
	border-radius: var(--tpva-radius-sm);
	border: 1.5px solid var(--tpva-border);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.22s ease;
}

.tpva__plan:hover {
	border-color: rgba(196, 92, 38, 0.45);
}

.tpva__plan input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tpva__plan-body {
	display: flex;
	align-items: stretch;
	gap: clamp(8px, 2vw, 20px);
	padding: 14px 16px;
}

.tpva__plan-main {
	flex: 1;
	min-width: 0;
}

.tpva__plan-main strong {
	display: block;
	font-size: 1.02rem;
	font-weight: 750;
	letter-spacing: -0.015em;
	margin-bottom: 6px;
	line-height: 1.25;
}

.tpva__plan-meta {
	margin: 0 0 8px;
	font-size: 0.86rem;
	line-height: 1.4;
	color: var(--tpva-muted);
}

.tpva__plan-tag {
	display: inline-block;
	margin: 0 0 6px;
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 8px;
	background: rgba(26, 127, 127, 0.1);
	color: #146b6b;
}

.tpva__plan-note {
	font-size: 0.82rem;
	color: var(--tpva-muted);
	margin: 0 0 4px;
	line-height: 1.42;
}

.tpva__plan-price {
	flex-shrink: 0;
	align-self: center;
	min-width: 108px;
	text-align: right;
	padding-left: 8px;
	border-left: 1px solid rgba(17, 20, 24, 0.08);
}

.tpva__plan-rupee {
	display: inline;
	font-weight: 600;
	font-size: 0.9rem;
	vertical-align: 0.1em;
	color: var(--tpva-accent);
	opacity: 0.9;
}

.tpva__plan-amt {
	display: inline;
	font-size: 1.55rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.03em;
	color: var(--tpva-accent);
	line-height: 1;
	margin-left: 2px;
}

.tpva__plan-inc {
	display: block;
	font-size: 0.68rem;
	color: var(--tpva-muted);
	margin-top: 5px;
}

.tpva__plan.is-selected {
	border-color: rgba(196, 92, 38, 0.85);
	box-shadow:
		0 0 0 1px rgba(196, 92, 38, 0.18),
		0 12px 38px rgba(196, 92, 38, 0.15);
	background: linear-gradient(180deg, #fffaf6 0%, #ffffff 72%);
}

.tpva__docs-form {
	width: 100%;
}

.tpva__docs-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.tpva__up {
	padding: 12px;
	border-radius: var(--tpva-radius-sm);
	border: 1px dashed rgba(17, 20, 24, 0.18);
	background: #fafafa;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tpva__up:hover {
	border-style: solid;
	border-color: rgba(196, 92, 38, 0.45);
	background: #fffefb;
}

.tpva__up-lab {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 700;
	color: #2a3440;
	margin-bottom: 10px;
}

.tpva__up-lab .fa {
	color: var(--tpva-accent);
	opacity: 0.85;
}

.tpva .tpva__file.form-control {
	font-size: 0.8rem;
	padding: 8px;
	border-radius: 10px;
	border: 1px solid rgba(17, 20, 24, 0.1);
}

.tpva__applicant {
	padding-top: 16px;
}

.tpva__applicant-title {
	font-weight: 750;
	margin: 0 0 12px;
	padding-top: 4px;
	color: var(--tpva-accent-2);
	font-size: 0.94rem;
}

.tpva .form-control {
	border-radius: 12px !important;
	border: 1px solid rgba(17, 20, 24, 0.12) !important;
	padding: 10px 12px !important;
	font-size: 0.9rem !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
	background: #fff !important;
}

.tpva .form-control:focus {
	border-color: rgba(196, 92, 38, 0.55) !important;
	box-shadow: 0 0 0 3px rgba(196, 92, 38, 0.12) !important;
	outline: none !important;
}

.tpva__lbl {
	display: block;
	font-size: 0.76rem;
	font-weight: 650;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--tpva-muted);
	margin-bottom: 6px;
}

.tpva__contact-block {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--tpva-border);
}

.tpva__contact-title {
	font-weight: 750;
	font-size: 1rem;
	margin: 0 0 4px;
}

.tpva__contact-hint {
	font-size: 0.82rem;
	color: var(--tpva-muted);
	margin: 0 0 12px;
}

.tpva__req {
	color: #c45c26;
}

.tpva__fineprint {
	margin: 14px 0 0;
	font-size: 0.76rem;
	color: var(--tpva-muted);
	line-height: 1.48;
	max-width: 520px;
}

.tpva__review {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 8px;
}

.tpva__review-card {
	border: 1px solid var(--tpva-border);
	border-radius: var(--tpva-radius-sm);
	padding: 14px;
	background: #fafcfa;
}

.tpva__review-h {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.tpva__review-h span {
	font-weight: 800;
	font-size: 0.88rem;
	letter-spacing: -0.01em;
}

.tpva__review-edit {
	flex-shrink: 0;
	cursor: pointer;
	border: none;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: #fff;
	color: var(--tpva-accent-2);
	border: 1px solid rgba(229, 57, 53, 0.35);
	transition: transform 0.15s ease, background 0.15s ease;
}

.tpva__review-edit:hover {
	background: rgba(229, 57, 53, 0.1);
	transform: translateY(-1px);
}

.tpva__review-ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tpva__review-ul li {
	font-size: 0.92rem;
	font-weight: 600;
	padding: 10px 0;
	border-bottom: 1px solid rgba(17, 20, 24, 0.07);
	line-height: 1.38;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tpva__review-ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.tpva__review-ul li span {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--tpva-muted);
}

.tpva__review-li--empty {
	color: var(--tpva-muted) !important;
	font-weight: 500 !important;
	padding: 8px !important;
}

.tpva__review-line {
	font-size: 0.93rem;
	margin: 0 0 6px;
	font-weight: 630;
	line-height: 1.42;
}

.tpva__review-muted {
	font-size: 0.84rem;
	color: var(--tpva-muted);
	margin: 0 0 6px;
}

.tpva__review-total {
	margin: 12px 0 0;
	font-size: 0.93rem;
}

.tpva__review-total strong {
	font-size: 1.2rem;
	color: var(--tpva-accent);
	font-variant-numeric: tabular-nums;
}

.tpva__missing {
	border-radius: var(--tpva-radius-sm);
	padding: 12px;
	margin-bottom: 12px;
	background: rgba(196, 92, 38, 0.07);
	border: 1px solid rgba(196, 92, 38, 0.35);
}

.tpva__missing-title {
	font-size: 0.84rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: #6b3010;
}

.tpva__missing-row {
	cursor: pointer;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: rgba(255, 255, 255, 0.88);
	padding: 9px 12px;
	margin-bottom: 6px;
	border-radius: 10px;
	border: 1px solid rgba(196, 92, 38, 0.18);
	text-align: left;
	font-family: inherit;
	font-size: 0.82rem;
	color: var(--tpva-ink);
	font-weight: 600;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.tpva__missing-row:last-child {
	margin-bottom: 0;
}

.tpva__missing-row:hover {
	transform: translateX(2px);
	box-shadow: 0 6px 16px rgba(15, 20, 25, 0.08);
}

.tpva__missing-row em {
	font-style: normal;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tpva-accent);
}

.tpva__side-inner {
	position: sticky;
	top: 100px;
	border-radius: var(--tpva-radius);
	padding: clamp(1.2rem, 2.8vw, 1.85rem);
	background: var(--tpva-card);
	border: 1px solid var(--tpva-border);
	box-shadow:
		0 4px 0 rgba(26, 127, 127, 0.15),
		0 28px 50px rgba(15, 20, 25, 0.1);
	overflow: hidden;
}

.tpva__side-inner::before {
	content: "";
	display: block;
	height: 4px;
	width: calc(100% + 2px);
	margin: -28px -1px 14px -1px;
	background: linear-gradient(90deg, #ef5350, #d32f2f);
	border-radius: 4px 4px 0 0;
}

.tpva__side-k {
	font-size: 0.72rem;
	margin: 0 0 4px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 750;
	opacity: 0.55;
}

.tpva__side-title {
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0 0 16px;
	letter-spacing: -0.022em;
}

.tpva__dl > div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 14px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(17, 20, 24, 0.07);
	align-items: baseline;
	font-size: 0.87rem;
}

.tpva__dl > div.tpva__dl--total {
	border-bottom: 0;
	padding-top: 14px;
	margin-top: 4px;
}

.tpva__dl dt {
	opacity: 0.65;
	font-weight: 600;
	min-width: 88px;
}

.tpva__dl dd {
	justify-self: end;
	text-align: right;
	font-weight: 700;
	margin: 0;
	max-width: 100%;
	word-break: break-word;
}

.tpva__dl--total dt {
	font-weight: 700;
	opacity: 1;
}

.tpva__dl--total dd {
	font-size: 1.25rem;
	color: var(--tpva-accent);
	font-variant-numeric: tabular-nums;
}

.tpva__side-note {
	font-size: 0.78rem;
	line-height: 1.45;
	color: var(--tpva-muted);
	margin: 12px 0 16px;
}

.tpva__side-help {
	font-size: 0.78rem;
	color: var(--tpva-muted);
	line-height: 1.45;
	margin: 12px 0 0;
}

.tpva__toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%) translateY(100px);
	z-index: 1080;
	max-width: min(92vw, 420px);
	padding: 12px 18px;
	border-radius: 999px;
	background: #111418;
	color: #f4f6f8;
	font-size: 0.86rem;
	font-weight: 600;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.tpva__toast.is-on {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.tpva-pane,
	.tpva__step,
	.tpva__btn,
	.tpva__toast,
	.tpva-mdl .modal-dialog {
		transition: none !important;
	}
}

body.tp-visa-page--apply .tpva-mdl.modal.fade .modal-dialog {
	transform: translateY(16px) scale(0.97);
	opacity: 0;
	transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.28, 1), opacity 0.38s ease;
}

body.tp-visa-page--apply .tpva-mdl.modal.show .modal-dialog {
	transform: translateY(0) scale(1);
	opacity: 1;
}

body.tp-visa-page--apply .modal-backdrop.show {
	opacity: 0.55;
	backdrop-filter: blur(4px);
}

.tpva-mdl__box {
	border-radius: 22px !important;
	overflow: hidden;
	border: none !important;
	box-shadow: 0 40px 80px rgba(8, 10, 12, 0.45);
}

.tpva-mdl__head {
	padding: 1.25rem 1.35rem !important;
	align-items: flex-start;
	border-bottom: 1px solid rgba(17, 20, 24, 0.08) !important;
	background: linear-gradient(180deg, #fdfcfa, #ffffff);
	position: relative;
}

.tpva-mdl__close {
	opacity: 0.45;
	transition: opacity 0.2s ease;
	position: absolute;
	right: 1rem;
	top: 1rem;
}

.tpva-mdl__close:hover {
	opacity: 0.95;
}

.tpva-mdl__eyebrow {
	font-size: 0.72rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--tpva-accent);
	margin: 0 0 4px;
}

.tpva-mdl__title {
	font-size: 1.12rem !important;
	font-weight: 820 !important;
	margin: 0 !important;
	line-height: 1.28 !important;
	color: var(--tpva-ink) !important;
}

.tpva-mdl__sub {
	font-size: 0.82rem !important;
	color: var(--tpva-muted) !important;
	margin: 10px 0 0 !important;
	line-height: 1.45 !important;
	max-width: 460px !important;
}

.tpva-mdl .modal-body {
	padding: 1.35rem !important;
}

.tpva__pending-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px;
	border-radius: 14px;
	background: rgba(196, 92, 38, 0.08);
	border: 1px solid rgba(196, 92, 38, 0.35);
	margin-bottom: 16px;
}

.tpva__pending-ico {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: linear-gradient(145deg, #fff0e8, #fff);
	font-weight: 900;
	color: var(--tpva-accent);
	font-size: 1.05rem;
}

.tpva__pending-card strong {
	display: block;
	font-size: 0.93rem;
	margin-bottom: 4px;
	font-weight: 750;
	line-height: 1.33;
}

.tpva__pending-card p {
	margin: 0;
	font-size: 0.82rem;
	color: var(--tpva-muted);
	line-height: 1.45;
}

.tpva__pending-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media (max-width: 991px) {
	.tpva__hero {
		grid-template-columns: 1fr;
	}
	.tpva__hero-card {
		max-width: none;
		text-align: left;
	}
	.tpva__track {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
		padding: 18px 14px;
		justify-items: stretch;
		align-items: start;
	}
	.tpva__track-line {
		display: none;
	}
	.tpva__step {
		flex: none;
		min-height: auto;
		padding: 10px 8px;
		background: rgba(255, 255, 255, 0.55);
		border: 1px solid rgba(17, 20, 24, 0.07);
		border-radius: 14px;
		box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
	}
	.tpva__step.is-active {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #faf8f6);
		border-color: rgba(196, 92, 38, 0.28);
		box-shadow: 0 8px 24px rgba(15, 20, 25, 0.07);
	}
	.tpva__side-inner {
		position: static;
	}
}

@media (max-width: 575px) {
	.tpva__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 8px;
		padding: 14px 10px;
	}
	.tpva__step {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 8px;
		padding: 12px 6px;
	}
	.tpva__step-txt {
		padding-top: 0;
		align-items: center;
		width: 100%;
	}
	.tpva__step-txt strong,
	.tpva__step-txt small {
		max-width: 100%;
		text-align: center;
	}
	.tpva__step-dot {
		width: 34px;
		height: 34px;
	}
	.tpva__step-num {
		font-size: 12px;
	}
	.tpva__step.is-done .tpva__step-num::after {
		font-size: 12px;
	}

	.tpva__docs-grid {
		grid-template-columns: 1fr;
	}
	.tpva__plan-body {
		flex-direction: column;
	}
	.tpva__plan-price {
		border-left: 0;
		border-top: 1px solid rgba(17, 20, 24, 0.08);
		padding: 12px 0 0;
		text-align: left;
		width: 100%;
	}
	.tpva__step-txt small {
		display: block;
		font-size: 0.62rem;
		line-height: 1.2;
	}
}
