/* ==================== VPS FOREIGN (OVerseas) THEME ==================== */
/* Theme for VPS Nước Ngoài landing pages */

:root {
	--foreign-purple: #8b5cf6;
	--foreign-purple-dark: #7c3aed;
	--foreign-indigo: #6366f1;
	--foreign-blue: #3b82f6;
	--foreign-cyan: #06b6d4;
}

/* ==================== GLOBAL BACKGROUND & ORBS ==================== */
.product-page-wrapper::before {
	background-image:
		repeating-linear-gradient(
			0deg,
			rgba(139, 92, 246, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(139, 92, 246, 0.03) 3px
		),
		repeating-linear-gradient(
			90deg,
			rgba(99, 102, 241, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(99, 102, 241, 0.03) 3px
		);
}

.product-page-wrapper::after {
	background: radial-gradient(
		circle at center,
		rgba(139, 92, 246, 0.15) 0%,
		transparent 50%
	);
}

/* Override existing orbs for foreign theme */
.orb-1 {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	opacity: 0.25;
}

.orb-2 {
	background: linear-gradient(
		135deg,
		var(--foreign-indigo),
		var(--foreign-cyan)
	);
	opacity: 0.2;
}

/* ==================== TYPOGRAPHY & BADGES ==================== */
.os-badge {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo),
		var(--foreign-purple)
	);
	background-size: 200% 200%;
	color: #fff;
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.os-title {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo),
		var(--foreign-cyan)
	);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ==================== CARDS (OS Grid & Product Cards) ==================== */
.products-grid {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.os-card {
	border-color: rgba(139, 92, 246, 0.2);
}

.os-card::before {
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.1),
		rgba(99, 102, 241, 0.1)
	);
}

.os-card:hover {
	border-color: rgba(6, 182, 212, 0.5);
	box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.os-card-icon {
	color: var(--foreign-purple);
}

.os-card:hover .os-card-icon {
	color: var(--foreign-cyan);
}

.os-card:hover .os-name {
	color: var(--foreign-cyan);
}

/* Product Cards */
.product-card-vps {
	border-color: rgba(139, 92, 246, 0.2);
}

.product-card-vps::before {
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.05),
		rgba(99, 102, 241, 0.05)
	);
}

.product-card-vps:hover {
	border-color: rgba(6, 182, 212, 0.5);
	box-shadow:
		0 20px 60px rgba(139, 92, 246, 0.3),
		0 0 40px rgba(6, 182, 212, 0.2);
}

/* Featured overrides - use purple by default */
.product-card-vps.featured {
	border-color: rgba(139, 92, 246, 0.4);
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.05),
		rgba(99, 102, 241, 0.03)
	);
}

.product-card-vps.featured:hover {
	border-color: rgba(139, 92, 246, 0.8);
	box-shadow:
		0 20px 60px rgba(139, 92, 246, 0.4),
		0 0 40px rgba(99, 102, 241, 0.3);
}

