/* Visa landing page */

.visa-hero {
	position: relative;
	isolation: isolate;
	min-height: min(72vh, 640px);
	display: flex;
	align-items: flex-end;
	padding: 100px 0 48px;
	color: #fff;
	overflow: hidden;
}

.visa-hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(24, 12, 48, 0.35) 0%, rgba(24, 12, 48, 0.72) 55%, rgba(24, 12, 48, 0.9) 100%),
		var(--visa-hero-image) center / cover no-repeat;
	transform: scale(1.02);
	animation: visa-hero-ken 18s ease-in-out infinite alternate;
}

@keyframes visa-hero-ken {
	from { transform: scale(1.02); }
	to { transform: scale(1.08); }
}

.visa-hero__inner {
	width: 100%;
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.visa-hero__brand {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 4vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	background: linear-gradient(90deg, #fff 0%, #ffd6ef 45%, #e8d6ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: visa-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visa-hero__title {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: clamp(1.15rem, 2.4vw, 1.45rem);
	font-weight: 600;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.92);
	animation: visa-fade-up 0.7s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visa-hero__lead {
	margin: 0 auto 28px;
	max-width: 460px;
	font-size: 0.98rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
	animation: visa-fade-up 0.7s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visa-search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 640px;
	margin: 0 auto 22px;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 18px 50px rgba(18, 10, 40, 0.28);
	overflow: hidden;
	animation: visa-fade-up 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visa-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	padding: 18px 22px 18px 26px;
	font: inherit;
	font-size: 1rem;
	color: var(--color-heading);
	background: transparent;
}

.visa-search__input::placeholder {
	color: #9a93b0;
}

.visa-search__input:focus {
	outline: none;
}

.visa-search__btn {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	margin: 6px;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	background: linear-gradient(135deg, #6c3cff 0%, #f33fa6 100%);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visa-search__btn:hover,
.visa-search__btn:focus-visible {
	transform: scale(1.04);
	box-shadow: 0 8px 22px rgba(243, 63, 166, 0.35);
}

.visa-search__icon {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0 auto;
	background: #fff;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.visa-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	animation: visa-fade-up 0.7s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visa-chips__item {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	backdrop-filter: blur(8px);
	transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.visa-chips__item:hover,
.visa-chips__item:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.55);
	transform: translateY(-2px);
	color: #fff;
}

.visa-section {
	padding: 72px 0;
	background: #fff;
}

.visa-section__head {
	text-align: center;
	margin-bottom: 36px;
}

.visa-section__head--left {
	text-align: left;
	margin-bottom: 24px;
}

.visa-section__title {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: clamp(1.45rem, 2.8vw, 2rem);
	font-weight: 800;
	color: var(--color-heading);
	letter-spacing: -0.01em;
}

.visa-section__sub {
	margin: 0 auto;
	max-width: 520px;
	color: var(--color-heading-sub);
	line-height: 1.65;
}

.visa-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.visa-service {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.visa-service__media {
	margin: 0;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 18px 18px 0 0;
	background: var(--color-gray-100);
}

.visa-service__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.visa-service:hover .visa-service__media img {
	transform: scale(1.05);
}

.visa-service__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 22px 4px 0;
}

.visa-service__title {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--color-heading);
}

.visa-service__title a {
	color: inherit;
	text-decoration: none;
}

.visa-service__title a:hover {
	color: var(--color-pink);
}

.visa-service__lead {
	margin: 0 0 14px;
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--color-heading-sub);
}

.visa-service__list {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.visa-service__list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--color-paragraph);
}

.visa-service__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6c3cff, #f33fa6);
}

.visa-service__body .btn {
	align-self: flex-start;
	margin-top: auto;
}

.visa-others {
	background: #f8f7ff;
}

.visa-other-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.visa-other {
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease;
}

.visa-other:hover {
	transform: translateY(-4px);
	color: inherit;
}

.visa-other__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(44, 34, 88, 0.08);
}

.visa-other__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.visa-other:hover .visa-other__media img {
	transform: scale(1.06);
}

.visa-other__title {
	display: block;
	margin-top: 12px;
	font-size: 0.92rem;
	font-weight: 700;
	text-align: center;
	color: var(--color-heading);
	line-height: 1.35;
}

.visa-process__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 40px;
	align-items: center;
}

.visa-process__media {
	margin: 0;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(44, 34, 88, 0.12);
}

.visa-process__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 420px;
}

.visa-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

