@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* 6-level font scale */
:root {
  --fs-1: 3rem;
  --fs-2: 2rem;
  --fs-3: 1.5rem;
  --fs-4: 1rem;
  --fs-5: 0.875rem;
  --fs-6: 0.75rem;
}

* {
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f9fafb;
	color: #0f172a;
	overflow-x: hidden;
}

.header {
	background-color: #ffffff;
	color: #111827;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px 18px;
	border-bottom: 1px solid #e5e7eb;
}

.header-logo {
	display: flex;
	align-items: center;
	max-width: 260px;
	height: 56px;
}

.header-logo a {
	display: flex;
	align-items: center;
	height: 100%;
	text-decoration: none;
}

.header-logo img {
	display: block;
	height: 100%;
	width: auto;
	object-fit: contain;
	transition: transform 0.2s ease;
}

.header-logo a:hover img {
	transform: scale(1.03);
}

.home-link {
	color: #111827;
	text-decoration: none;
	font-size: var(--fs-4);
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	background-color: #ffffff;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.home-link:hover {
	background-color: #f3f4f6;
	border-color: #9ca3af;
}
.language-selector-container {
	display: inline-flex;
	align-items: center;
}

.language-switch {
	position: relative;
	display: inline-flex;
	background: #f3f4f6;
	border-radius: 999px;
	padding: 3px;
	border: 1px solid #e5e7eb;
}

.language-switch input[type="radio"] {
	display: none;
}

.language-switch label {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	cursor: pointer;
	position: relative;
	z-index: 2;
	transition: color 0.25s ease;
	color: #4b5563;
	font-weight: 500;
	font-size: var(--fs-5);
}

.language-switch label .flag {
	font-size: var(--fs-4);
}

.language-switch input[type="radio"]:checked + label {
	color: #ffffff;
}

.language-switch .slider {
	position: absolute;
	top: 3px;
	left: 3px;
	height: calc(100% - 6px);
	width: calc(50% - 3px);
	background: #111827;
	border-radius: 999px;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
	box-shadow: 0 3px 10px rgba(37, 99, 235, 0.4);
}

.language-switch input[type="radio"]:nth-of-type(2):checked ~ .slider {
	transform: translateX(100%);
}

.language-switch label:hover {
	color: #111827;
}

.language-switch input[type="radio"]:checked + label:hover {
	color: #ffffff;
}

@media (max-width: 900px) {
	.header {
		justify-content: center;
	}

	.header-logo {
		justify-content: flex-start;
		flex: 1 1 100%;
	}

	.home-link {
		order: 3;
		flex: 1 1 100%;
		text-align: center;
	}

	.language-selector-container {
		order: 2;
		margin-left: 0;
		margin-right: auto;
	}

	.language-switch {
		justify-content: flex-start;
	}

	.language-switch label {
		text-align: left;
		justify-content: flex-start;
	}
}

@media (max-width: 600px) {
	.header {
		padding: 12px 16px;
		justify-content: space-between;
		flex-wrap: nowrap;
	}

	.header-logo {
		order: 1;
		justify-content: flex-start;
		height: 50px;
		flex: 0 1 auto;
		margin-left: 0;
	}

	.header-logo img {
		max-width: 140px;
		height: auto;
	}

	.language-selector-container {
		order: 2;
		flex: 0 1 auto;
		margin-left: auto;
		margin-right: 0;
	}

	.language-switch {
		justify-content: flex-start;
	}

	.language-switch label {
		text-align: left;
		justify-content: flex-start;
	}

	.language-selector {
		font-size: var(--fs-5);
		padding: 6px 16px;
		min-width: 96px;
		border-radius: 999px;
		border: 1px solid #d1d5db;
		background: #ffffff;
		font-weight: 500;
		color: #111827;
	}

	.language-selector:hover {
		background: #f3f4f6;
		border-color: #9ca3af;
	}

	.language-selector:focus {
		border-color: #111827;
		box-shadow: 0 0 0 1px #111827;
	}

	.language-selector-container::after {
		right: 12px;
		font-size: var(--fs-6);
		color: #9ca3af;
	}

	.home-link {
		display: none;
	}
}