.product-card-name {
	background: linear-gradient(135deg, #fff, var(--foreign-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.product-card-vps:hover .product-card-name {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Stats */
.stat-item {
	border-color: rgba(139, 92, 246, 0.2);
}

.stat-item:hover {
	border-color: rgba(6, 182, 212, 0.5);
	box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.stat-number {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-cyan)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ==================== FEATURED BADGE (Purple theme override) ==================== */
/* product-group.css .product-card-vps.featured .featured-badge has no !important */
/* so this plain override (later in cascade) will naturally take precedence */
.product-card-vps.featured .featured-badge,
.product-card-vps.featured.color-gold .featured-badge,
.product-card-vps.featured.color-orange .featured-badge,
.product-card-vps.featured.color-dark-blue .featured-badge,
.product-card-vps.featured.color-pink .featured-badge,
.product-card-vps.featured.color-cyan .featured-badge,
.product-card-vps.featured.color-green .featured-badge,
.product-card-vps.featured.color-red .featured-badge {
	background: linear-gradient(
		135deg,
		#ff6b35,
		#ff8c5a
	);
	--badge-shadow-rgb: 255, 107, 53;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
	color: #fff;
}

.product-card-vps.featured .featured-badge svg {
	stroke: #fff;
}

/* ==================== BUTTONS (Purple theme override) ==================== */
/* product-group.css .product-card-vps .btn-order-product has no !important */
/* product-group.css .product-card-vps.featured .btn-order-product has no !important */
/* so this plain override (later in cascade) will naturally take precedence */
.product-card-vps .btn-order-product {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	color: #fff;
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.product-card-vps .btn-order-product:hover {
	background: linear-gradient(
		135deg,
		var(--foreign-indigo),
		var(--foreign-purple)
	);
	box-shadow: 0 8px 40px rgba(139, 92, 246, 0.6);
	color: #fff;
}

/* Featured + all color variants — match product-group.css specificity */
.product-card-vps.featured .btn-order-product,
.product-card-vps.featured.color-gold .btn-order-product,
.product-card-vps.featured.color-orange .btn-order-product,
.product-card-vps.featured.color-dark-blue .btn-order-product,
.product-card-vps.featured.color-pink .btn-order-product,
.product-card-vps.featured.color-cyan .btn-order-product,
.product-card-vps.featured.color-green .btn-order-product,
.product-card-vps.featured.color-red .btn-order-product {
	background: linear-gradient(
		135deg,
		#ff6b35,
		#ff8c5a
	);
	color: #fff;
	box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.product-card-vps.featured .btn-order-product:hover,
.product-card-vps.featured.color-gold .btn-order-product:hover,
.product-card-vps.featured.color-orange .btn-order-product:hover,
.product-card-vps.featured.color-dark-blue .btn-order-product:hover,
.product-card-vps.featured.color-pink .btn-order-product:hover,
.product-card-vps.featured.color-cyan .btn-order-product:hover,
.product-card-vps.featured.color-green .btn-order-product:hover,
.product-card-vps.featured.color-red .btn-order-product:hover {
	background: linear-gradient(
		135deg,
		#ff8c5a,
		#ff6b35
	);
	box-shadow: 0 8px 40px rgba(255, 107, 53, 0.6);
	color: #fff;
}

/* ==================== CTA BUTTONS ==================== */
.cta-button,
.btn-primary,
.btn-order-os {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
	border: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-button:hover,
.btn-primary:hover,
.btn-order-os:hover {
	background: linear-gradient(
		135deg,
		var(--foreign-indigo),
		var(--foreign-purple)
	);
	box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
	transform: translateY(-2px);
}

.cta-button-secondary,
.cta-button.cta-button-secondary {
	background: rgba(139, 92, 246, 0.08) !important;
	border: 1px solid rgba(139, 92, 246, 0.25) !important;
	color: rgba(255, 255, 255, 0.75) !important;
	box-shadow: none !important;
}

.cta-button-secondary:hover,
.cta-button.cta-button-secondary:hover {
	background: rgba(139, 92, 246, 0.15) !important;
	border-color: rgba(139, 92, 246, 0.45) !important;
	color: #fff !important;
	box-shadow: 0 0 20px rgba(139, 92, 246, 0.2) !important;
}

/* ==================== ICONS & SVG ==================== */
.spec-item svg,
.feature-item svg {
	color: var(--foreign-cyan);
}

.product-card-vps:hover .spec-item svg,
.product-card-vps:hover .feature-item svg {
	color: var(--foreign-purple);
}

/* ==================== FAQ & TESTIMONIALS ==================== */
.faq-os-number {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.faq-os-item.active .faq-os-number {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	box-shadow:
		0 0 20px rgba(139, 92, 246, 0.6),
		0 0 40px rgba(99, 102, 241, 0.3);
}

.faq-os-item:hover,
.faq-os-item.active {
	border-color: rgba(139, 92, 246, 0.3);
}

.section-title-os h3 span {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ==================== BILLING TABS ==================== */
.billing-tabs-wrapper {
	border-color: rgba(139, 92, 246, 0.2);
}

.billing-tab.active {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
}

.billing-tab.active .save-badge {
	background: #fff;
	color: var(--foreign-purple);
}

/* ==================== PRICE OVERRIDES ==================== */
.price-amount {
	background: linear-gradient(135deg, #fff 0%, rgba(199, 210, 254, 0.9) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.discount-badge {
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
}

/* ==================== NATION HERO BANNER ==================== */
.nation-hero-banner {
	position: relative;
	width: 100%;
	min-height: 520px;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-bottom: 0;
}

/* Decorative pavilion/architecture lines (top-right corner) */
.nation-hero-bg::before {
	content: "";
	position: absolute;
	right: 5%;
	top: 10%;
	width: 320px;
	height: 300px;
	background: radial-gradient(
		circle at center,
		rgba(139, 92, 246, 0.06) 0%,
		transparent 70%
	);
	border-radius: 50%;
	filter: blur(1px);
}

/* Grid lines overlay */
/* .nation-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(
			0deg,
			rgba(139, 92, 246, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(139, 92, 246, 0.03) 3px
		),
		repeating-linear-gradient(
			90deg,
			rgba(99, 102, 241, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(99, 102, 241, 0.03) 3px
		);
} */

.nation-hero-container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 180px 40px;
	display: flex;
	align-items: center;
	gap: 60px;
	width: 100%;
}

.nation-hero-content {
	flex: 1;
	min-width: 0;
}

.nation-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(139, 92, 246, 0.12);
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 100px;
	padding: 8px 16px;
	margin-bottom: 20px;
}

.nation-hero-eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--foreign-purple);
	box-shadow: 0 0 8px var(--foreign-purple);
	animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 8px var(--foreign-purple);
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		box-shadow: 0 0 16px var(--foreign-purple);
		transform: scale(1.3);
	}
}

.nation-hero-eyebrow-text {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--foreign-purple);
	text-transform: uppercase;
}

.nation-hero-headline {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 24px 0;
	letter-spacing: -1px;
}

.nation-hero-headline-line1 {
	display: block;
	background: linear-gradient(
		90deg,
		rgba(199, 210, 254, 0.9) 0%,
		var(--foreign-purple) 50%,
		rgba(167, 139, 250, 0.95) 100%
	);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradient-sweep 4s ease-in-out infinite;
}

@keyframes gradient-sweep {
	0% {
		background-position: 100% 0;
	}
	50% {
		background-position: 0% 0;
	}
	100% {
		background-position: 100% 0;
	}
}

.nation-hero-headline-line2 {
	display: block;
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-cyan)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nation-hero-description {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 0 36px 0;
	max-width: 520px;
}

.nation-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 4px 24px rgba(139, 92, 246, 0.45);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nation-hero-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nation-hero-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 36px rgba(139, 92, 246, 0.6);
}

.nation-hero-cta:hover::after {
	opacity: 1;
}

.nation-hero-cta svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.nation-hero-image {
	flex-shrink: 0;
	width: 380px;
	height: 340px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: -1;
}

.nation-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 20px 60px rgba(139, 92, 246, 0.3));
	scale: 1.4;
	translate: -20px 0px;
}

