/* UTSPAY Pages – landing page styles (scoped under .uts-landing) */

.uts-landing {
	--uts-green: #28ae68;
	--uts-green-dark: #1f8f54;
	--uts-dark: #000000;
	--uts-slate: #1e293b;
	--uts-muted: #64748b;
	--uts-bg: #f8fafb;
	--uts-border: #e2e8f0;
	--uts-badge-bg: #e8f7ef;
	--uts-badge-border: #a8dfc0;
	--uts-radius: 24px;
	--uts-shadow: 0 2px 6px rgba(0, 0, 0, .06), 0 1px 1.5px rgba(0, 0, 0, .04);

	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--uts-dark);
	background: #fff;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

:host-context(html:lang(th)) .uts-landing,
html:lang(th) .uts-landing {
	font-family: "Noto Sans Thai", sans-serif;
}

.uts-landing-body {
	margin: 0;
}

/* Standalone wrapper (e.g. [utspay_header]) – don't paint a white block. */
.uts-landing--bare {
	background: transparent;
}

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

.uts-landing img {
	max-width: 100%;
	height: auto;
	display: block;
}

.uts-container {
	width: 100%;
	max-width: 1248px;
	margin: 0 auto;
	padding: 0 24px;
}

.uts-text-green {
	color: var(--uts-green);
}

.uts-italic {
	font-style: italic;
}

/* ---------- Buttons ---------- */
.uts-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 28px;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
	white-space: nowrap;
}

.uts-btn--sm {
	height: 40px;
	padding: 0 18px;
	border-radius: 12px;
	font-size: 14px;
}

.uts-btn--primary {
	background: var(--uts-green);
	color: #fff;
	box-shadow: 0 8px 12px rgba(40, 174, 104, .22);
}

.uts-btn--primary:hover {
	background: #229a5c;
	transform: translateY(-1px);
}

.uts-btn--ghost {
	background: #fff;
	color: var(--uts-slate);
	border-color: var(--uts-border);
	font-weight: 600;
}

.uts-btn--ghost:hover {
	border-color: #cbd5e1;
	transform: translateY(-1px);
}

/* ---------- App download promo bar ---------- */
.uts-appbar {
	background: #0d1b16;
	color: #fff;
	font-size: 14px;
}

.uts-appbar__inner {
	max-width: 1248px;
	margin: 0 auto;
	padding: 8px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.uts-appbar__intro {
	color: #ffffff;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.uts-appbar__links {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-shrink: 0;
}

.uts-appbar__item {
	position: relative;
}

.uts-appbar__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: color .15s ease;
}

.uts-appbar__link:hover {
	color: var(--uts-green);
}

.uts-appbar__platform {
	flex: 0 0 auto;
	width: 15px !important;
	height: 15px !important;
	object-fit: contain;
}

.uts-appbar__pop {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 60;
	width: 184px;
	padding: 14px;
	border-radius: 14px;
	background: #fff;
	color: var(--uts-dark);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-6px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
	/* Keep the popup open briefly after the mouse leaves. */
	transition-delay: .3s;
}

.uts-appbar__item:hover .uts-appbar__pop,
.uts-appbar__item:focus-within .uts-appbar__pop {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	transition-delay: 0s;
}

.uts-appbar__pop-title {
	display: block;
	margin-bottom: 10px;
	color: #000000;
	font-size: 12px;
	font-weight: 600;
}

.uts-appbar__qr {
	display: block;
	width: 150px;
	height: 150px;
	max-width: 100%;
	margin: 0 auto 12px;
}

.uts-appbar__logo {
	display: block;
	height: 22px !important;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	object-fit: contain;
}

@media (max-width: 640px) {
	.uts-appbar__inner {
		justify-content: center;
		padding: 7px 16px;
	}

	.uts-appbar__intro {
		display: none;
	}

	.uts-appbar__links {
		gap: 20px;
	}
}

/* ---------- Header ---------- */
.uts-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--uts-border);
}

