/* Country Landing Page Styles */

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.country-landing-page {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #FCFAF8;
}

/* Layout */
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Display */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }

/* Flexbox */
.flex-col { flex-direction: column; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pt-3 { padding-top: 0.75rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-3 { margin-top: 0.75rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.h-full { height: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }

.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-left { text-align: left; }
.text-center { text-align: center; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Colors */
.text-white { color: #fff; }
.text-black { color: #000; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-blue-600 { color: #2563EB; }
.text-green-600 { color: #059669; }
.text-red-600 { color: #DC2626; }
.text-purple-600 { color: #9333EA; }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-blue-50 { background-color: #EFF6FF; }
.bg-blue-100 { background-color: #DBEAFE; }
.bg-green-50 { background-color: #ECFDF5; }
.bg-green-100 { background-color: #D1FAE5; }
.bg-red-50 { background-color: #FEF2F2; }
.bg-purple-100 { background-color: #F3E8FF; }
.bg-orange-100 { background-color: #FFEDD5; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-blue-50 { --tw-gradient-from: #EFF6FF; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); }
.from-gray-50 { --tw-gradient-from: #F9FAFB; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); }
.from-green-500 { --tw-gradient-from: #10B981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
.from-pink-50 { --tw-gradient-from: #FDF2F8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); }
.to-indigo-50 { --tw-gradient-to: #EEF2FF; }
.to-white { --tw-gradient-to: #fff; }
.to-emerald-600 { --tw-gradient-to: #059669; }
.to-orange-50 { --tw-gradient-to: #FFF7ED; }

/* Border */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t-2 { border-top-width: 2px; }
.border-gray-200 { border-color: #E5E7EB; }
.border-gray-300 { border-color: #D1D5DB; }
.border-red-200 { border-color: #FECACA; }
.border-red-300 { border-color: #FCA5A5; }
.border-green-200 { border-color: #BBF7D0; }
.border-green-300 { border-color: #86EFAC; }
.border-blue-200 { border-color: #BFDBFE; }
.border-black { border-color: #000; }
.border-white { border-color: #fff; }

/* Rounded */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Opacity */
.opacity-40 { opacity: 0.4; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Hover States */
.hover\:bg-gray-800:hover { background-color: #1F2937; }
.hover\:bg-black\/5:hover { background-color: rgba(0, 0, 0, 0.05); }
.hover\:text-blue-600:hover { color: #2563EB; }
.hover\:text-blue-800:hover { color: #1E40AF; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:gap-3:hover { gap: 0.75rem; }

/* Focus States */
.focus\:ring-2:focus { outline: 2px solid transparent; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2563EB; }
.focus\:ring-blue-500:focus { --tw-ring-color: #3B82F6; }
.focus\:border-blue-500:focus { border-color: #3B82F6; }

/* Aspect Ratio */
.aspect-\[21\/6\] { aspect-ratio: 21 / 6; }

/* Background Pattern */
.bg-pattern {
	background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C92AC" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Form Inputs */
input[type="number"],
input[type="text"],
input[type="email"],
input[type="url"],
textarea,
select {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #D1D5DB;
	border-radius: 0.5rem;
	font-size: 1rem;
	line-height: 1.5;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

/* Buttons */
button,
.button,
a.button {
	display: inline-block;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: all 0.15s;
}

button:hover,
.button:hover {
	transform: translateY(-1px);
}

/* Animation */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#calculator-results {
	animation: slideDown 0.5s ease-out;
}

/* Responsive */
@media (min-width: 640px) {
	.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
	.sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
	.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
	.md\:text-5xl { font-size: 3rem; line-height: 1; }
	.md\:text-left { text-align: left; }
	.md\:mx-0 { margin-left: 0; margin-right: 0; }
	.md\:pb-20 { padding-bottom: 5rem; }
	.md\:w-auto { width: auto; }
}

@media (min-width: 1024px) {
	.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
	.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.lg\:justify-end { justify-content: flex-end; }
	.lg\:mt-\[6\.5rem\] { margin-top: 6.5rem; }
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* List Styles */
ul.list-disc {
	list-style-type: disc;
	padding-left: 1.5rem;
}

/* SVG Icons */
svg {
	display: inline-block;
	vertical-align: middle;
}

/* ========================================
   HERO SECTION - Figma Design
   ======================================== */

/* Hero Section Base */
.country-hero-section {
	position: relative;
	background: #fcfaf7;
	overflow: hidden;
	padding: 100px 0;
}

/* Background Pattern Layer */
.country-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-image: url('/wp-content/uploads/2025/12/warm-bg.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.country-hero-bg-pattern {
	display: none;
}

/* Container */
.country-hero-container {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px 24px 0;
}

/* Content Wrapper */
.country-hero-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Hero Banner (Map Image) */
.country-hero-banner {
	width: 100%;
	height: 256px;
	border-radius: 28px;
	overflow: hidden;
	margin-bottom: 16px;
}

.country-hero-banner-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.country-hero-banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Two Column Layout */
.country-hero-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	align-items: start;
}

@media (min-width: 1024px) {
	.country-hero-columns {
		grid-template-columns: 1fr 380px;
		gap: 40px;
	}
}

/* Left Column - Main Content */
.country-hero-main {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Country Flag Icon */
.country-hero-flag {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
}

.country-hero-flag-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Headline */
.country-hero-headline {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -1.44px;
	color: #111111;
	margin: 0;
}

@media (max-width: 768px) {
	.country-hero-headline {
		font-size: 36px;
		letter-spacing: -1.08px;
	}
}

/* Description */
.country-hero-description {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1.5;
	color: #666666;
	margin: 0;
}

@media (max-width: 768px) {
	.country-hero-description {
		font-size: 20px;
	}
}

/* Right Column - CTA Card */
.country-hero-cta-card {
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.15);
	border-radius: 28px;
	padding: 36px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 28px;
}

@media (max-width: 1023px) {
	.country-hero-cta-card {
		padding: 28px;
	}
}

/* CTA Content */
.country-hero-cta-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.country-hero-cta-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: #111111;
	margin: 0;
}

.country-hero-cta-subtitle {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #666666;
	margin: 0;
}

/* CTA Buttons */
.country-hero-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Button Base */
.country-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 48px;
	padding: 0 24px;
	border-radius: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
	white-space: nowrap;
}

.country-hero-btn span {
	flex-shrink: 0;
}

.country-hero-btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

/* Primary Button (Black) */
.country-hero-btn-primary {
	background: #111111;
	color: #ffffff;
}

.country-hero-btn-primary:hover {
	background: #000000;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.country-hero-btn-primary:hover .country-hero-btn-icon {
	transform: translateX(2px);
}

/* Secondary Button (Ghost) */
.country-hero-btn-secondary {
	background: transparent;
	color: #111111;
	border: 1px solid rgba(17, 17, 17, 0.2);
}

.country-hero-btn-secondary:hover {
	background: rgba(17, 17, 17, 0.05);
	border-color: rgba(17, 17, 17, 0.3);
}

.country-hero-btn-secondary:hover .country-hero-btn-icon {
	transform: translateX(2px);
}

/* Responsive Padding Adjustments */
@media (max-width: 1023px) {
	.country-hero-section {
		padding: 60px 0;
	}

	.country-hero-banner {
		height: 200px;
		border-radius: 20px;
	}
}

@media (max-width: 640px) {
	.country-hero-section {
		padding: 40px 0;
	}

	.country-hero-container {
		padding: 0 16px;
	}

	.country-hero-banner {
		height: 160px;
		border-radius: 16px;
	}

	.country-hero-flag {
		width: 64px;
		height: 64px;
		border-radius: 12px;
	}

	.country-hero-cta-card {
		padding: 24px;
		border-radius: 20px;
	}

	.country-hero-btn {
		height: 44px;
		font-size: 15px;
	}
}

/* ========================================
   PROBLEM SECTION - Figma Design
   ======================================== */

/* Problem Section Base */
.country-problem-section {
	padding: 100px 0;
	background: #ffffff;
}

.country-problem-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* Header/Title Wrapper */
.country-problem-header {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.country-problem-headline {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -1.8px;
	color: #111111;
	margin: 0;
}

.country-problem-description {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1.4;
	color: #111111;
	margin: 0;
}

/* Problem Cards Grid */
.country-problem-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.country-problem-card {
	background: #f5f1ed;
	border-radius: 28px;
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Card Icon */
.country-problem-card-icon {
	width: 32px;
	height: 32px;
	color: #111111;
	flex-shrink: 0;
}

.country-problem-card-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.country-problem-card-icon-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* Card Content */
.country-problem-card-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.country-problem-card-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: #111111;
	margin: 0;
}

.country-problem-card-description {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	color: #191a23;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1023px) {
	.country-problem-section {
		padding: 80px 0;
	}

	.country-problem-container {
		padding: 0 24px;
		gap: 48px;
	}

	.country-problem-headline {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.country-problem-description {
		font-size: 24px;
	}

	.country-problem-cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.country-problem-section {
		padding: 60px 0;
	}

	.country-problem-container {
		gap: 36px;
	}

	.country-problem-header {
		gap: 24px;
	}

	.country-problem-headline {
		font-size: 36px;
		letter-spacing: -1.08px;
	}

	.country-problem-description {
		font-size: 20px;
	}

	.country-problem-card {
		padding: 28px;
	}

	.country-problem-card-title {
		font-size: 20px;
	}

	.country-problem-card-description {
		font-size: 18px;
	}
}

/* ========================================
   ADVANTAGES SECTION - Figma Design
   ======================================== */

/* Advantages Section Base */
.country-advantages-section {
	padding: 100px 0;
	background: #ffffff;
}

.country-advantages-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}

/* Header/Title Wrapper */
.country-advantages-header {
	max-width: 780px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.country-advantages-headline {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -1.8px;
	color: #111111;
	margin: 0;
}

.country-advantages-description {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1.4;
	color: #111111;
	margin: 0;
}

/* Advantage Cards Grid */
.country-advantages-cards {
	display: grid;
	grid-template-columns: repeat(4, 280px);
	gap: 20px;
	width: 1180px;
	justify-content: center;
}

.country-advantages-card {
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.15);
	border-radius: 28px;
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	backdrop-filter: blur(20px);
	box-shadow:
		0px 0.5px 2px 0px rgba(0, 0, 0, 0.08),
		inset 0px 0.5px 0px 0px rgba(255, 255, 255, 0.2),
		inset 0px 0px 8px 2px rgba(255, 255, 255, 0.12);
}

/* Icon Wrapper */
.country-advantages-card-icon-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
}

.country-advantages-card-icon-img {
	width: 56px;
	height: 56px;
	display: block;
	object-fit: contain;
}

/* Card Content */
.country-advantages-card-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.country-advantages-card-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: #191a23;
	margin: 0;
}

.country-advantages-card-description {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	color: #191a23;
	margin: 0;
	min-height: 130px;
}

/* Responsive Design */
@media (max-width: 1279px) {
	.country-advantages-cards {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		max-width: 600px;
	}
}

@media (max-width: 1023px) {
	.country-advantages-section {
		padding: 80px 0;
	}

	.country-advantages-container {
		padding: 0 24px;
		gap: 48px;
	}

	.country-advantages-headline {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.country-advantages-description {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.country-advantages-section {
		padding: 60px 0;
	}

	.country-advantages-container {
		gap: 36px;
	}

	.country-advantages-header {
		gap: 24px;
	}

	.country-advantages-headline {
		font-size: 36px;
		letter-spacing: -1.08px;
	}

	.country-advantages-description {
		font-size: 20px;
	}

	.country-advantages-cards {
		grid-template-columns: 1fr;
	}

	.country-advantages-card {
		padding: 28px;
	}

	.country-advantages-card-title {
		font-size: 20px;
	}

	.country-advantages-card-description {
		font-size: 18px;
		min-height: auto;
	}
}

/* ========================================
   CALCULATOR SECTION - Figma Design
   ======================================== */

/* Calculator Section Base */
.country-calculator-section {
	padding: 100px 0;
	background: #ffffff;
}

.country-calculator-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
}

.country-calculator-content-wrapper {
	background: #fff3da; /* orange-50 */
	border-radius: 28px;
	padding: 36px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
}

/* Background Pattern */
.country-calculator-content-wrapper::before {
	content: '';
	position: absolute;
	top: -255px;
	left: 50%;
	transform: translateX(-50%);
	width: 1920px;
	height: 1080px;
	background-image: url('/wp-content/uploads/2025/12/orange-bg.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	pointer-events: none;
}

/* Left Column: Title */
.country-calculator-title-wrapper {
	flex: 1;
	min-width: 380px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	z-index: 1;
}

.country-calculator-label {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #111111;
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0;
}

.country-calculator-headline {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	color: #111111;
	margin: 0;
}

/* Right Column: Calculator Card */
.country-calculator-card {
	flex: 1;
	background: #ffffff;
	border-radius: 28px;
	padding: 36px;
	backdrop-filter: blur(20px);
	box-shadow:
		0px 0.5px 2px 0px rgba(0, 0, 0, 0.08),
		inset 0px 0.5px 0px 0px rgba(255, 255, 255, 0.2),
		inset 0px 0px 8px 2px rgba(255, 255, 255, 0.12);
	position: relative;
	z-index: 1;
}

.country-calculator-card-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Card Header */
.country-calculator-card-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.country-calculator-card-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	color: #191a23;
	margin: 0;
}

.country-calculator-card-subtitle {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.43;
	color: #71717a;
	margin: 0;
}

/* Form */
.country-calculator-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.country-calculator-form-row {
	display: flex;
	gap: 20px;
}

.country-calculator-input-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 116px;
}

.country-calculator-label-text {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.33;
	color: #52525b;
	margin: 0 0 12px 0;
	white-space: nowrap;
}

.country-calculator-input {
	background: #f4f4f5;
	border: none;
	border-radius: 12px;
	padding: 17px 12px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.43;
	color: #52525b;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	min-height: 32px;
	transition: all 0.2s ease;
}

.country-calculator-input::placeholder {
	color: #52525b;
}

.country-calculator-input:focus {
	outline: none;
	box-shadow:
		0px 1px 2px 0px rgba(0, 0, 0, 0.05),
		0 0 0 2px #111111;
}

/* Submit Button */
.country-calculator-submit-btn {
	background: #111111;
	border: 2px solid #111111;
	border-radius: 12px;
	padding: 8px 12px;
	height: 40px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #ffffff;
	cursor: pointer;
	transition: all 0.2s ease;
	align-self: flex-start;
}

.country-calculator-submit-btn:hover {
	background: #000000;
	border-color: #000000;
}

.country-calculator-submit-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.country-calculator-submit-btn:disabled:hover {
	background: #111111;
	border-color: #111111;
}

/* Results Section */
.country-calculator-results {
	margin-top: 24px;
}

.country-calculator-results-inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Savings Highlight */
.country-calculator-savings-highlight {
	background: #37AE51;
	border-radius: 28px;
	padding: 24px;
	text-align: center;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.country-calculator-results-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	margin: 0;
}

.country-calculator-savings-amount {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1.8px;
	margin: 0;
}

.country-calculator-savings-percent {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
	margin: 0;
}

.country-calculator-yearly-savings {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
	margin: 0;
}

/* Comparison Columns */
.country-calculator-comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.country-calculator-comparison-column {
	border-radius: 12px;
	padding: 24px;
}

.country-calculator-competitor {
	background: rgba(239, 68, 68, 0.1);
	border: 2px solid rgba(239, 68, 68, 0.2);
}

.country-calculator-neo {
	background: rgba(16, 185, 129, 0.1);
	border: 2px solid rgba(16, 185, 129, 0.2);
}

.country-calculator-comparison-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 16px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.country-calculator-comparison-icon {
	font-size: 20px;
}

.country-calculator-comparison-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.country-calculator-comparison-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #52525b;
}

.country-calculator-comparison-total {
	display: flex;
	justify-content: space-between;
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding-top: 12px;
	border-top: 2px solid rgba(0, 0, 0, 0.1);
	margin-top: 12px;
}

.country-calculator-competitor .country-calculator-comparison-total {
	color: #dc2626;
}

.country-calculator-neo .country-calculator-comparison-total {
	color: #059669;
}

/* Info Box */
.country-calculator-info-box {
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	padding: 16px;
}

.country-calculator-info-title {
	font-family: 'TWK Everett', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 12px 0;
	color: #111111;
}

.country-calculator-info-list {
	margin: 0;
	padding-left: 20px;
	list-style-type: disc;
}

.country-calculator-info-list li {
	font-size: 14px;
	line-height: 1.5;
	color: #52525b;
	margin-bottom: 8px;
}

.country-calculator-info-list li:last-child {
	margin-bottom: 0;
}

/* Disclaimer */
.country-calculator-disclaimer {
	max-width: 1280px;
	margin: 24px auto 0;
	padding: 0 50px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 11px;
	line-height: 1.5;
	color: #71717a;
	font-weight: 300;
}

.country-calculator-disclaimer p {
	margin: 0;
}

.country-calculator-disclaimer sup {
	font-size: 10px;
	margin-right: 2px;
}

/* Responsive Design */
@media (max-width: 1023px) {
	.country-calculator-section {
		padding: 80px 0;
	}

	.country-calculator-container {
		padding: 0 24px;
	}

	.country-calculator-content-wrapper {
		flex-direction: column;
		padding: 28px;
		gap: 32px;
	}

	.country-calculator-title-wrapper {
		min-width: auto;
	}

	.country-calculator-headline {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.country-calculator-section {
		padding: 60px 0;
	}

	.country-calculator-content-wrapper {
		padding: 24px;
	}

	.country-calculator-headline {
		font-size: 24px;
	}

	.country-calculator-card {
		padding: 24px;
	}

	.country-calculator-form-row {
		flex-direction: column;
		gap: 16px;
	}

	.country-calculator-input-group {
		min-width: auto;
	}

	.country-calculator-comparison {
		grid-template-columns: 1fr;
	}

	.country-calculator-submit-btn {
		width: 100%;
	}

	.country-calculator-savings-amount {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.country-calculator-savings-percent,
	.country-calculator-yearly-savings {
		font-size: 14px;
	}

	.country-calculator-disclaimer {
		padding: 0 24px;
		font-size: 10px;
	}
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

/* Partners Section Base */
.country-partners-section {
	padding: 100px 0;
	background: url('/wp-content/uploads/2025/12/warm-bg.svg') center/cover no-repeat;
	background-color: #f5f1ed;
}

.country-partners-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
	justify-content: center;
}

/* Partners Header */
.country-partners-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	text-align: center;
	max-width: 800px;
}

.country-partners-headline {
	font-family: 'TWK Everett', sans-serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.96px;
	color: #000000;
	margin: 0;
}

.country-partners-description {
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
	color: #71717a;
	margin: 0;
}

/* Partners Grid */
.country-partners-grid {
	display: grid;
	grid-template-columns: repeat(3, 380px);
	gap: 20px;
	justify-content: center;
	width: 100%;
}

/* Partner Card */
.country-partner-card {
	background: #ffffff;
	border-radius: 28px;
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: box-shadow 0.3s ease;
	position: relative;
	min-height: 500px;
}

.country-partner-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Verified Badge */
.country-partner-verified {
	background: #b7d4fb;
	border-radius: 8px;
	padding: 4px 8px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 28px;
	align-self: flex-start;
}

.country-partner-verified span {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #347ee5;
}

/* Partner Header Row */
.country-partner-header {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	width: 100%;
}

.country-partner-avatar {
	flex-shrink: 0;
}

/* Partner Logo */
.country-partner-logo {
	width: 80px;
	height: 80px;
	border-radius: 14px;
	object-fit: cover;
}

.country-partner-logo-placeholder {
	width: 80px;
	height: 80px;
	background: #f4f4f5;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Partner Title Group */
.country-partner-title-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

/* Partner Name */
.country-partner-name {
	font-family: 'TWK Everett', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	color: #000000;
	margin: 0;
	padding-top: 0px;
	padding-bottom: 0px;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Partner Location */
.country-partner-location {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
}

.country-partner-location-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.country-partner-location span {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #71717a;
}

.country-partner-flag {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

/* Partner Rating */
.country-partner-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.country-partner-rating-text {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #71717a;
}

/* Partner Description */
.country-partner-description {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #191a23;
	margin: 0;
}

/* Partner Features List */
.country-partner-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.country-partner-feature {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.country-partner-feature svg,
.country-partner-feature-icon {
	flex-shrink: 0;
	margin-top: 2px;
	width: 20px;
	height: 20px;
}

.country-partner-feature span {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #191a23;
	flex: 1;
}

/* Partner Meta Information */
.country-partner-meta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid rgba(17, 17, 17, 0.15);
	width: 100%;
	justify-content: flex-end;
	align-items: flex-end;
}

.country-partner-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.country-partner-meta-item svg,
.country-partner-meta-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.country-partner-meta-item span {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #71717a;
}

/* Partner CTA Button */
/* CTA Button Wrapper */
.country-partner-cta-wrapper {
	margin-top: auto;
}

.country-partner-cta-btn {
	background: #000000;
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	padding: 12px 16px;
	border-radius: 12px;
	text-decoration: none;
	transition: background 0.2s ease;
	display: block;
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.country-partner-cta-btn:hover {
	background: #1f1f1f;
}

/* Bottom Section */
.country-partners-bottom {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
}

.country-partners-bottom-text {
	font-family: 'DM Sans', sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
	color: #71717a;
	margin: 0;
}

.country-partners-browse-btn {
	background: #000000;
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	padding: 16px 32px;
	border-radius: 14px;
	text-decoration: none;
	transition: background 0.2s ease;
	display: inline-block;
}

.country-partners-browse-btn:hover {
	background: #1f1f1f;
}

/* Empty State */
.country-partners-empty {
	text-align: center;
	padding: 60px 40px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 28px;
}

.country-partners-empty-text {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #71717a;
	margin: 0 0 20px 0;
}

/* Debug Info (admin only) */
.country-partners-debug {
	text-align: left;
	margin-top: 20px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #e4e4e7;
	border-radius: 14px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	line-height: 1.8;
	color: #71717a;
}

.country-partners-debug strong {
	color: #000000;
}

.country-partners-debug em {
	color: #a1a1aa;
}

/* Responsive Breakpoints */

/* Large tablets and small desktops */
@media (max-width: 1279px) {
	.country-partners-grid {
		grid-template-columns: repeat(2, 380px);
	}

	.country-partners-container {
		padding: 0 40px;
	}
}

/* Tablets */
@media (max-width: 1023px) {
	.country-partners-section {
		padding: 80px 0;
	}

	.country-partners-container {
		padding: 0 30px;
		gap: 50px;
	}

	.country-partners-headline {
		font-size: 40px;
		letter-spacing: -0.8px;
	}

	.country-partners-description {
		font-size: 18px;
	}

	.country-partners-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.country-partners-section {
		padding: 60px 0;
	}

	.country-partners-container {
		padding: 0 24px;
		gap: 40px;
	}

	.country-partners-headline {
		font-size: 32px;
		letter-spacing: -0.64px;
	}

	.country-partners-description {
		font-size: 16px;
	}

	.country-partner-card {
		padding: 28px;
		gap: 16px;
	}

	.country-partner-header {
		flex-direction: column;
		gap: 16px;
	}

	.country-partner-logo,
	.country-partner-logo-placeholder {
		width: 64px;
		height: 64px;
	}

	.country-partner-name {
		font-size: 18px;
	}

	.country-partner-description,
	.country-partner-feature span {
		font-size: 14px;
	}

	.country-partners-bottom-text {
		font-size: 16px;
	}

	.country-partners-browse-btn {
		width: 100%;
		padding: 14px 24px;
	}
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

/* Section Base */
.country-how-it-works-section {
	padding: 100px 0;
	background: #ffffff;
}

.country-how-it-works-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}

/* Header */
.country-how-it-works-header {
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-items: center;
	text-align: center;
	max-width: 780px;
}

.country-how-it-works-headline {
	font-family: 'TWK Everett', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1.8px;
	color: #000000;
	margin: 0;
}

.country-how-it-works-description {
	font-family: 'DM Sans', sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	color: #000000;
	margin: 0;
}

/* Content Wrapper - Two Column Layout */
.country-how-it-works-content {
	display: flex;
	gap: 20px;
	width: 100%;
	max-width: 1180px;
	align-items: stretch;
}

/* Left Column: Steps */
.country-how-it-works-steps {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Step Card */
.country-how-it-works-step-card {
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.15);
	border-radius: 28px;
	padding: 36px;
	display: flex;
	gap: 20px;
	align-items: center;
}

/* Step Number Circle */
.country-how-it-works-step-number {
	position: relative;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.country-how-it-works-step-number svg {
	position: absolute;
	top: 0;
	left: 0;
}

.country-how-it-works-step-number span {
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	color: #5172e1;
	position: relative;
	z-index: 1;
}

/* Step Content */
.country-how-it-works-step-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.country-how-it-works-step-title {
	font-family: 'TWK Everett', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	color: #191a23;
	margin: 0;
}

.country-how-it-works-step-description {
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
	color: #191a23;
	margin: 0;
}

/* Right Column: Stats Card */
.country-how-it-works-stats-card {
	flex: 1;
	background: #ffffff;
	border: 1px solid rgba(17, 17, 17, 0.15);
	border-radius: 28px;
	padding: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Stats Grid - 2x2 */
.country-how-it-works-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 24px;
	width: 100%;
	height: 100%;
}

/* Individual Stat */
.country-how-it-works-stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	border-radius: 28px;
}

.country-how-it-works-stat-number {
	font-family: 'TWK Everett', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1.8px;
	color: #9b51e0;
	margin: 0;
}

.country-how-it-works-stat-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #191a23;
	margin: 0;
	max-width: 196px;
}

/* Responsive Breakpoints */

/* Large tablets and small desktops */
@media (max-width: 1279px) {
	.country-how-it-works-container {
		padding: 0 40px;
	}

	.country-how-it-works-content {
		max-width: 100%;
	}
}

/* Tablets */
@media (max-width: 1023px) {
	.country-how-it-works-section {
		padding: 80px 0;
	}

	.country-how-it-works-container {
		padding: 0 30px;
		gap: 50px;
	}

	.country-how-it-works-headline {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.country-how-it-works-description {
		font-size: 24px;
	}

	.country-how-it-works-content {
		flex-direction: column;
	}

	.country-how-it-works-step-title {
		font-size: 22px;
	}

	.country-how-it-works-step-description {
		font-size: 18px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.country-how-it-works-section {
		padding: 60px 0;
	}

	.country-how-it-works-container {
		padding: 0 24px;
		gap: 40px;
	}

	.country-how-it-works-headline {
		font-size: 36px;
		letter-spacing: -1.08px;
	}

	.country-how-it-works-description {
		font-size: 20px;
	}

	.country-how-it-works-step-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px;
		gap: 16px;
	}

	.country-how-it-works-step-title {
		font-size: 20px;
	}

	.country-how-it-works-step-description {
		font-size: 16px;
	}

	.country-how-it-works-stats-card {
		padding: 28px;
	}

	.country-how-it-works-stats-grid {
		gap: 20px;
	}

	.country-how-it-works-stat {
		padding: 16px;
	}

	.country-how-it-works-stat-number {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.country-how-it-works-stat-label {
		font-size: 14px;
	}
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

/* Section Base */
.country-final-cta-section {
	padding: 100px 0;
	background: url('/wp-content/uploads/2025/12/purple-bg.svg') center/cover no-repeat;
	background-color: #e6d5f5;
}

.country-final-cta-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}

/* Header */
.country-final-cta-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	max-width: 780px;
	width: 100%;
}

.country-final-cta-headline {
	font-family: 'TWK Everett', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1.8px;
	color: #000000;
	margin: 0;
}

.country-final-cta-description-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.country-final-cta-description {
	font-family: 'DM Sans', sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	color: #191a23;
	margin: 0;
}

/* CTA Buttons */
.country-final-cta-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.country-final-cta-primary-btn {
	background: #000000;
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	padding: 12px 24px 12px 24px;
	padding-right: 16px;
	border-radius: 12px;
	border: 2px solid #000000;
	display: flex;
	align-items: center;
	gap: 6px;
	height: 64px;
	transition: background 0.2s ease;
}

.country-final-cta-primary-btn:hover {
	background: #1f1f1f;
}

.country-final-cta-primary-btn svg {
	flex-shrink: 0;
}

.country-final-cta-secondary-btn {
	background: transparent;
	color: #000000;
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	transition: background 0.2s ease;
}

.country-final-cta-secondary-btn:hover {
	background: rgba(0, 0, 0, 0.05);
}

/* Features Card */
.country-final-cta-features-card {
	background: #ffffff;
	border-radius: 28px;
	padding: 36px;
	display: flex;
	gap: 36px;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.country-final-cta-feature {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.country-final-cta-feature svg {
	flex-shrink: 0;
}

.country-final-cta-feature span {
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
	color: #191a23;
	white-space: nowrap;
}

/* Responsive Breakpoints */

/* Large tablets and small desktops */
@media (max-width: 1279px) {
	.country-final-cta-container {
		padding: 0 40px;
	}
}

/* Tablets */
@media (max-width: 1023px) {
	.country-final-cta-section {
		padding: 80px 0;
	}

	.country-final-cta-container {
		padding: 0 30px;
		gap: 50px;
	}

	.country-final-cta-headline {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.country-final-cta-description {
		font-size: 24px;
	}

	.country-final-cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.country-final-cta-primary-btn,
	.country-final-cta-secondary-btn {
		width: 100%;
		justify-content: center;
	}

	.country-final-cta-features-card {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}

	.country-final-cta-feature span {
		white-space: normal;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.country-final-cta-section {
		padding: 60px 0;
	}

	.country-final-cta-container {
		padding: 0 24px;
		gap: 40px;
	}

	.country-final-cta-headline {
		font-size: 36px;
		letter-spacing: -1.08px;
	}

	.country-final-cta-description {
		font-size: 20px;
	}

	.country-final-cta-primary-btn,
	.country-final-cta-secondary-btn {
		font-size: 18px;
		height: 56px;
		padding: 12px 20px;
	}

	.country-final-cta-features-card {
		padding: 28px;
		gap: 20px;
	}

	.country-final-cta-feature span {
		font-size: 18px;
	}
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background: #fff;
}

.faq-section .container {
	max-width: 900px;
}

.faq-section .section-title {
	font-family: 'TWK Everett', sans-serif;
	font-weight: 500;
	font-size: 48px;
	line-height: 1.2;
	text-align: center;
	color: #1a1a2e;
	margin-bottom: 48px;
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: white;
	border: 1px solid rgba(17, 17, 17, 0.15);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active {
	border-color: rgba(17, 17, 17, 0.25);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.2s ease;
}

.faq-question:hover {
	background-color: rgba(0, 0, 0, 0.02);
}

.faq-question-text {
	font-family: 'TWK Everett', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #1a1a2e;
	padding-right: 24px;
}

.faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #656672;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.faq-answer-content {
	padding: 24px;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #656672;
}

.faq-answer-content p {
	margin: 0 0 16px 0;
}

.faq-answer-content p:last-child {
	margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
	margin: 16px 0;
	padding-left: 24px;
}

.faq-answer-content li {
	margin-bottom: 8px;
}

.faq-answer-content a {
	color: #0693e3;
	text-decoration: none;
}

.faq-answer-content a:hover {
	text-decoration: underline;
}

/* FAQ Responsive */
@media (max-width: 768px) {
	.faq-section {
		padding: 60px 0;
	}

	.faq-section .section-title {
		font-size: 36px;
		margin-bottom: 32px;
	}

	.faq-question {
		padding: 20px 16px;
	}

	.faq-question-text {
		font-size: 18px;
	}

	.faq-answer-content {
		padding: 20px 16px;
		font-size: 15px;
	}
}