.visa-steps__item {
	padding: 18px 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(108, 60, 255, 0.08) 0%, rgba(243, 63, 166, 0.08) 100%);
	border: 1px solid rgba(108, 60, 255, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visa-steps__item:hover {
	transform: translateX(4px);
	box-shadow: 0 12px 28px rgba(108, 60, 255, 0.1);
}

.visa-steps__num {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #f33fa6;
}

.visa-steps__title {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--color-heading);
	margin-bottom: 6px;
}

.visa-steps__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--color-heading-sub);
}

.visa-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 24px;
}

.visa-why-item {
	text-align: center;
	padding: 8px 12px;
}

.visa-why-item__icon {
	display: inline-block;
	width: 56px;
	height: 56px;
	margin-bottom: 14px;
	border-radius: 16px;
	background: linear-gradient(135deg, #6c3cff, #f33fa6);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: 28px 28px;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 28px 28px;
}

.visa-why-item__icon--transparent {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 12h8v2H8v-2zm0 4h8v2H8v-2zm0-8h3v2H8V8z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 12h8v2H8v-2zm0 4h8v2H8v-2zm0-8h3v2H8V8z'/%3E%3C/svg%3E");
}

.visa-why-item__icon--care {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.visa-why-item__icon--fast {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z'/%3E%3C/svg%3E");
}

.visa-why-item__icon--accurate {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M2.01 21L23 12 2.01 3 2 10l15 2-15 2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M2.01 21L23 12 2.01 3 2 10l15 2-15 2z'/%3E%3C/svg%3E");
}

.visa-why-item__icon--respect {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M1 12.5C1 9.46 3.46 7 6.5 7c1.63 0 3.09.79 4 2 .91-1.21 2.37-2 4-2C17.54 7 20 9.46 20 12.5v5H1v-5zm19 6v-5c0-1.93-1.57-3.5-3.5-3.5-.88 0-1.7.33-2.31.9l-1.87 1.66L10.45 10.9C9.85 10.33 9.02 10 8.14 10 6.12 10 4.5 11.62 4.5 13.64V18.5H20zM22 18.5h1v-6c0-2.76-1.12-5.26-2.93-7.07L18.66 6.84C20.1 8.28 21 10.27 21 12.5v6z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M1 12.5C1 9.46 3.46 7 6.5 7c1.63 0 3.09.79 4 2 .91-1.21 2.37-2 4-2C17.54 7 20 9.46 20 12.5v5H1v-5zm19 6v-5c0-1.93-1.57-3.5-3.5-3.5-.88 0-1.7.33-2.31.9l-1.87 1.66L10.45 10.9C9.85 10.33 9.02 10 8.14 10 6.12 10 4.5 11.62 4.5 13.64V18.5H20zM22 18.5h1v-6c0-2.76-1.12-5.26-2.93-7.07L18.66 6.84C20.1 8.28 21 10.27 21 12.5v6z'/%3E%3C/svg%3E");
}

.visa-why-item__icon--secure {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.visa-why-item__title {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--color-heading);
}

.visa-why-item__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--color-heading-sub);
}

.visa-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 40px;
}

/* Visa country detail */
.visa-detail {
	padding: 36px 0 72px;
	background: var(--color-white);
}

.visa-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
	gap: 36px 40px;
	align-items: start;
}

.visa-detail__crumb {
	margin: 0 0 14px;
	font-size: 0.86rem;
	color: var(--color-heading-sub);
}

.visa-detail__crumb a {
	color: var(--color-primary);
	text-decoration: none;
}

.visa-detail__crumb a:hover {
	color: var(--color-pink);
}

.visa-detail__title {
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: clamp(1.55rem, 2.8vw, 2.2rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.visa-detail__slogan {
	margin: 0 0 22px;
	font-size: 1.05rem;
	font-weight: 700;
	font-style: italic;
	color: #1FA97A;
}

.visa-detail__body {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--color-gray-700);
}

.visa-detail__body h2 {
	margin: 28px 0 12px;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--color-primary);
}

.visa-detail__body p {
	margin: 0 0 14px;
}

.visa-detail__body ul {
	list-style: disc;
	margin: 0 0 16px;
	padding-left: 1.4em;
}

.visa-detail__body ol {
	list-style: decimal;
	margin: 0 0 16px;
	padding-left: 1.4em;
}

.visa-detail__body li {
	margin-bottom: 8px;
}

.visa-detail__figure {
	margin: 18px 0 22px;
	border-radius: 16px;
	overflow: hidden;
	background: #F4F2FB;
}

.visa-detail__figure img,
.visa-detail__body img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.visa-detail__aside {
	position: sticky;
	top: 96px;
}

.visa-detail__card {
	padding: 22px 20px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--color-gray-200);
	box-shadow: var(--shadow-card, 0 12px 30px rgba(35, 37, 58, 0.08));
}

.visa-detail__card-title {
	margin: 0 0 8px;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--color-heading);
}