.uts-header__inner {
	max-width: 1248px;
	margin: 0 auto;
	padding: 0 24px;
	height: 68px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.uts-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.uts-brand__logo {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.uts-nav {
	display: flex;
	align-items: center;
	/* Center while everything fits; align to the start on overflow so the
	   first menu item is never clipped outside the scrollable area. */
	justify-content: safe center;
	gap: 2px;
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.uts-nav__link {
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 5px;
	padding: 7px 13px;
	border-radius: 8px;
	color: #083c2f;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease;
}

.uts-nav__link:hover {
	background: #fff;
	color: var(--uts-green);
}

.uts-nav__link svg {
	width: 12px;
	height: 12px;
	stroke-width: 2.4;
}

/* Nav items come from the menus API and may or may not have a direct URL
   (parents with only a dropdown render as a <span>, not an <a>) — both share
   .uts-nav__link styling, so give the non-link version a pointer cursor too. */
.uts-nav__item {
	position: relative;
	flex: 0 0 auto;
}

.uts-nav__item span.uts-nav__link {
	cursor: pointer;
}

.uts-nav__dropdown {
	position: fixed;
	top: var(--uts-dropdown-top, 68px);
	left: var(--uts-dropdown-left, 0);
	margin-top: 0;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--uts-border);
	border-radius: 14px;
	box-shadow: 0 16px 32px rgba(15, 31, 46, .1), 0 2px 6px rgba(0, 0, 0, .05);
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	z-index: 60;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.uts-nav__item--has-dropdown:hover > .uts-nav__dropdown,
.uts-nav__item--has-dropdown:focus-within > .uts-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.uts-nav__dropdown-link {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	color: #083c2f;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease;
}

.uts-nav__dropdown-link:hover {
	background: var(--uts-bg);
	color: var(--uts-green);
}

.uts-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.uts-auth-button-wrap {
	display: inline-flex;
	min-width: 0;
}

.uts-header .uts-auth-btn {
	height: 48px;
	padding: 16px 12px;
	border: 1px solid #e0e5e4;
	border-radius: 5px;
	background: #fff;
	box-shadow: none;
	color: #083c2f;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	font-weight: 600;
}

.uts-header .uts-auth-btn:not(.uts-auth-btn--logged-in) {
	text-transform: uppercase;
}

.uts-header .uts-auth-btn:hover {
	border-color: #e0e5e4;
	background: #083C2F;
	color: #ffffff;
	box-shadow: none;
	transform: none;
}

.uts-auth-btn--logged-in {
	display: block;
	font-size: 12px !important;
	line-height: 14px;
	max-width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: default;
}

.uts-menu-toggle {
	display: none;
	width: 40px;
	height: 36px;
	margin-left: auto;
	padding: 10px;
	border: 1px solid var(--uts-border);
	border-radius: 6px;
	background: #fff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 3px;
	cursor: pointer;
}

.uts-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: #083c2f;
}

.uts-mobile-menu[hidden] {
	display: none;
}

.uts-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	justify-content: flex-end;
	visibility: hidden;
	pointer-events: none;
	transition: visibility 0s linear .25s;
}

.uts-mobile-menu.is-open {
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

.uts-mobile-menu__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(15, 31, 46, .48);
	cursor: default;
	opacity: 0;
	transition: opacity .25s ease;
}

.uts-mobile-menu.is-open .uts-mobile-menu__backdrop {
	opacity: 1;
}

.uts-mobile-menu__panel {
	position: relative;
	width: 400px;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: -16px 0 40px rgba(15, 31, 46, .16);
	overflow-y: auto;
	opacity: 0;
	transition: opacity .25s ease, transform .25s ease;
}

.uts-mobile-menu.is-open .uts-mobile-menu__panel {
	opacity: 1;
	transform: translateX(0);
}

.uts-mobile-menu__head {
	min-height: 68px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--uts-border);
}

.uts-mobile-menu__title {
	color: #083c2f;
	font-size: 18px;
	font-weight: 700;
}

.uts-mobile-menu__close {
	font-size: 30px;
    font-weight: 300;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: #ffffff;
	color: #083c2f;
	cursor: pointer;
}