/* Shimmer glow behind image */
.nation-hero-image::before {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(139, 92, 246, 0.2) 0%,
		transparent 70%
	);
	z-index: 0;
	animation: nationPulse 4s ease-in-out infinite;
}

@keyframes nationPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.1);
		opacity: 1;
	}
}

/* ==================== WHAT IS VPS SECTION ==================== */
.vps-foreign-what {
	position: relative;
	width: 100%;
	min-height: 540px;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 80px 20px;
	margin-bottom: 0;
}

.vps-foreign-what-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.what-glow {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.15;
}

.what-glow-left {
	left: -100px;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, var(--foreign-purple), transparent 70%);
}

.what-glow-right {
	right: -100px;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, var(--foreign-cyan), transparent 70%);
}

.vps-foreign-what-container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
	width: 100%;
}

.what-content {
	flex: 1;
	min-width: 0;
}

.what-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(139, 92, 246, 0.12);
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 100px;
	padding: 6px 14px;
	margin-bottom: 20px;
}

.what-badge svg {
	width: 14px;
	height: 14px;
	color: var(--foreign-purple);
	flex-shrink: 0;
}

.what-badge span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--foreign-purple);
	text-transform: uppercase;
}

.what-title {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 20px 0;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.what-desc {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 28px 0;
	max-width: 560px;
}

.what-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.what-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(139, 92, 246, 0.1);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}

.what-tag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--foreign-cyan);
	flex-shrink: 0;
}