.visa-detail__card-lead {
	margin: 0 0 16px;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--color-heading-sub);
}

.visa-detail__form .btn {
	margin-top: 4px;
}

.visa-detail__hotline {
	margin: 16px 0 0;
	text-align: center;
	font-size: 0.86rem;
	color: var(--color-heading-sub);
}

.visa-detail__hotline a {
	display: inline-block;
	margin-left: 4px;
	font-weight: 700;
	color: var(--color-primary);
	text-decoration: none;
}

.visa-detail__hotline a:hover {
	color: var(--color-pink);
}

@keyframes visa-fade-up {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 991px) {
	.visa-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 16px;
	}

	/* Keep 3-col / 2-row like desktop — only tighten spacing */
	.visa-why-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px 12px;
	}

	.visa-why-item {
		padding: 4px 6px;
	}

	.visa-why-item__icon {
		width: 44px;
		height: 44px;
		margin-bottom: 10px;
		border-radius: 12px;
		mask-size: 22px 22px;
		-webkit-mask-size: 22px 22px;
	}

	.visa-why-item__title {
		font-size: 0.92rem;
		margin-bottom: 4px;
	}

	.visa-why-item__text {
		font-size: 0.78rem;
		line-height: 1.45;
	}

	.visa-other-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.visa-process__grid {
		grid-template-columns: 1fr;
	}

	.visa-process__media img {
		min-height: 280px;
	}

	.visa-detail__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.visa-detail__aside {
		position: static;
	}
}

@media (max-width: 767px) {
	.visa-hero {
		min-height: 0;
		padding: 72px 0 22px;
		align-items: flex-end;
	}

	.visa-hero__brand {
		margin-bottom: 4px;
		font-size: 1.35rem;
	}

	.visa-hero__title {
		margin-bottom: 6px;
		font-size: 1rem;
	}

	.visa-hero__lead {
		display: none;
	}

	.visa-search {
		margin-bottom: 12px;
	}

	.visa-search__input {
		padding: 12px 12px 12px 16px;
		font-size: 0.88rem;
	}

	.visa-search__btn {
		width: 44px;
		height: 44px;
		margin: 4px;
	}

	.visa-search__icon {
		width: 18px;
		height: 18px;
	}

	.visa-chips {
		gap: 6px;
	}

	.visa-chips__item {
		font-size: 0.68rem;
		padding: 6px 10px;
	}

	/* Services — 2-col tiles like homepage tours */
	.visa-services > .container {
		width: 100%;
		max-width: none;
		margin-inline: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.visa-services .visa-section__head {
		padding-left: 20px;
		padding-right: 20px;
	}

	.visa-service-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
		width: 100%;
		border-top: 1px solid var(--color-gray-200);
		border-left: 1px solid var(--color-gray-200);
		background: #fff;
	}

	.visa-service {
		min-width: 0;
		border-right: 1px solid var(--color-gray-200);
		border-bottom: 1px solid var(--color-gray-200);
		background: #fff;
	}

	.visa-service__media {
		aspect-ratio: auto;
		border-radius: 0;
		padding: 12px 12px 6px;
		background: transparent;
		overflow: visible;
	}

	.visa-service__media img {
		aspect-ratio: 4 / 3;
		height: auto;
		border-radius: 10px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.visa-service:hover .visa-service__media img {
		transform: none;
	}

	.visa-service__body {
		padding: 4px 10px 12px;
	}

	.visa-service__title {
		font-family: var(--font-body);
		font-size: 0.72rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.02em;
		line-height: 1.35;
		margin: 0 0 6px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.visa-service__lead {
		font-size: 0.66rem;
		line-height: 1.4;
		margin: 0 0 8px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.visa-service__list {
		display: none;
	}

	.visa-service__body .btn {
		align-self: stretch;
		justify-content: center;
		min-height: 32px;
		padding: 0 10px;
		font-size: 0.68rem;
		width: 100%;
	}

	.visa-why-grid {
		gap: 14px 8px;
	}

	.visa-why-item__icon {
		width: 40px;
		height: 40px;
		margin-bottom: 8px;
		border-radius: 10px;
		mask-size: 20px 20px;
		-webkit-mask-size: 20px 20px;
	}

	.visa-why-item__title {
		font-size: 0.82rem;
	}

	.visa-why-item__text {
		font-size: 0.7rem;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.visa-other-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.visa-section {
		padding: 52px 0;
	}

	.visa-cta .btn {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.visa-hero__media,
	.visa-hero__brand,
	.visa-hero__title,
	.visa-hero__lead,
	.visa-search,
	.visa-chips {
		animation: none;
	}
}