.uts-mobile-nav {
	padding: 16px 20px;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.uts-mobile-nav__item {
	padding: 4px 0;
	border-bottom: 1px solid var(--uts-border);
}

.uts-mobile-nav__link,
.uts-mobile-nav__label,
.uts-mobile-nav__trigger {
	display: block;
	width: 100%;
	padding: 12px 4px;
	color: #083c2f;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	text-decoration: none;
}

.uts-mobile-nav__trigger {
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	cursor: pointer;
}

.uts-mobile-nav__trigger svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	transition: transform .2s ease;
}

.uts-mobile-nav__trigger[aria-expanded="true"] {
	color: #083c2f;
}

.uts-mobile-nav__trigger[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.uts-mobile-nav__link:hover,
.uts-mobile-nav__trigger:hover {
	color: #28ae68;
}

.uts-mobile-nav__children[hidden] {
	display: none;
}

.uts-mobile-nav__children {
	max-height: 0;
	margin: 0 0 0 12px;
	padding-left: 12px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	opacity: 0;
	transition: max-height .25s ease, opacity .2s ease, margin-bottom .25s ease;
}

.uts-mobile-nav__children.is-open {
	margin-bottom: 8px;
	opacity: 1;
}

.uts-mobile-nav__child {
	padding: 9px 4px;
	color: #083c2f;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.uts-mobile-nav__child:hover {
	color: #28ae68;
}

.uts-mobile-menu__actions {
	padding: 18px 20px max(18px, env(safe-area-inset-bottom));
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--uts-border);
}

.uts-mobile-menu__actions .uts-btn.uts-btn--primary.uts-auth-btn{
	font-size: 14px;
}

.uts-mobile-menu__actions .uts-btn,
.uts-mobile-menu__actions .uts-auth-button-wrap {
	flex: 1;
}

.uts-mobile-menu__actions .uts-auth-button-wrap .uts-btn {
	width: 100%;
}

.uts-language-switcher {
	position: relative;
	display: inline-flex;
	flex-shrink: 0;
}

.uts-lang {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: 1px solid transparent;
	color: #083c2f;
	font-size: 13px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	padding: 6px 8px;
	border-radius: 10px;
}

.uts-lang:hover,
.uts-lang[aria-expanded="true"] {
	background: #ffffff;
	color: #28ae68;
}

.uts-lang svg {
	width: 10px;
	height: 10px;
	stroke-width: 2.4;
	transition: transform .2s ease;
}

.uts-lang[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.uts-language-menu[hidden] {
	display: none;
}

.uts-language-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 120;
	min-width: 92px;
	padding: 6px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	border: 1px solid var(--uts-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(15, 31, 46, .14);
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.uts-language-menu.is-open {
	visibility: visible;
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0s;
}

.uts-language-menu__link {
	padding: 8px 10px;
	border-radius: 8px;
	color: #083c2f;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

.uts-language-menu__link:hover {
	background: var(--uts-bg);
	color: #28ae68;
}

.uts-language-menu__link.is-current {
	background: #eaf8f0;
	color: #28ae68;
}

.uts-mobile-menu__actions .uts-language-menu {
	top: auto;
	right: auto;
	bottom: calc(100% + 8px);
	left: 0;
	transform: translateY(6px);
}

.uts-mobile-menu__actions .uts-language-menu.is-open {
	transform: translateY(0);
}

/* ---------- Hero ---------- */
/*
 * The source image is a full-bleed hero background (white fading to green,
 * phone mockup + floating partner logos already baked in bottom-right) —
 * same asset/crop the Figma design uses behind the whole Hero section.
 * `cover` only scales up as much as needed to fill the box, which made the
 * phone/logo cluster read smaller than the Figma crop (Figma scales that same
 * image to ~113% of the section, anchored bottom-right). We size it explicitly
 * larger than `cover` so it matches the design's zoom level at any width.
 */
.uts-hero {
	background-color: var(--uts-bg);
	background-repeat: no-repeat;
	background-position: 90% 55%;
	background-size: 2150px auto;
	overflow: hidden;
	/* Vertical rhythm lives on the section (not the grid) so the stats card
	   below can sit almost flush against the hero content — like the design —
	   while still leaving breathing room under the card before the next section. */
	padding-top: 72px;
	padding-bottom: 28px;
}

.uts-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	min-height: 522px;
}

.uts-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	max-width: 520px;
}

.uts-badge {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 18px;
	border-radius: 99px;
	background: var(--uts-badge-bg);
	border: 1px solid var(--uts-badge-border);
	color: var(--uts-green-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.uts-hero__title {
	margin: 0;
	font-size: 52px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -1.56px;
	color: var(--uts-dark);
}

.uts-hero__desc {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--uts-muted);
}

.uts-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.uts-hero__visual {
	min-height: 1px;
}

/* ---------- Stats ---------- */
.uts-stats {
	position: relative;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0px 4px 4px 0px #00000040;
	padding: 32px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
	z-index: 2;
}

.uts-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 130px;
}

.uts-stat__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 11px;
}

