/* 1. RESTORED PREMIUM SCALE SECTION */
.premium-vps-hero {
	background: 
		radial-gradient(#cbd5e1 1px, transparent 1px), /* Your dots */
		linear-gradient(to right, #f8fafc 70%, #f5f3ff 100%);
	background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
	background-size: 32px 32px;
	padding: 80px 20px; 
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1e293b;
	position: relative;
	overflow: hidden;
}

.glow-orb-1 {
	position: absolute;
	top: -10%;
	left: -5%;
	width: 600px;
	height: 600px;
	background: rgba(14, 165, 233, 0.15);
	border-radius: 50%;
	filter: blur(100px);
	z-index: 0;
}
.glow-orb-2 {
	position: absolute;
	bottom: -10%;
	right: -5%;
	width: 600px;
	height: 600px;
	background: rgba(99, 102, 241, 0.20); /* This is the purple/indigo color */
	border-radius: 50%;
	filter: blur(80px);
	z-index: 0;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	flex: 1 1 500px;
	padding-right: 40px;
}

.hero-visual {
	flex: 1 1 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
}

/* TYPOGRAPHY */
.badge-modern {
	display: inline-block;
	background: #eff6ff;
	color: #2563eb;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 20px;
	border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-h1 {
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 30px;
	letter-spacing: -1.5px;
	color: #0f172a;
}

.text-gradient {
	background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* FEATURES LIST */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.feature-item {
	display: flex;
	align-items: center;
	background: white;
	padding: 14px 20px;
	border-radius: 12px;
	margin-bottom: 12px;
	font-size: 1.05rem;
	color: #334155;
	font-weight: 600;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
	transform: translateX(10px);
	border-color: #bfdbfe;
	box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

.check-icon {
	background: #eff6ff;
	color: #2563eb;
	border: 1px solid #dbeafe;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-size: 12px;
	flex-shrink: 0;
}

.btn-primary-modern {
	background: linear-gradient(135deg, #2563eb, #0ea5e9);
	color: white;
	padding: 18px 45px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* RESTORED BIGGER VISUAL + PINNED PILLS */
.glass-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid white;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px; /* Restored original large width */
}

/* Pinned Pills (Positioned ON the card borders) */
.mini-pill {
	position: absolute;
	background: white;
	border-radius: 50px;
	padding: 10px 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 0.9rem;
	z-index: 3;
}
.btn-primary-modern {
	/* Ensure you have a transition on the base class */
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-modern:hover {
	transform: translateY(-5px); /* Lifts the button up */
	box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4); /* Deeper shadow */
	background-position: right center; /* Shifts the gradient if you used one */
}

/* Make the arrow move specifically */
.btn-primary-modern:hover span {
	display: inline-block;
	transform: translateX(5px);
	transition: transform 0.3s ease;
}
/* Container for the visual to handle the 3D perspective */
.hero-visual {
	perspective: 1000px;
}

.glass-card {
	transition: all 0.5s ease;
	cursor: default;
}

.glass-card:hover {
	/* Subtle 3D rotation */
	transform: rotateX(2deg) rotateY(-2deg) scale(1.01);
	box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

.glass-card:hover .mini-pill {
	transform: translateZ(20px); /* Makes pills "pop" forward in 3D space */
}

.mini-pill:hover {
	transform: scale(1.05) !important;
	z-index: 20 !important;
	border-color: #3b82f6;
}

.pill-ddos {
	top: -15px;
	right: 20px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeInUp 0.8s ease-out forwards;
}

.hero-visual {
	animation: fadeInUp 1s ease-out 0.2s forwards; /* Slight delay for the visual */
	opacity: 0; /* Starts hidden until animation kicks in */
}

/* Pinned to bottom-left corner */
.pill-traffic {
	bottom: -20px;
	left: 20px;
	display: flex;
	align-items: center; /* Aligns chart and text horizontally */
	gap: 15px;
	padding: 12px 20px;
	background: white;
	border-radius: 50px; /* Matching the DDoS pill shape */
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 15px;
}

.status-dot { height: 12px; width: 12px; background: #10b981; border-radius: 50%; display: inline-block; margin-right: 8px; box-shadow: 0 0 10px #10b981; }

.stat-row { margin-bottom: 25px; }
.stat-label { display: block; font-size: 0.8rem; color: #64748b; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.stat-bar-bg { background: #f1f5f9; height: 10px; border-radius: 5px; width: 100%; overflow: hidden; }
.stat-bar-fill { height: 100%; border-radius: 5px; }

.css-chart { display: flex; align-items: flex-end; gap: 5px; height: 30px; margin-top: 8px; }
.chart-bar { width: 12px; background: #e2e8f0; border-radius: 2px; }
.chart-bar.active { background: #8b5cf6; }

@media (max-width: 992px) {
	.hero-h1 { font-size: 3rem; }
	.hero-visual { padding: 60px 0; }
	.pill-ddos { right: 10px; }
	.pill-traffic { left: 10px; }
}
	/* 1. Global Section (Adding the Network Mesh and Structure) */
.vps-features-section {
	background-color: #f8fafc;
	padding: 120px 20px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1e293b;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

/* Subtle background glow for the whole section */
.vps-features-section::before {
	content: '';
	position: absolute;
	top: -15%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255,255,255,0) 70%);
	border-radius: 50%;
	z-index: -1;
}

/* Abstract decorative network lines to fill empty space */
.bg-network-pattern {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.15;
	z-index: 0;
}

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

/* Premium Button & Typo */
.badge-premium {
	display: inline-block;
	background: #eff6ff;
	color: #2563eb;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.05);
}

.main-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.15;
	color: #0f172a;
	margin-bottom: 25px;
	letter-spacing: -1.5px;
}

.main-title .text-gradient {
	background: linear-gradient(135deg, #2563eb, #0ea5e9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.main-desc {
	font-size: 1.1rem;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 40px;
}

.btn-solid-premium {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
	color: white;
	padding: 16px 36px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.btn-solid-premium:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 30px -5px rgba(37, 99, 235, 0.5);
}

/* 2. Premium Tabs Switcher */
.premium-segmented-control {
	display: inline-flex;
	background: #f1f5f9;
	padding: 6px;
	border-radius: 50px;
	border: 1px solid #e2e8f0;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.premium-segmented-control .nav-link {
	color: #64748b;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 12px 28px;
	border-radius: 50px;
	border: none;
	transition: all 0.3s ease;
	background: transparent;
}

.premium-segmented-control .nav-link:hover {
	color: #0f172a;
}

.premium-segmented-control .nav-link.active {
	background: #ffffff;
	color: #2563eb;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 3. Layered Glass Cards (The 12 Features) */
.feature-card-premium {
	background: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 20px;
	padding: 35px;
	height: 100%;
	position: relative;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	overflow: hidden;
}

/* Hidden hover state top gradient line */
.feature-card-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #2563eb, #0ea5e9);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-card-premium:hover {
	transform: translateY(-8px);
	border-color: #e2e8f0;
	box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.1);
}

.feature-card-premium:hover::before {
	opacity: 1;
}

/* Icon Box with modern touch */
.grid-icon-box {
	width: 50px;
	height: 50px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	transition: all 0.3s ease;
}

.grid-icon-box iconify-icon {
	font-size: 1.8rem;
	color: #2563eb;
	transition: all 0.3s ease;
}

/* Hover effect on icon */
.feature-card-premium:hover .grid-icon-box {
	background: #2563eb;
	border-color: #2563eb;
	transform: rotate(-5deg) scale(1.05);
}

.feature-card-premium:hover .grid-icon-box iconify-icon {
	color: #ffffff;
}

/* Card Content */
.feature-card-premium h5 {
	font-size: 1.35rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.feature-card-premium p {
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.7;
	margin-bottom: 25px;
}

/* Interactive Bottom Link with shifting arrow */
.card-action-link {
	font-size: 0.9rem;
	font-weight: 700;
	color: #2563eb;
	display: inline-flex;
	align-items: center;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.card-action-link span {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.feature-card-premium:hover .card-action-link {
	opacity: 1;
}

.feature-card-premium:hover .card-action-link span {
	transform: translateX(5px);
}

/* Technical Specs Link at the very bottom */
.technical-specs-link {
	font-weight: 600;
	color: #475569;
	font-size: 1.05rem;
}

.technical-specs-link a {
	color: #2563eb;
	text-decoration: none;
	transition: color 0.3s ease;
}

.technical-specs-link a:hover {
	color: #1d4ed8;
}

@media (max-width: 992px) {
	.main-title { font-size: 2.8rem; }
	.feature-card-premium { padding: 30px; }
}
.tech-specs-footer {
	font-size: 1.05rem;
	color: #64748b; /* Slate grey for the question */
	font-weight: 500;
}

.question-text {
	margin-right: 8px;
}

.tech-contact-link {
	color: #2563eb; /* Brand blue */
	font-weight: 700;
	text-decoration: none;
	position: relative;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease;
}

.tech-contact-link::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: -2px;
	left: 0;
	background-color: #2563eb;
	transform-origin: bottom right;
	transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.tech-contact-link:hover {
	color: #1d4ed8; /* Slightly darker blue on hover */
}

.tech-contact-link:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}


.tech-contact-link .arrow {
	margin-left: 6px;
	transition: transform 0.3s ease;
}

.tech-contact-link:hover .arrow {
	transform: translateX(4px);
}

/* 1. Section Layout */
.vps-features-split {
	background-color: #f8fafc;
	padding: 100px 20px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	position: relative;
	overflow: hidden;
}
/* Base Icon Style (Replacing the old img rules) */
.icon-box-clean iconify-icon {
	font-size: 2rem;
	color: #2563eb; /* Deep primary blue to match the theme */
	transition: all 0.3s ease;
}

/* Make icon pure white when the box turns blue on hover */
.feature-card-minimal:hover .icon-box-clean iconify-icon {
	color: #ffffff; 
}

/* Left Column Content */
.split-header-content {
	position: sticky;
	top: 100px; 
}

.split-badge {
	display: inline-block;
	background: #eff6ff;
	color: #2563eb;
	padding: 6px 14px;
	border-radius: 8px; 
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: 1px solid #bfdbfe;
}

.split-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.split-title .text-blue {
	color: #2563eb;
}

.split-desc {
	font-size: 1.1rem;
	color: #475569;
	line-height: 1.6;
	margin-bottom: 30px;
}

/* Premium Button */
.btn-solid-premium {
	background: #2563eb;
	color: white;
	padding: 14px 30px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn-solid-premium:hover {
	background: #1d4ed8;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
}

/* 2. Fixed Minimalist Cards (No more stretching) */
.feature-card-minimal {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 30px; /* Tighter padding for better proportions */
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 10px rgba(0,0,0,0.02);
	/* Note: Explicitly removed height: 100% to fix the stretching bug */
}

.feature-card-minimal:hover {
	transform: translateY(-5px);
	border-color: #bfdbfe;
	box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.1);
}

/* Tinted Glass Icon Box */
.icon-box-clean {
	width: 50px;
	height: 50px;
	background: rgba(37, 99, 235, 0.05); 
	border: 1px solid rgba(37, 99, 235, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.feature-card-minimal:hover .icon-box-clean {
	background: #2563eb;
	transform: scale(1.05) rotate(-5deg);
}

.icon-box-clean img {
	width: 24px;
	height: auto;
	transition: all 0.3s ease;
}

.feature-card-minimal:hover .icon-box-clean img {
	filter: brightness(0) invert(1); 
}

/* Card Typography */
.feature-card-minimal h4 {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.feature-card-minimal p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* Interactive Action Link */
.card-action-link {
	font-size: 0.9rem;
	font-weight: 700;
	color: #2563eb;
	display: inline-flex;
	align-items: center;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.card-action-link span {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.feature-card-minimal:hover .card-action-link {
	opacity: 1;
}

.feature-card-minimal:hover .card-action-link span {
	transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.split-title { font-size: 2.4rem; }
	.split-header-content { position: relative; top: 0; margin-bottom: 40px; text-align: center; }
	.split-header-content p { margin-left: auto; margin-right: auto; max-width: 600px; }
}
.vps-use-cases {
	padding: 100px 0;
	background-color: #f8fafc; /* Very light overall background */
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.split-title {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
	letter-spacing: -1px;
}

.split-desc {
	font-size: 1.1rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 50px;
}

/* Base Card Style */
.use-case-card {
	border-radius: 12px;
	padding: 35px 30px;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	border: 1px solid transparent;
}

.use-case-card:hover {
	transform: translateY(-5px);
}

.card-theme-green {
	background-color: #f0fdf4; /* Light green */
	border-color: #dcfce7;
}
.card-theme-green:hover {
	box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.15);
}
.card-theme-green .use-case-icon {
	color: #16a34a;
}

.card-theme-blue {
	background-color: #eff6ff; /* Light blue */
	border-color: #dbeafe;
}
.card-theme-blue:hover {
	box-shadow: 0 15px 30px -10px rgba(37, 99, 235, 0.15);
}
.card-theme-blue .use-case-icon {
	color: #2563eb;
}

.card-theme-purple {
	background-color: #fdf4ff; /* Light pink/purple */
	border-color: #fae8ff;
}
.card-theme-purple:hover {
	box-shadow: 0 15px 30px -10px rgba(192, 38, 211, 0.15);
}
.card-theme-purple .use-case-icon {
	color: #c026d3;
}

/* Naked Icon Style */
.use-case-icon {
	font-size: 2.2rem; 
	margin-bottom: 15px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-icon {
	transform: scale(1.1);
}

/* Typography */
.use-case-card h4 {
	font-size: 1.25rem; 
	font-weight: 800; 
	color: #0f172a; 
	margin-bottom: 12px;
}

.use-case-card p {
	color: #475569; 
	font-size: 0.95rem; 
	line-height: 1.65; 
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.split-title { font-size: 2.4rem; }
	.use-case-card { padding: 30px; }
}


/* --- YAABS Benchmark Section --- */
.vps-benchmark-section {
/* Increased bottom padding from 100px to 180px to fix the wave overlap issue */
padding: 100px 0 180px 0; 
background-color: #f0fdf4; /* Subtle green tint */
background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
background-size: 30px 30px;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
position: relative;
z-index: 1;
}

.split-badge {
display: inline-block;
padding: 8px 16px;
border-radius: 8px; 
font-size: 0.8rem;
font-weight: 700;
margin-bottom: 24px;
letter-spacing: 1px;
text-transform: uppercase;
border: 1px solid #bbf7d0;
background: #dcfce7; 
color: #166534;
}

.split-title {
font-size: 3.2rem;
font-weight: 800;
line-height: 1.15;
color: #0f172a;
letter-spacing: -1px;
}

.split-desc {
font-size: 1.1rem;
color: #475569;
line-height: 1.6;
margin-bottom: 30px;
}

/* White Pill Feature List */
.benchmark-feature-list {
list-style: none;
padding: 0;
margin: 40px 0 0 0;
}

.benchmark-feature-item {
background: #ffffff;
border: 1px solid #e2e8f0;
padding: 16px 24px;
border-radius: 12px;
margin-bottom: 16px;
display: flex;
align-items: center;
font-weight: 700;
color: #0f172a;
box-shadow: 0 4px 10px rgba(0,0,0,0.03);
transition: transform 0.3s ease, border-color 0.3s ease;
max-width: 450px;
}

.benchmark-feature-item:hover {
transform: translateX(5px);
border-color: #10b981;
}

/* Data Card */
.benchmark-data-card {
background: #ffffff;
border-radius: 20px;
padding: 40px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
}

.benchmark-header {
display: flex; justify-content: space-between; align-items: flex-start;
margin-bottom: 35px; padding-bottom: 20px;
border-bottom: 1px solid #f1f5f9;
}

.terminal-badge {
background: #0f172a; color: #10b981;
font-family: monospace; font-size: 0.85rem;
padding: 8px 14px; border-radius: 8px; letter-spacing: 0.5px;
box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.stat-group { margin-bottom: 25px; }
.stat-group:last-child { margin-bottom: 0; }

.stat-label-row {
display: flex; justify-content: space-between;
font-size: 0.95rem; font-weight: 700; color: #334155;
margin-bottom: 10px;
}

.stat-value { color: #2563eb; font-family: monospace; font-size: 1.05rem; font-weight: 800;}

.progress-track {
background: #f1f5f9; border-radius: 10px; height: 12px;
overflow: hidden; width: 100%;
}

.progress-fill-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); height: 100%; border-radius: 10px; }
.progress-fill-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); height: 100%; border-radius: 10px; }
.progress-fill-green { background: linear-gradient(90deg, #10b981, #34d399); height: 100%; border-radius: 10px; }

/* Geekbench Link */
.verify-link {
display: inline-flex;
align-items: center;
margin-top: 25px;
font-size: 0.9rem;
font-weight: 700;
color: #64748b;
text-decoration: none;
transition: color 0.3s;
}
.verify-link span { color: #2563eb; margin-left: 5px; }
.verify-link:hover span { color: #1d4ed8; text-decoration: underline; }

@media (max-width: 992px) {
.split-title { font-size: 2.6rem; }
.benchmark-header { flex-direction: column; gap: 15px; }
.benchmark-data-card { padding: 30px; }
.vps-benchmark-section { padding-bottom: 100px; }
}

/* 1. Container & Overlap Fix */
.vps-scripts {
	/* A gentle negative margin so it floats slightly, without ruining the section above */
	margin-top: -40px; 
	position: relative;
	z-index: 10;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	padding-bottom: 80px;
}

/* 2. Much Tighter Wrapper */
.vps-scripts-wrapper {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-radius: 24px;
	padding: 50px 40px; /* Drastically reduced from 100x60 */
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-top: 4px solid #2563eb;
	position: relative;
	overflow: hidden;
}

/* Internal Glowing Orbs (Scaled down) */
.scripts-glow-1 {
	position: absolute; top: -30%; left: -10%; width: 300px; height: 300px;
	background: rgba(37, 99, 235, 0.05); filter: blur(60px); border-radius: 50%; z-index: 0; pointer-events: none;
}
.scripts-glow-2 {
	position: absolute; bottom: -30%; right: -10%; width: 300px; height: 300px;
	background: rgba(16, 185, 129, 0.03); filter: blur(60px); border-radius: 50%; z-index: 0; pointer-events: none;
}

/* Typography */
.scripts-title {
	font-size: 2.4rem; /* Scaled down slightly */
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
	position: relative;
	z-index: 2;
}

.scripts-desc {
	font-size: 1rem;
	color: #64748b;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto 40px auto; /* Tighter margin */
	position: relative;
	z-index: 2;
}

/* 3. Static Grid Items (Replaces the broken slider) */
.script-grid-item {
	background: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	padding: 25px 15px; /* Compact padding */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0,0,0,0.02);
	cursor: pointer;
	position: relative;
	z-index: 2;
	height: 100%;
}

.script-grid-item:hover {
	transform: translateY(-6px);
	border-color: #bfdbfe;
	box-shadow: 0 15px 30px -10px rgba(37, 99, 235, 0.15);
}

.script-icon-wrapper {
	width: 64px;
	height: 64px;
	background: #f8fafc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	border: 1px solid #f1f5f9;
}

.script-grid-item:hover .script-icon-wrapper {
	background: #eff6ff;
	border-color: #bfdbfe;
	transform: scale(1.08);
}

.script-grid-item img {
	height: 32px; /* Smaller, sharper icons */
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.script-grid-item h6 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

/* 4. Button */
.btn-solid-premium {
	background: #2563eb;
	color: white;
	padding: 12px 32px;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px -5px rgba(37, 99, 235, 0.4);
	position: relative;
	z-index: 2;
}

.btn-solid-premium:hover {
	background: #1d4ed8;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 12px 25px -5px rgba(37, 99, 235, 0.5);
}

@media (max-width: 992px) {
	.vps-scripts-wrapper { padding: 40px 20px; }
	.scripts-title { font-size: 2rem; }
}

.scripts-slider-container {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	gap: 20px;
	padding: 20px 10px;
	scrollbar-width: none; /* Hide scrollbar for Firefox */
}
.scripts-slider-container::-webkit-scrollbar { display: none; } /* Hide scrollbar for Chrome/Safari */

.scripts-slider-container .script-grid-item {
	min-width: 180px;
	flex: 0 0 auto;
}

.slider-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	cursor: pointer;
	transition: all 0.3s ease;
}
.slider-nav-btn:hover { background: #2563eb; color: #fff; }
.prev-btn { left: -10px; }
.next-btn { right: -10px; }

@media (max-width: 768px) {
	.slider-nav-btn { display: none; }
}

/* --- 1. Premium Mesh Background & Layout --- */
.pricing-section-modern {
	position: relative;
	padding: 100px 20px;
	background-color: #f8fafc;
	overflow: hidden;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	z-index: 1;
}

.mesh-glow-1 { position: absolute; top: -10%; left: -5%; width: 500px; height: 500px; background: rgba(56, 189, 248, 0.12); filter: blur(90px); border-radius: 50%; z-index: -1; pointer-events: none;}
.mesh-glow-2 { position: absolute; bottom: 10%; right: -5%; width: 600px; height: 600px; background: rgba(99, 102, 241, 0.08); filter: blur(100px); border-radius: 50%; z-index: -1; pointer-events: none;}

.pricing-title { font-size: 3rem; font-weight: 800; color: #0f172a; letter-spacing: -1px; line-height: 1.2; }
.pricing-desc { font-size: 1.1rem; color: #64748b; margin-top: 12px; }
.text-gradient { background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- 2. Frosted Glass Tabs --- */
.modern-tabs-wrapper {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(16px);
	padding: 8px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
}

.m-tab {
	display: flex; align-items: center; gap: 12px;
	padding: 12px 24px; border-radius: 14px;
	color: #475569; text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}
.m-tab:hover { background: rgba(255, 255, 255, 0.9); color: #0f172a; }

.m-tab.active { background: #0f172a; color: #ffffff; box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2); }
.m-tab-icon { font-size: 1.6rem; color: #94a3b8; transition: color 0.3s ease; }
.m-tab.active .m-tab-icon { color: #38bdf8; }

.m-tab-text { display: flex; flex-direction: column; text-align: left; }
.m-tab-title { font-size: 0.95rem; font-weight: 700; line-height: 1.2; }
.m-tab-desc { font-size: 0.75rem; opacity: 0.8; margin-top: 2px; }

/* --- 3. Master Dashboard Grid --- */
.master-filter-dashboard {
	background: #ffffff; border-radius: 16px; padding: 20px 24px;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 20px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
	margin-bottom: 30px;
}

/* Minimal Dashboard (For Storage) */
.minimal-filter-bar {
	display: flex; justify-content: flex-end; align-items: center;
	gap: 15px; margin-bottom: 30px;
}

.filter-column { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 992px) { .cpu-model-col { grid-column: span 2; } } /* CPU spans wider */

.filter-header {
	display: flex; align-items: center; gap: 6px; font-size: 0.75rem;
	font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-header iconify-icon { color: #2563eb; font-size: 1rem; }

/* Dropdowns */
.clean-select {
	appearance: none; background: #ffffff url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%232563eb%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E") no-repeat right 12px top 50%;
	background-size: 16px auto; border: 1px solid #e2e8f0; border-radius: 8px;
	padding: 10px 36px 10px 14px; font-weight: 600; color: #0f172a; font-size: 0.9rem;
	cursor: pointer; width: 100%; transition: all 0.2s ease;
}
.clean-select:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

/* Segmented Controls (CPU & Currency) */
.cpu-toggle-wrapper, .currency-toggle-wrapper {
	display: flex; background: #f8fafc; border-radius: 10px; padding: 6px;
	border: 1px solid #e2e8f0; width: 100%; height: 100%; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); gap: 4px;
}
.minimal-filter-bar .currency-toggle-wrapper { width: auto; } /* Prevents stretch on minimal bar */

.cpu-btn, .curr-btn {
	background: transparent; border: none; border-radius: 8px; color: #64748b; 
	cursor: pointer; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); flex: 1; 
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	padding: 8px 4px; text-align: center;
}
.curr-btn { padding: 8px 16px; font-weight: 700; font-size: 0.85rem; }

.cpu-btn:hover:not(.active):not(:disabled), .curr-btn:hover:not(.active) { background: #f1f5f9; color: #0f172a; }

/* Active State (Bright Blue Premium 3D effect) */
.cpu-btn.active, .curr-btn.active {
	background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%); color: #ffffff; 
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.25); 
}

/* Disabled State (For unavailable CPUs) */
.cpu-btn:disabled {
	opacity: 0.35; cursor: not-allowed; background: transparent !important;
	color: #64748b !important; box-shadow: none !important; transform: none !important;
}

.cpu-title { font-weight: 800; font-size: 0.85rem; letter-spacing: -0.2px; }
.cpu-sub { font-size: 0.6rem; font-weight: 700; margin-top: 3px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.5px;}

/* --- 4. Floating Table Rows --- */
.table-responsive { -ms-overflow-style: none; scrollbar-width: none; overflow-x: auto; padding: 10px 0; }
.table-responsive::-webkit-scrollbar { display: none; }
.modern-pricing-table { width: 100%; min-width: 1000px; border-collapse: separate; border-spacing: 0 16px; }

.modern-pricing-table th { color: #64748b; font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; padding: 0 18px 10px 18px; border: none; text-align: left; }
.modern-pricing-table th:first-child { padding-left: 28px; }
.modern-pricing-table th:last-child { padding-right: 28px; text-align: right; }

.data-row td {
	background: #ffffff; padding: 22px 18px; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9;
	transition: all 0.3s ease; position: relative; vertical-align: middle;
}
.data-row td:first-child { border-left: 1px solid #f1f5f9; border-radius: 16px 0 0 16px; padding-left: 28px; }
.data-row td:last-child { border-right: 1px solid #f1f5f9; border-radius: 0 16px 16px 0; text-align: right; padding-right: 28px; }

.data-row td:first-child::before {
	content: ''; position: absolute; left: -1px; top: 0; bottom: 0; width: 4px;
	background: transparent; border-radius: 16px 0 0 16px; transition: all 0.3s ease;
}

.data-row:hover td { box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.12); border-color: transparent; z-index: 10; }
.data-row:hover td:first-child::before { background: #3b82f6; }

.empty-state { display: none; text-align: center; padding: 50px; background: #fff; border-radius: 16px; border: 1px dashed #e2e8f0; color: #64748b; font-weight: 600; }

/* --- 5. Data Typography & Elements --- */
.spec-main { display: block; font-weight: 700; color: #0f172a; font-size: 0.95rem; margin-bottom: 6px; white-space: nowrap; }
.spec-sub { display: block; font-size: 0.8rem; color: #64748b; font-weight: 400; white-space: nowrap; }

.location-badge {
	display: inline-flex; align-items: center; gap: 8px; background: #f8fafc; 
	padding: 6px 12px; border-radius: 8px; font-weight: 600; font-size: 0.8rem; 
	color: #334155; border: 1px solid #e2e8f0; transition: background 0.3s ease; white-space: nowrap;
}
.data-row:hover .location-badge { background: #ffffff; border-color: #bfdbfe; }

.nvme-pill {
	display: inline-flex; align-items: center; gap: 4px; background: #eff6ff; color: #2563eb; 
	padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; margin-top: 6px; border: 1px solid #bfdbfe;
}
.nvme-pill.custom-dark { background: #0f172a; color: #ffffff; border: none; }

.price-wrap { display: flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.price-wrap .currency { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.price-wrap .amount { font-size: 1.3rem; font-weight: 800; color: #0f172a; letter-spacing: -0.5px; }
.price-wrap .duration { font-size: 0.8rem; color: #64748b; font-weight: 500; }

.btn-order {
	background: #ffffff; color: #2563eb; padding: 10px 22px; border-radius: 10px;
	font-weight: 700; font-size: 0.9rem; text-decoration: none; border: 2px solid #e0e7ff;
	display: inline-block; transition: all 0.3s ease; white-space: nowrap;
}
.data-row:hover .btn-order {
	background: #2563eb; color: #ffffff; border-color: #2563eb;
	box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4); transform: translateY(-2px);
}
	/* --- Mobile Responsive Fixes --- */
@media (max-width: 768px) {
	.modern-tabs-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		gap: 8px;
		padding: 8px;
	}
	
	.m-tab {
		flex-direction: column;
		text-align: center;
		padding: 12px 8px;
		gap: 8px;
		justify-content: center;
	}
	
	.m-tab-text {
		text-align: center;
	}
	
	.m-tab-title {
		font-size: 0.85rem;
	}
	
	.m-tab-desc {
		font-size: 0.65rem;
	}
		
	.master-filter-dashboard {
		grid-template-columns: 1fr; 
		padding: 16px;
		gap: 24px;
	}

	.cpu-toggle-wrapper {
		flex-wrap: wrap;
	}
	
	.cpu-btn {
		flex: 1 1 45%; 
		padding: 10px 4px;
	}
	
	.currency-toggle-wrapper {
		flex-wrap: wrap;
	}
			.table-responsive { overflow: visible; padding: 0; }
	.modern-pricing-table { min-width: 100%; border-spacing: 0; }
	.modern-pricing-table thead { display: none; } /* Hide the top headers */
	
	/* Turn each row into a standalone card */
	.data-row { 
		display: block; 
		margin-bottom: 24px; 
		background: #ffffff; 
		border-radius: 16px; 
		border: 1px solid #e2e8f0; 
		box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
		overflow: hidden;
	}
	
	/* Align content to the right side of the card */
	.modern-pricing-table .data-row td {
		display: block;
		position: relative;
		padding: 16px 20px 16px 45%; /* 45% space on left for labels */
		text-align: right;
		border: none;
		border-bottom: 1px solid #f1f5f9;
	}
	
	/* Override desktop borders */
	.modern-pricing-table .data-row td:first-child { padding-left: 45%; border-radius: 0; border-left: none; }
	.modern-pricing-table .data-row td:last-child { padding-right: 20px; border-radius: 0; border-right: none; border-bottom: none; }
	.modern-pricing-table .data-row td:first-child::before { display: none; } /* Hide blue side-bar */

	/* Automatically inject column headers on the left side */
	.modern-pricing-table .data-row td::after {
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 0.75rem;
		font-weight: 800;
		color: #94a3b8;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.modern-pricing-table .data-row td:nth-child(1)::after { content: "Processor"; }
	.modern-pricing-table .data-row td:nth-child(2)::after { content: "Memory"; }
	.modern-pricing-table .data-row td:nth-child(3)::after { content: "Storage"; }
	.modern-pricing-table .data-row td:nth-child(4)::after { content: "Network"; }
	.modern-pricing-table .data-row td:nth-child(5)::after { content: "Location"; }
	.modern-pricing-table .data-row td:nth-child(6)::after { content: "Pricing"; }

	/* Formatting fixes for the text */
	.spec-main, .spec-sub { text-align: right; width: 100%; display: block; }
	.price-wrap { justify-content: flex-end; }
	
	/* Stretch the Order Button across the bottom of the card */
	.modern-pricing-table .data-row td:last-child { padding: 20px; text-align: center; background: #f8fafc; }
	.modern-pricing-table .btn-order { display: block; width: 100%; text-align: center; }

			.premium-segmented-control {
		display: flex !important;
		flex-direction: row !important; /* Forces them to stay on the same line */
		flex-wrap: nowrap !important;   /* Prevents breaking to a new line */
		width: 100%;
		padding: 4px; /* Keeps the inner spacing tight */
	}
	
	.premium-segmented-control .nav-item {
		flex: 1 1 50%; /* Each button takes exactly half the width */
		margin: 0;
	}
	
	.premium-segmented-control .nav-link {
		width: 100%;
		padding: 8px 4px !important; /* Reduces side padding to make room for text */
		font-size: 0.85rem !important; /* Slightly smaller text for mobile */
		text-align: center;
		white-space: nowrap; /* Stops the text itself from stacking */
		overflow: hidden;
		text-overflow: ellipsis; /* Adds '...' if on an extremely tiny screen like iPhone SE */
	}
			.btn-primary-modern {
		white-space: nowrap;
		font-size: 0.9rem; 
		padding: 12px 24px; 
	}
}