.merchant-page {
	font-family: "Plus Jakarta Sans", sans-serif;
	background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
	min-height: 60vh;
	padding: 32px 20px 0;
}

.merchant-page .hero-block {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	color: #f8fafc;
	border-radius: 24px;
	max-width: 1100px;
	margin: 0 auto 28px;
	padding: 48px 40px;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.merchant-page .hero-block .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex-wrap: wrap;
	max-width: 100%;
}

.merchant-page .hero-block .text-content {
	flex: 1;
	min-width: 280px;
}

.merchant-page .hero-block h1 {
	font-size: var(--fs-2);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #f8fafc;
	margin: 0 0 16px;
	line-height: 1.25;
}

.merchant-page .hero-block p {
	font-size: var(--fs-4);
	line-height: 1.75;
	color: #cbd5e1;
	margin: 0 0 10px;
}

.merchant-page .hero-block .image-content {
	flex: 1;
	min-width: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.merchant-page .hero-block .image-content img {
	width: 100%;
	max-width: 480px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.merchant-page .card-block {
	background: #ffffff;
	border-radius: 20px;
	max-width: 1000px;
	margin: 0 auto 28px;
	padding: 44px 40px;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.merchant-page .card-block:hover {
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.merchant-page .card-block .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	max-width: 100%;
}

.merchant-page .card-block .text-content {
	flex: 1;
	min-width: 260px;
}

.merchant-page .card-block h1 {
	font-size: var(--fs-2);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
	margin: 0 0 14px;
	line-height: 1.3;
	padding-left: 16px;
	border-left: 4px solid #0d9488;
}

.merchant-page .card-block p {
	font-size: var(--fs-4);
	line-height: 1.7;
	color: #475569;
	margin: 0 0 10px;
}

.merchant-page .card-block .image-content {
	flex: 1;
	min-width: 260px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.merchant-page .card-block .image-content img,
.merchant-page .card-block .gradient-image-container img {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	display: block;
	object-fit: contain;
}

.merchant-page .gradient-image-container {
	background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
	padding: 20px;
	border-radius: 14px;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	border: 1px solid rgba(226, 232, 240, 0.9);
}

.merchant-page .section-row-reverse .container {
	flex-direction: row-reverse;
}

.merchant-page .section-centered .container {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
}

.merchant-page .section-centered .text-content {
	text-align: center;
}

.merchant-page .section-centered h1 {
	padding-left: 0;
	border-left: none;
	text-align: center;
	border-bottom: 3px solid #0d9488;
	padding-bottom: 10px;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

.merchant-page .section-centered .image-content {
	margin-top: 8px;
}

.merchant-page .merchant-cta.gradient-bottom {
	background-color: #ffffff;
	color: #111827;
	margin: 0;
	margin-top: 40px;
	padding: 28px 20px 32px;
	border-top: 1px solid #e5e7eb;
	box-shadow: none;
}

.merchant-page .merchant-cta .container {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
}

.merchant-page .merchant-cta .text-content p {
	font-size: var(--fs-4);
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

.merchant-page .merchant-cta .button {
	background-color: #111827;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 999px;
	font-weight: 500;
	font-size: var(--fs-4);
	border: 1px solid #111827;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.merchant-page .merchant-cta .button:hover {
	background-color: #374151;
	border-color: #374151;
	transform: translateY(-1px);
}

.gradient-section {
	background: #f9fafb;
	color: #0f172a;
	padding: 40px 24px;
}

.gradient-section .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.gradient-section .text-content {
	flex: 1;
	margin-right: 20px;
}

.gradient-section .image-content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gradient-section .image-content .gradient-image-container {
	width: 100%;
	max-width: 100%;
}

.gradient-section .image-content img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	object-fit: contain;
}

.gradient-section h1 {
	font-size: var(--fs-1);
	margin-bottom: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

.gradient-section p {
	font-size: var(--fs-3);
	line-height: 1.8;
	color: #e0e0e0;
}

.gradient-section .button {
	padding: 12px 25px;
	background: linear-gradient(to right, #29323c, #485563);
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-size: var(--fs-4);
	margin-top: 20px;
	transition:
		background 0.3s ease,
		transform 0.3s ease;
	font-weight: 600;
}

.gradient-section .button:hover {
	background: linear-gradient(to right, #485563, #29323c);
	transform: translateY(-3px);
}

.white-section {
	background-color: #ffffff;
	padding: 40px 24px;
}

.white-section .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.white-section .text-content {
	flex: 1;
	margin-left: 20px;
}

.white-section .image-content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.white-section .image-content .gradient-image-container {
	width: 100%;
	max-width: 100%;
}

.white-section .image-content.image-content--small,
.white-section .image-content.image-content--small .gradient-image-container {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}
.white-section .image-content.image-content--small img {
	max-width: 100%;
}

.white-section .image-content img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	object-fit: contain;
}

.white-section h1 {
	font-size: var(--fs-1);
	margin-bottom: 20px;
	font-weight: bold;
	color: #333;
}

.white-section p {
	font-size: var(--fs-3);
	line-height: 1.8;
	color: #555;
}

.white-section .button {
	padding: 12px 25px;
	background-color: #485563;
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-size: var(--fs-4);
	margin-top: 20px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
	font-weight: 600;
}

.white-section .button:hover {
	background-color: #29323c;
	transform: translateY(-3px);
}

.gradient-section img,
.white-section img {
	max-width: 100%;
	width: 100%;
	height: auto;
	image-rendering: crisp-edges;
	border-radius: 10px;
	display: block;
	object-fit: contain;
}

.two-images {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.two-images img {
	flex: 1;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gradient-image-container {
	background: linear-gradient(to right, #f5f7fa, #c3cfe2);
	padding: 20px;
	border-radius: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gradient-image-container img {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: block;
	object-fit: contain;
}
.gradient-bottom {
	background: #ffffff;
	color: #111827;
	padding: 40px 24px;
}

.gradient-bottom .container {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.gradient-bottom .text-content p {
	font-size: var(--fs-3);
	color: #e0e0e0;
	line-height: 1.8;
}

.gradient-bottom .button {
	padding: 12px 25px;
	background-color: #29323c;
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-size: var(--fs-4);
	margin-top: 20px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
	font-weight: 600;
}

.gradient-bottom .button:hover {
	background-color: #485563;
	transform: translateY(-3px);
}

.gradient-section,
.white-section {
	background-color: #ffffff;
	padding: 56px 24px;
	border-bottom: 1px solid #e5e7eb;
}

.gradient-section .container,
.white-section .container {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.gradient-section .text-content,
.white-section .text-content {
	flex: 1;
	margin: 0;
}

.gradient-section .image-content,
.white-section .image-content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gradient-section h1,
.white-section h1 {
	font-size: var(--fs-2);
	line-height: 1.25;
	margin: 0 0 16px;
	font-weight: 600;
	letter-spacing: 0;
	color: #111827;
}

.gradient-section p,
.white-section p {
	font-size: var(--fs-4);
	line-height: 1.7;
	color: #4b5563;
	margin: 0 0 12px;
}

.gradient-section img,
.white-section img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
	object-fit: contain;
}

.gradient-image-container {
	width: 100%;
	max-width: 420px;
	padding: 0;
	border-radius: 12px;
	background: transparent;
	box-shadow: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gradient-image-container img {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: none;
	display: block;
	object-fit: contain;
}

.gradient-bottom {
	background-color: #ffffff;
	color: #111827;
	padding: 40px 24px 56px;
	border-top: 1px solid #e5e7eb;
}

.gradient-bottom .container {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.gradient-bottom .text-content p {
	font-size: var(--fs-4);
	color: #4b5563;
	line-height: 1.7;
	margin: 0;
}

.gradient-bottom .button,
.gradient-section .button,
.white-section .button {
	padding: 10px 20px;
	background-color: #111827;
	color: #ffffff;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	font-size: var(--fs-4);
	margin-top: 20px;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
	font-weight: 500;
}

.gradient-bottom .button:hover,
.gradient-section .button:hover,
.white-section .button:hover {
	background-color: #4b5563;
	transform: translateY(-1px);
}

.section-row-reverse .container {
	flex-direction: row-reverse;
}

.section-centered .container {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
}

.section-centered .text-content {
	text-align: center;
}

.section-centered .image-content {
	margin-top: 16px;
}

@media (max-width: 768px) {
	.header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .header-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

	.gradient-section .container,
	.white-section .container,
	.gradient-bottom .container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.gradient-section .text-content,
	.white-section .text-content {
		margin-right: 0;
		margin-left: 0;
		text-align: center !important;
		width: 100%;
	}

	.gradient-section .image-content,
	.white-section .image-content {
		width: 100%;
		margin-top: 20px;
		justify-content: center;
		align-items: center;
	}

	.gradient-section .image-content img,
	.white-section .image-content img {
		width: 100%;
		max-width: 100%;
		height: auto;
		display: block;
		margin-left: 0;
		margin-right: auto;
	}

   .home-link {
        font-size: var(--fs-4);
        padding: 8px 16px;
    }

    .language-selector {
        font-size: var(--fs-5);
        padding: 4px 8px;
    }
	.gradient-section h1,
	.white-section h1 {
		font-size: var(--fs-2);
		text-align: center;
	}

	.gradient-section p,
	.white-section p {
		font-size: var(--fs-4);
		text-align: center;
	}

	.two-images {
		flex-direction: column;
		gap: 10px;
	}

	.gradient-section .button,
	.white-section .button {
		width: 100%;
		font-size: var(--fs-4);
		padding: 10px 20px;
	}

	.gradient-bottom .container {
		align-items: center;
		text-align: center;
	}

	.gradient-bottom .text-content {
		text-align: center;
	}

	.gradient-bottom p {
		text-align: center;
	}

	/* Merchant page: mobile */
	.merchant-page {
		padding: 20px 16px 0;
	}

	.merchant-page .hero-block {
		padding: 32px 24px;
		margin-bottom: 20px;
	}

	.merchant-page .hero-block .container {
		flex-direction: column;
		gap: 28px;
		text-align: center;
	}

	.merchant-page .hero-block .image-content {
		order: 2;
		width: 100%;
	}

	.merchant-page .hero-block .image-content img {
		max-width: 100%;
	}

	.merchant-page .card-block {
		padding: 28px 20px;
		margin-bottom: 20px;
	}

	.merchant-page .card-block .container {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 24px;
	}

	.merchant-page .card-block h1 {
		font-size: var(--fs-3);
		padding-left: 0;
		border-left: none;
		border-bottom: 3px solid #0d9488;
		text-align: center;
	}

	.merchant-page .section-centered h1 {
		padding-left: 0;
		border-left: none;
		border-bottom: 3px solid #0d9488;
		text-align: center;
	}

	.merchant-page .card-block .image-content {
		width: 100%;
		margin-top: 0;
	}

	.merchant-page .merchant-cta.gradient-bottom {
		padding: 24px 20px 28px;
		margin-top: 28px;
	}

	.merchant-page .merchant-cta .text-content p {
		font-size: var(--fs-4);
	}
}

@media (max-width: 480px) {
	 .header .logo {
        font-size: var(--fs-3);
    }

    .home-link {
        font-size: var(--fs-4);
        padding: 6px 12px;
    }

    .header img {
        width: 80px;
        height: 40px;
    }

    .language-selector {
    	margin-right: 55%;
        font-size: var(--fs-6);
        padding: 0px 45px;
    }
	.gradient-section h1,
	.white-section h1 {
		font-size: var(--fs-2);
		text-align: center;
	}
	.gradient-section p,
	.white-section p {
		font-size: var(--fs-5);
		text-align: center;
	}

	.gradient-section .text-content,
	.white-section .text-content {
		text-align: center !important;
	}

	.two-images img {
		max-width: 100%;
	}

	.merchant-page {
		padding: 16px 12px 0;
	}

	.merchant-page .hero-block {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.merchant-page .hero-block h1 {
		font-size: var(--fs-2);
	}

	.merchant-page .card-block {
		padding: 22px 16px;
		border-radius: 16px;
	}

	.merchant-page .card-block h1 {
		font-size: var(--fs-3);
		padding-left: 0;
		text-align: center;
	}

	.merchant-page .merchant-cta.gradient-bottom {
		padding: 20px 16px 24px;
	}
}