.uts-stat__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.uts-stat__value {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.66px;
	color: var(--uts-dark);
	line-height: 1.1;
}

.uts-stat__label {
	font-size: 12px;
	font-weight: 500;
	color: var(--uts-muted);
}

/* ---------- Sections ---------- */
.uts-section {
	padding: 72px 0;
}

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

.uts-section__head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.uts-section__title {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: -0.9px;
	color: var(--uts-dark);
}

.uts-section__sub {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: var(--uts-muted);
}

/* ---------- Grid & cards ---------- */
.uts-grid {
	display: grid;
	gap: 18px;
}

.uts-grid--5 {
	grid-template-columns: repeat(5, 1fr);
}

.uts-card {
	background: #fff;
	border-radius: var(--uts-radius);
	padding: 26px 18px 22px;
	box-shadow: var(--uts-shadow);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.uts-card--soft {
	background: var(--uts-bg);
	box-shadow: none;
}

.uts-card--center {
	align-items: center;
	text-align: center;
}

/* Category icons (Explore Cashback by Financial Category) ship as
   self-contained 56x56 SVGs with their own gradient box baked in, so they
   render directly — no wrapping background box needed. */
.uts-category-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 4px;
}

/* Benefit icons (Why Choose UTSPAY) also ship as self-contained SVGs (own
   rounded box baked in). Source canvases vary (42x42 / 60x60) but SVGs scale
   losslessly, so every icon is normalized to a uniform 60x60 display size. */
.uts-benefit-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 4px;
}

.uts-card__title {
	margin: 0;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--uts-dark);
}

.uts-card__desc {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--uts-muted);
	flex: 1;
}

.uts-card__link {
	margin-top: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--uts-green);
	text-decoration: none;
}

.uts-card__link:hover {
	color: var(--uts-green-dark);
}

/* ---------- Steps ---------- */
.uts-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
}

.uts-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 8px;
	position: relative;
}

.uts-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background: var(--uts-green);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	box-shadow: 0 8px 12px rgba(40, 174, 104, .22);
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

/* Connector between step numbers: a light-green arrow, not a dashed line,
   bridging the gap between this step's circle and the next one's. */
.uts-step__arrow {
	position: absolute;
	top: 10px;
	right: -50%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--uts-badge-border);
	z-index: 0;
	pointer-events: none;
}

.uts-step__arrow svg {
	width: 20px;
	height: 20px;
}

/* Step icons ship as self-contained 88x88 SVGs (rounded white box, border,
   drop shadow and glyph already baked in) — displayed as-is, no wrapper box. */
.uts-step__icon-wrap {
	position: relative;
	display: inline-flex;
	margin-bottom: 8px;
}

.uts-step__icon {
	width: 88px;
	height: 88px;
	display: block;
}

/* Fallback glyph overlaid on top of icons whose source SVG shipped empty
   (box/shadow only, no icon inside) — centered over the 72px inner box. */
.uts-step__icon-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--uts-green);
}

.uts-step__icon-fallback svg {
	width: 34px;
	height: 34px;
}

.uts-step__title {
	margin: 0 0 6px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--uts-dark);
}