.what-visual {
	flex-shrink: 0;
	width: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.what-server-graphic {
	position: relative;
	width: 380px;
	height: 480px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.what-server-graphic .server-body {
	position: relative;
	z-index: 2;
	width: 320px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.25),
		rgba(99, 102, 241, 0.12)
	);
	border: 2px solid rgba(139, 92, 246, 0.4);
	border-radius: 20px;
	box-shadow:
		0 0 40px rgba(139, 92, 246, 0.2),
		0 0 80px rgba(99, 102, 241, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.server-top {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.server-led {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.server-led-green {
	background: #22c55e;
	box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
	animation: led-blink 2s ease-in-out infinite;
}

.server-led:nth-child(2) .server-led-green,
.server-led-green:nth-child(2) {
	animation-delay: 0.3s;
}

.server-led:nth-child(3) .server-led-green,
.server-led-green:nth-child(3) {
	animation-delay: 0.6s;
}

@keyframes led-blink {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
	}
	50% {
		opacity: 0.4;
		box-shadow: 0 0 5px rgba(34, 197, 94, 0.4);
	}
}

.server-brand {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--foreign-purple);
	margin-left: auto;
}

.server-speed {
	font-size: 12px;
	color: var(--foreign-cyan);
	font-weight: 600;
}

.server-slots {
	display: flex;
	gap: 8px;
	justify-content: center;
}

.server-slot {
	width: 32px;
	height: 10px;
	border-radius: 3px;
	background: rgba(139, 92, 246, 0.15);
	border: 1px solid rgba(139, 92, 246, 0.25);
}

.server-slot.active {
	background: rgba(6, 182, 212, 0.25);
	border-color: rgba(6, 182, 212, 0.4);
}

.server-fans {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.server-fan {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(139, 92, 246, 0.1);
	border: 1px solid rgba(139, 92, 246, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fan-blade {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		rgba(139, 92, 246, 0.4) 0deg,
		rgba(139, 92, 246, 0.15) 60deg,
		rgba(139, 92, 246, 0.4) 120deg,
		rgba(139, 92, 246, 0.15) 180deg,
		rgba(139, 92, 246, 0.4) 240deg,
		rgba(139, 92, 246, 0.15) 300deg,
		rgba(139, 92, 246, 0.4) 360deg
	);
	animation: fan-spin 1.2s linear infinite;
}

@keyframes fan-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.server-glow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 140px;
	background: radial-gradient(
		ellipse at center,
		rgba(139, 92, 246, 0.35) 0%,
		transparent 70%
	);
	z-index: 1;
	animation: server-pulse 3s ease-in-out infinite;
}

@keyframes server-pulse {
	0%,
	100% {
		opacity: 0.6;
		transform: translateX(-50%) scale(1);
	}
	50% {
		opacity: 1;
		transform: translateX(-50%) scale(1.1);
	}
}

/* ==================== OUTSTANDING ADVANTAGES SECTION ==================== */
.vps-foreign-advantages {
	position: relative;
	width: 100%;
	min-height: auto;
	padding: 80px 20px;
	overflow: hidden;
}

.vps-foreign-advantages-container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
}

.advantages-header {
	text-align: center;
	margin-bottom: 50px;
}

.advantages-badge {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--foreign-purple),
		var(--foreign-indigo)
	);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 16px;
}

.advantages-title {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	background: linear-gradient(
		90deg,
		#fff 0%,
		rgba(199, 210, 254, 0.85) 50%,
		rgba(165, 180, 252, 0.8) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.advantage-card {
	position: relative;
	background: rgba(139, 92, 246, 0.05);
	border: 1px solid rgba(139, 92, 246, 0.15);
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.35s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.advantage-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.08),
		rgba(99, 102, 241, 0.04)
	);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.advantage-card:hover {
	border-color: rgba(6, 182, 212, 0.4);
	transform: translateY(-4px);
	box-shadow:
		0 20px 50px rgba(139, 92, 246, 0.25),
		0 0 30px rgba(6, 182, 212, 0.1);
}

.advantage-card:hover::before {
	opacity: 1;
}

.advantage-icon {
	position: relative;
	z-index: 1;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.15),
		rgba(99, 102, 241, 0.1)
	);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s ease;
}

.advantage-card:hover .advantage-icon {
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.25),
		rgba(99, 102, 241, 0.15)
	);
	border-color: rgba(139, 92, 246, 0.4);
	box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.advantage-icon svg {
	width: 28px;
	height: 28px;
	color: var(--foreign-purple);
	transition: color 0.35s ease;
}

.advantage-card:hover .advantage-icon svg {
	color: var(--foreign-cyan);
}

.advantage-heading {
	position: relative;
	z-index: 1;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.advantage-desc {
	position: relative;
	z-index: 1;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 20px 0;
}
/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1024px) {
	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nation-hero-image img {
		scale: 1.25;
		translate: 0px 0px;
	}
	.products-grid {
		grid-template-columns: 1fr;
	}

	/* What VPS Section */
	.vps-foreign-what {
		padding: 60px 20px;
	}

	.vps-foreign-what-container {
		flex-direction: column;
		gap: 28px;
		text-align: center;
	}

	.what-title {
		font-size: 32px;
	}

	.what-desc {
		font-size: 14px;
		max-width: 100%;
	}

	.what-tags {
		justify-content: center;
	}

	.what-visual {
		width: 100%;
	}

	.what-server-graphic {
		width: min(100%, 360px);
		height: 400px;
	}

	.what-server-graphic .server-body {
		width: min(100%, 320px);
		padding: 22px;
		box-sizing: border-box;
	}

	/* Advantages Section */
	.vps-foreign-advantages {
		padding: 60px 20px;
	}

	.advantages-title {
		font-size: 28px;
	}

	.advantages-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.advantage-card {
		padding: 24px 20px;
	}

	/* Nation Hero Banner */
	.nation-hero-container {
		flex-direction: column-reverse;
		padding: 40px 24px;
		gap: 40px;
		text-align: center;
	}

	.nation-hero-headline {
		font-size: 36px;
	}

	.nation-hero-description {
		font-size: 15px;
	}

	.nation-hero-image {
		width: 280px;
		height: 240px;
		order: -1;
	}

	.nation-hero-cta {
		font-size: 15px;
		padding: 12px 28px;
	}
}