.uts-step__desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.55;
	color: var(--uts-muted);
}

/* ---------- Partners ---------- */
.uts-partners {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 10px;
}

/* Real partner logos ship as self-contained cards (white rounded box +
   shadow already baked into the PNG). Figma's own box for this card is a
   fixed 143x68 (not the PNG's native ~1.82:1 aspect), so size the box to
   that exact spec and let the image cover it, instead of deriving width
   from the source file's aspect ratio (which came out ~20px too narrow). */
.uts-partner-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 143px;
	height: 68px;
	border-radius: 16px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .07), 0 1px 1.5px rgba(0, 0, 0, .04);
}

.uts-partner-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	display: block;
}

.uts-partner  {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 143px;
	height: 68px;
	padding: 16px 28px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .07), 0 1px 1.5px rgba(0, 0, 0, .04);
	font-size: 16px;
	font-weight: 700;
	color: var(--uts-dark);
	letter-spacing: -0.2px;
}

.uts-partner--all {
	flex-direction: column;
	gap: 3px;
	min-width: 80px;
	color: var(--uts-green);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.uts-partner--all:hover {
	color: var(--uts-green-dark);
}

.uts-partner--all-icon {
	width: 24px;
	height: 13px;
	display: block;
}

/* ---------- CTA ---------- */
.uts-cta {
	padding: 65px 0;
	border-top: 1px solid var(--uts-badge-border);
	border-bottom: 1px solid var(--uts-badge-border);
	background: linear-gradient(135deg, #f0fbf5 0%, #e8f7ef 60%, #d4f0e3 100%);
}

.uts-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.uts-cta__title {
	margin: 0 0 7px;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.75px;
	color: var(--uts-dark);
}

.uts-cta__sub {
	margin: 0;
	font-size: 16px;
	color: var(--uts-muted);
}

.uts-cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.uts-header {
		background: #fff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

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

	.uts-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px 8px;
	}

	.uts-step__arrow {
		display: none;
	}

	.uts-hero__title {
		font-size: 42px;
	}

	.uts-nav {
		display: none;
	}

	.uts-header__actions {
		display: flex;
		margin-left: auto;
		gap: 8px;
	}

	.uts-header__actions .uts-language-switcher {
		display: inline-flex;
		order: 2;
	}

	.uts-header__actions > .uts-auth-btn,
	.uts-header__actions > .uts-auth-button-wrap {
		order: 1;
	}

	.uts-header__actions .uts-auth-btn {
		height: 48px;
		padding: 16px 12px;
		font-size: 14px;
	}

	.uts-menu-toggle {
		display: flex;
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.uts-header__actions > .uts-auth-btn,
	.uts-header__actions > .uts-auth-button-wrap {
		display: none;
	}

	.uts-hero {
		background-image: none !important;
	}

	.uts-hero {
		padding-top: 48px;
		padding-bottom: 40px;
	}

	.uts-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.uts-hero__visual {
		display: none;
	}

	.uts-stats-wrap {
		margin-top: 24px;
	}

	.uts-grid--5,
	.uts-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.uts-stats {
		gap: 16px;
	}

	.uts-stat {
		min-width: calc(50% - 8px);
	}

	.uts-section {
		padding: 48px 0;
	}

	.uts-section__title {
		font-size: 28px;
	}

	.uts-hero__title {
		font-size: 36px;
	}

	.uts-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.uts-header__inner {
		padding: 0 12px;
		gap: 6px;
	}

	.uts-header__actions {
		gap: 4px;
	}

	.uts-header__actions .uts-auth-btn {
		padding: 0 10px;
		font-size: 11px;
	}

	.uts-header__actions .uts-lang {
		padding-right: 6px;
		padding-left: 6px;
	}

	.uts-grid--5,
	.uts-steps {
		grid-template-columns: 1fr;
	}

	.uts-partner {
		min-width: calc(50% - 5px);
		flex: 1;
	}

	.uts-partner-logo {
		width: auto;
		min-width: calc(50% - 5px);
		flex: 1;
	}
}
