/*
Theme Name: IPTV Bestellen NL
Theme URI: https://iptvbestellen.nl
Author: IPTV Bestellen NL
Author URI: https://iptvbestellen.nl
Description: Premium IPTV service theme for Netherlands with modern design and glassmorphism effects.
Version: 3.0.0
Text Domain: iptvbestellen
*/

/* Prevent body scroll when mobile menu is open */
body.menu-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
	/* Brand Colors */
	--dutch-gold: #FFD900;
	--dutch-gold-dark: #E6C300;
	--dutch-gold-light: #FFED4E;
	--dutch-blue: #0051A5;
	--dutch-blue-dark: #003D7A;
	--dutch-blue-light: #1E6BB8;
	
	/* Dark Theme Colors */
	--bg-primary: #0f0f23;
	--bg-secondary: #1a1a2e;
	--bg-tertiary: #16213e;
	--text-primary: #ffffff;
	--text-secondary: #b3b3b3;
	--text-muted: #888888;
	
	/* Glass Effects */
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
	--glass-hover: rgba(255, 255, 255, 0.08);
	--glass-active: rgba(255, 217, 0, 0.1);
	
	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 8px 32px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 15px 40px rgba(255, 217, 0, 0.2);
	--shadow-glow: 0 0 20px rgba(255, 217, 0, 0.3);
	
	/* Spacing */
	--container-max: 1200px;
	--section-padding: 5rem 0;
	--card-padding: 2.5rem;
	--border-radius: 20px;
	--border-radius-sm: 12px;
	
	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
	
	/* Mobile-first spacing */
	--mobile-padding: 1rem;
	--mobile-margin: 0.5rem;
	--mobile-gap: 1rem;
	--mobile-font-size: 0.9rem;
	--mobile-line-height: 1.4;
}

/* ===== MOBILE-FIRST RESPONSIVE DESIGN ===== */

/* ===== MOBILE-FIRST BASE STYLES ===== */
* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: var(--mobile-line-height);
	font-size: var(--mobile-font-size);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ===== UNIVERSAL CONTAINER CLASS ===== */
.container {
	width: 100% !important;
	max-width: 1200px !important;
	margin: 0 auto !important;
	padding: 0 16px !important;
	box-sizing: border-box !important;
	position: relative !important;
	/* Ensure vertical scrolling is not constrained */
	overflow-y: visible !important;
}

/* ===== SECTION WRAPPER CLASS ===== */
.section-wrapper {
	width: 100% !important;
	max-width: 100vw !important;
	margin: 0 auto !important;
	box-sizing: border-box !important;
	position: relative !important;
	overflow-x: hidden !important;
}

/* ===== SECTION CONTAINMENT ===== */
section {
	width: 100% !important;
	max-width: 100vw !important;
	margin: 0 auto !important;
	box-sizing: border-box !important;
	overflow-x: hidden !important;
	/* Ensure vertical scrolling is not constrained */
	overflow-y: visible !important;
}

/* ===== MAIN ELEMENT CONTAINMENT ===== */
main,
#primary,
.site-main {
	width: 100% !important;
	max-width: 100vw !important;
	margin: 0 auto !important;
	box-sizing: border-box !important;
	overflow-x: hidden !important;
}

/* ===== BODY AND HTML CONTAINMENT ===== */
html,
body {
	width: 100% !important;
	max-width: 100vw !important;
	margin: 0 auto !important;
	box-sizing: border-box !important;
	overflow-x: hidden !important;
}

/* Prevent any parent element from overriding container alignment */
* .container,
section .container,
div .container,
main .container,
article .container {
	width: 100% !important;
	max-width: 1200px !important;
	margin: 0 auto !important;
	padding: 0 16px !important;
	box-sizing: border-box !important;
}

/* Prevent any parent element from overriding section wrapper alignment */
* .section-wrapper,
section .section-wrapper,
div .section-wrapper,
main .section-wrapper,
article .section-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	box-sizing: border-box !important;
}

/* Ensure container works on all screen sizes */
@media (max-width: 480px) {
	.container,
	* .container,
	section .container,
	div .container,
	main .container,
	article .container {
		padding: 0 16px !important;
		max-width: 100% !important;
	}
	
	.section-wrapper,
	* .section-wrapper,
	section .section-wrapper,
	div .section-wrapper,
	main .section-wrapper,
	article .section-wrapper {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
	}
	
	section,
	main,
	#primary,
	.site-main,
	html,
	body {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
		overflow-x: hidden !important;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.container,
	* .container,
	section .container,
	div .container,
	main .container,
	article .container {
		padding: 0 20px !important;
		max-width: 100% !important;
	}
	
	.section-wrapper,
	* .section-wrapper,
	section .section-wrapper,
	div .section-wrapper,
	main .section-wrapper,
	article .section-wrapper {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
	}
	
	section,
	main,
	#primary,
	.site-main,
	html,
	body {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
		overflow-x: hidden !important;
	}
}

@media (min-width: 769px) {
	.container,
	* .container,
	section .container,
	div .container,
	main .container,
	article .container {
		padding: 0 24px !important;
		max-width: 1200px !important;
	}
	
	.section-wrapper,
	* .section-wrapper,
	section .section-wrapper,
	div .section-wrapper,
	main .section-wrapper,
	article .section-wrapper {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
	}
	
	section,
	main,
	#primary,
	.site-main,
	html,
	body {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
		overflow-x: hidden !important;
	}
}

@media (min-width: 1024px) {
	.container,
	* .container,
	section .container,
	div .container,
	main .container,
	article .container {
		padding: 0 32px !important;
		max-width: 1200px !important;
	}
	
	.section-wrapper,
	* .section-wrapper,
	section .section-wrapper,
	div .section-wrapper,
	main .section-wrapper,
	article .section-wrapper {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
	}
	
	section,
	main,
	#primary,
	.site-main,
	html,
	body {
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
		overflow-x: hidden !important;
	}
}

/* ===== MOBILE-FIRST TYPOGRAPHY ===== */
h1 {
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: 700;
}

h2 {
	font-size: 1.5rem;
	line-height: 1.3;
	margin-bottom: 0.8rem;
	font-weight: 600;
}

h3 {
	font-size: 1.3rem;
	line-height: 1.3;
	margin-bottom: 0.6rem;
	font-weight: 600;
}

p {
	font-size: var(--mobile-font-size);
	line-height: var(--mobile-line-height);
	margin-bottom: 1rem;
}

/* ===== MOBILE-FIRST BUTTONS ===== */
.btn {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	font-size: var(--mobile-font-size);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius);
	transition: var(--transition);
	border: none;
	cursor: pointer;
	text-align: center;
	min-height: 44px; /* Touch-friendly */
	line-height: 1.2;
}

.btn-primary {
	background: var(--dutch-gold);
	color: var(--bg-primary);
}

.btn-secondary {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	color: var(--text-primary);
	border: 2px solid var(--dutch-gold);
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 217, 0, 0.3);
}

/* ===== MOBILE-FIRST GRID SYSTEM ===== */
.grid {
	display: grid;
	gap: var(--mobile-gap);
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* ===== MOBILE-FIRST CARDS ===== */
.card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	padding: var(--mobile-padding);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* ===== MOBILE-FIRST SECTIONS ===== */
section {
	padding: 2rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 2rem;
}

.section-subtitle {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

/* ===== RESET & BASE ===== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text-primary);
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ===== UNIFIED BACKGROUND ===== */
.unified-background {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.1rem); }

p {
	margin-bottom: 1rem;
	color: var(--text-secondary);
	font-size: 1.1rem;
}

a {
	color: var(--dutch-gold);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--dutch-gold-light);
}

/* ===== LAYOUT ===== */

.section {
	padding: var(--section-padding);
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: var(--border-radius-sm);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--dutch-gold) 0%, var(--dutch-gold-dark) 100%);
	color: var(--bg-primary);
	box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--dutch-gold-light) 0%, var(--dutch-gold) 100%);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: var(--glass-bg);
	color: var(--text-primary);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(20px);
}

.btn-secondary:hover {
	background: var(--glass-hover);
	border-color: var(--dutch-gold);
	transform: translateY(-2px);
}

/* ===== GLASS CARDS ===== */
.glass-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	padding: var(--card-padding);
	backdrop-filter: blur(20px) saturate(150%);
	box-shadow: var(--shadow-md);
	transition: all var(--transition-normal);
	margin-bottom: 2rem;
}

.glass-card:last-child {
	margin-bottom: 0;
}

.glass-card:hover {
	transform: translateY(-8px);
	border-color: var(--dutch-gold);
	box-shadow: var(--shadow-lg);
}

/* ===== HEADER ===== */
/* Removed duplicate header definition - using pill navigation header below */

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding .site-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0;
}

.site-branding .site-title a {
	color: var(--text-primary);
	text-decoration: none;
}

.site-branding .site-title a:hover {
	color: var(--dutch-gold);
}

/* ===== NAVIGATION ===== */
.main-navigation {
	display: flex;
	align-items: center;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

/* ===== CONSISTENT SECTION STYLING ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Consistent section spacing */
.device-selection-section,
.pricing-section,
.multi-device-section {
    padding: var(--section-padding);
}

.device-selection-section {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.pricing-section {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    /* Removed background-attachment: fixed to prevent scroll lock issues */
}

.multi-device-section {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ===== HERO SECTION ===== */
.hero-section {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	padding: 2rem 0 3rem 0;
}

/* Animated Interface */
.animated-interface {
	position: relative;
	height: 100%;
	overflow: hidden;
	will-change: transform;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.content-display {
	position: relative;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* Mobile responsive for hero animation */
@media (max-width: 768px) {
	.content-display {
		height: 100%;
		min-height: 180px;
	}
	
	.sports-banner {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
		margin-bottom: 1rem;
		border-radius: 15px;
	}
	
	.match-info {
		padding: 1rem;
		margin: 0 0.5rem;
	}
	
	.teams {
		font-size: 1.1rem;
		margin-bottom: 0.5rem;
		line-height: 1.3;
	}
	
	.score {
		font-size: 1.8rem;
		margin-bottom: 0.5rem;
		font-weight: 900;
	}
	
	.time {
		font-size: 0.9rem;
	}
	
	.movie-title, .series-title {
		font-size: 1.2rem;
		margin-bottom: 0.5rem;
		line-height: 1.3;
	}
	
	.movie-details {
		font-size: 0.9rem;
		line-height: 1.4;
	}
	
	.popular-label {
		font-size: 0.9rem;
		margin-bottom: 0.8rem;
		font-weight: 700;
	}
	
	/* Ensure content is centered and visible */
	.content-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 1rem;
	}
	
	.live-sports, .featured-movie, .featured-series {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
	
	/* Optimize animations for mobile */
	.sports-banner {
		animation: pulse 1.5s infinite, glow 2s infinite;
	}
	
	.teams, .movie-title, .series-title {
		animation: fadeInOut 3s infinite;
	}
	
	.score {
		animation: float 1.5s infinite ease-in-out;
	}
	
	.match-info {
		animation: glow 3s infinite;
	}
}

@media (max-width: 480px) {
	.content-display {
		height: 100%;
		min-height: 160px;
	}
	
	.sports-banner {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
		margin-bottom: 0.8rem;
		border-radius: 12px;
	}
	
	.match-info {
		padding: 0.8rem;
		margin: 0 0.3rem;
	}
	
	.teams {
		font-size: 1rem;
		margin-bottom: 0.4rem;
		line-height: 1.2;
	}
	
	.score {
		font-size: 1.5rem;
		margin-bottom: 0.4rem;
		font-weight: 900;
	}
	
	.time {
		font-size: 0.8rem;
	}
	
	.movie-title, .series-title {
		font-size: 1.1rem;
		margin-bottom: 0.4rem;
		line-height: 1.2;
	}
	
	.movie-details {
		font-size: 0.8rem;
		line-height: 1.3;
	}
	
	.popular-label {
		font-size: 0.8rem;
		margin-bottom: 0.6rem;
		font-weight: 700;
	}
	
	/* Ensure content is centered and visible on small screens */
	.content-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.8rem;
	}
	
	.live-sports, .featured-movie, .featured-series {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}
	
	/* Optimize animations for small mobile */
	.sports-banner {
		animation: pulse 1.2s infinite, glow 1.8s infinite;
	}
	
	.teams, .movie-title, .series-title {
		animation: fadeInOut 2.5s infinite;
	}
	
	.score {
		animation: float 1.2s infinite ease-in-out;
	}
	
	.match-info {
		animation: glow 2.5s infinite;
	}
}

.content-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.8s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform, opacity;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.content-slide.active {
	opacity: 1;
	transform: translateX(0);
}

.content-slide.prev {
	transform: translateX(-100%);
}

/* ===== RESELLER PAGE STYLES ===== */

/* Hero Section */
.hero-section {
	padding: 4rem 0;
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffed4e 100%);
	color: var(--bg-primary);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.trust-points {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.trust-point {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.trust-icon {
	color: var(--dutch-gold);
	font-weight: bold;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffed4e 100%);
	color: var(--bg-primary);
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 217, 0, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border: 2px solid var(--dutch-gold);
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-secondary:hover {
	background: var(--dutch-gold);
	color: var(--bg-primary);
}

/* Dashboard Preview */
.dashboard-preview {
	display: flex;
	justify-content: center;
}

.dashboard-mockup {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	width: 100%;
	max-width: 400px;
}

.dashboard-header h3 {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	text-align: center;
}

.dashboard-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.stat-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.stat-value {
	color: var(--dutch-gold);
	font-weight: 700;
	font-size: 1.1rem;
}

.recent-orders h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1rem;
}

.order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item:last-child {
	border-bottom: none;
}

.status {
	color: #00a32a;
	font-weight: bold;
}

/* Trust Bar */
.trust-bar {
	background: rgba(0, 0, 0, 0.3);
	padding: 3rem 0;
}

.trust-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.trust-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dutch-gold);
}

.stat-suffix, .stat-prefix {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dutch-gold);
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
	text-align: center;
}

/* How It Works */
.how-it-works {
	padding: 5rem 0;
	background: var(--bg-primary);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.steps-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	position: relative;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	position: relative;
	z-index: 2;
}

.step-number {
	width: 40px;
	height: 40px;
	background: var(--dutch-gold);
	color: var(--bg-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.step-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.step h3 {
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	font-size: 1.2rem;
}

.step p {
	color: var(--text-secondary);
	line-height: 1.5;
}

.step-connector {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--dutch-gold) 0%, transparent 100%);
	position: relative;
}

.step-connector::after {
	content: '';
	position: absolute;
	right: -5px;
	top: -3px;
	width: 0;
	height: 0;
	border-left: 8px solid var(--dutch-gold);
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}

/* Pricing Section - Clean version without scroll lock issues */
.pricing-section {
	padding: 5rem 0;
	background: transparent;
	/* Ensure no scroll constraints */
	overflow: visible !important;
	height: auto !important;
	min-height: auto !important;
	position: relative !important;
}

/* Ensure all pricing section children don't constrain scrolling */
.pricing-section * {
	overflow: visible !important;
	height: auto !important;
	min-height: auto !important;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	/* Ensure no scroll constraints */
	overflow: visible;
	height: auto;
	position: relative;
}

.pricing-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	transition: all 0.4s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 193, 7, 0.3);
}

.pricing-card.popular {
	border: 2px solid var(--dutch-gold);
	transform: scale(1.05);
	box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.popular-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--dutch-gold);
	color: var(--bg-primary);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.card-header {
	text-align: center;
	margin-bottom: 2rem;
}

.card-header h3 {
	color: var(--text-primary);
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.currency {
	font-size: 1.8rem;
	background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
}

.amount {
	font-size: 3.5rem;
	background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.period {
	color: var(--text-secondary);
	font-size: 1.1rem;
	font-weight: 500;
}

/* Enhanced Pricing Card Styles */
.package-description {
	color: var(--text-secondary);
	font-size: 1rem;
	margin-top: 1rem;
	line-height: 1.5;
	font-style: italic;
}

.card-highlights {
	margin: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.highlight-item:hover {
	background: rgba(255, 217, 0, 0.1);
	border-color: var(--dutch-gold);
	transform: translateX(5px);
}

.highlight-icon {
	font-size: 1.5rem;
	width: 2rem;
	text-align: center;
}

.highlight-item span:last-child {
	color: var(--text-primary);
	font-weight: 500;
	font-size: 0.95rem;
}

/* Legacy feature styles for backward compatibility */
.card-features {
	margin-bottom: 2rem;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
}

.feature.disabled {
	opacity: 0.5;
}

.feature-icon {
	color: var(--dutch-gold);
	font-weight: bold;
}

.feature.disabled .feature-icon {
	color: var(--text-muted);
}

.select-package-btn {
	width: 100%;
	background: transparent;
	color: var(--dutch-gold);
	border: 2px solid var(--dutch-gold);
	padding: 1.25rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.4s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}

.select-package-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
	transition: left 0.5s ease;
}

.select-package-btn:hover::before {
	left: 100%;
}

.select-package-btn:hover {
	background: var(--dutch-gold);
	color: var(--bg-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.pricing-card.popular .select-package-btn {
	background: var(--dutch-gold);
	color: var(--bg-primary);
}

.pricing-card.popular .select-package-btn:hover {
	background: transparent;
	color: var(--dutch-gold);
}

/* Mobile Responsive - Single Column */
@media (max-width: 480px) {
	.pricing-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.pricing-card {
		padding: 2rem 1.5rem;
	}
	
	.package-description {
		font-size: 0.9rem;
	}
	
	.highlight-item {
		padding: 0.6rem 0.8rem;
		gap: 0.8rem;
	}
	
	.highlight-icon {
		font-size: 1.3rem;
		width: 1.8rem;
	}
	
	.highlight-item span:last-child {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.pricing-card {
		padding: 1.5rem 1rem;
	}
	
	.card-header h3 {
		font-size: 1.3rem;
	}
	
	.amount {
		font-size: 2.5rem;
	}
	
	.package-description {
		font-size: 0.85rem;
		margin-top: 0.8rem;
	}
	
	.card-highlights {
		margin: 1.5rem 0;
		gap: 0.8rem;
	}
	
	.highlight-item {
		padding: 0.5rem 0.6rem;
		gap: 0.6rem;
	}
	
	.highlight-icon {
		font-size: 1.2rem;
		width: 1.6rem;
	}
	
	.highlight-item span:last-child {
		font-size: 0.85rem;
	}
}

/* Calculator Section */
.calculator-section {
	padding: 5rem 0;
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%);
}

.calculator-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

.calculator-inputs {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group {
	margin-bottom: 2rem;
}

.input-group label {
	display: block;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.slider-container {
	position: relative;
}

.slider-container input[type="range"] {
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--dutch-gold);
	cursor: pointer;
}

.slider-value {
	position: absolute;
	right: 0;
	top: -30px;
	color: var(--dutch-gold);
	font-weight: 600;
}

.price-input-container {
	position: relative;
}

.currency-prefix {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	font-weight: 600;
}

.price-input-container input {
	padding-left: 2.5rem;
}

.input-group input,
.input-group select {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-primary);
	font-size: 1rem;
}

.package-selector {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	padding: 0.75rem;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.radio-option:hover {
	background: rgba(255, 255, 255, 0.05);
}

.radio-option input[type="radio"] {
	width: auto;
	margin: 0;
}

.calculator-results {
	display: flex;
	align-items: center;
	justify-content: center;
}

.result-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 100%;
}

.result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
	border-bottom: none;
}

.result-item.highlight {
	background: rgba(255, 217, 0, 0.1);
	border-radius: 8px;
	padding: 1.5rem 1rem;
	margin: 1rem 0;
	border: 1px solid var(--dutch-gold);
}

.result-label {
	color: var(--text-secondary);
	font-weight: 600;
}

.result-value {
	color: var(--dutch-gold);
	font-weight: 700;
	font-size: 1.2rem;
}

.result-item.highlight .result-value {
	font-size: 1.5rem;
}

/* Benefits Section */
.benefits-section {
	padding: 5rem 0;
}

.benefits-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.benefits-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.benefits-text p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.benefits-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.benefit-icon {
	color: var(--dutch-gold);
	font-weight: bold;
	font-size: 1.1rem;
}

.benefits-illustration {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
	position: relative;
}

.illustration-element {
	font-size: 4rem;
	margin: 0 1rem;
	animation: float 3s ease-in-out infinite;
}

.illustration-element:nth-child(2) {
	animation-delay: 1s;
}

.illustration-element:nth-child(3) {
	animation-delay: 2s;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

/* Signup Section */
.signup-section {
	padding: 5rem 0;
}

.signup-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.form-header {
	text-align: center;
	margin-bottom: 2rem;
}

.form-header h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.form-header p {
	color: var(--text-secondary);
}

.reseller-form {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-primary);
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--dutch-gold);
}

.phone-input-group {
	display: flex;
	gap: 0.5rem;
}

.phone-input-group select {
	width: 80px;
	flex-shrink: 0;
}

.checkbox-group {
	display: flex;
	align-items: center;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.submit-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffed4e 100%);
	color: var(--bg-primary);
	padding: 1.25rem;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 217, 0, 0.4);
}

.submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* FAQ */
.faq-container h3 {
	color: var(--text-primary);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
	color: var(--dutch-gold);
	font-weight: bold;
	font-size: 1.2rem;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	padding: 0 1rem 1rem 1rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Final CTA */
.final-cta {
	padding: 4rem 0;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	opacity: 0.9;
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-white {
	background: var(--bg-primary);
	color: var(--dutch-gold);
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-white-outline {
	background: transparent;
	color: var(--bg-primary);
	padding: 1rem 2rem;
	border: 2px solid var(--bg-primary);
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-white-outline:hover {
	background: var(--bg-primary);
	color: var(--dutch-gold);
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal-content {
	background: var(--bg-primary);
	margin: 5% auto;
	padding: 2rem;
	border-radius: 16px;
	width: 90%;
	max-width: 600px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.close {
	color: var(--text-secondary);
	float: right;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	right: 1rem;
	top: 1rem;
}

.close:hover {
	color: var(--text-primary);
}

.modal-body {
	text-align: center;
}

.modal-body h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.modal-body p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.video-placeholder {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 3rem;
	border: 2px dashed rgba(255, 255, 255, 0.2);
}

.video-placeholder span {
	font-size: 3rem;
	display: block;
	margin-bottom: 1rem;
}

.success-icon {
	font-size: 4rem;
	color: #00a32a;
	margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.trust-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.steps-container {
		flex-direction: column;
		gap: 1rem;
	}
	
	.step-connector {
		width: 2px;
		height: 40px;
		background: linear-gradient(180deg, var(--dutch-gold) 0%, transparent 100%);
	}
	
	.step-connector::after {
		display: none;
	}
	
	
	.calculator-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.benefits-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.signup-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.phone-input-group {
		flex-direction: column;
	}
	
	.phone-input-group select {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-section {
		padding: 2rem 0;
	}
	
	.hero-title {
		font-size: 1.5rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.trust-stats {
		grid-template-columns: 1fr;
	}
	
	.section-header h2 {
		font-size: 1.8rem;
	}
	
	.pricing-card {
		padding: 1.5rem;
	}
	
	.calculator-inputs,
	.reseller-form {
		padding: 1.5rem;
	}
	
	.modal-content {
		margin: 10% auto;
		padding: 1.5rem;
	}
}

/* ===== RESPONSIVE DASHBOARD ANIMATION STYLES ===== */

/* Responsive Dashboard Container */
.responsive-dashboard {
	width: 100%;
	max-width: 600px;
	min-height: 500px;
	background: rgba(15, 15, 35, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	border: 1px solid rgba(255, 217, 0, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.dashboard-header {
	padding: 1.5rem;
	border-bottom: 1px solid rgba(255, 217, 0, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dashboard-title {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.dashboard-user {
	width: 40px;
	height: 40px;
	background: var(--dutch-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-primary);
	font-weight: bold;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

/* Responsive Dashboard Grid */
.dashboard-grid {
	padding: 1.5rem;
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto auto;
	gap: 1rem;
	grid-template-areas: 
		"stat1 stat2"
		"chart chart"
		"map activity";
}

/* Grid Areas */
.stat-card:nth-child(1) { grid-area: stat1; }
.stat-card:nth-child(2) { grid-area: stat2; }
.chart-card { grid-area: chart; }
.map-card { grid-area: map; }
.activity-card { grid-area: activity; }

.dashboard-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.dashboard-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 217, 0, 0.1), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

/* Card Types */
.stat-card {
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.chart-card {
	min-height: 180px;
}

.map-card {
	min-height: 150px;
}

.activity-card {
	min-height: 200px;
}

.card-title {
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	opacity: 0.9;
}

.card-value {
	color: var(--dutch-gold);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	animation: countUp 2s ease-out;
}

.card-label {
	color: #ffffff;
	font-size: 0.8rem;
	opacity: 0.8;
}

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

/* Chart Animation */
.chart-container {
	height: 120px;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 1rem;
}

.chart-bar {
	background: linear-gradient(180deg, var(--dutch-gold) 0%, #ffed4e 100%);
	border-radius: 4px 4px 0 0;
	width: 20px;
	position: relative;
	animation: growUp 1.5s ease-out;
}

/* Chart Bar Heights - Will be set dynamically */
.chart-bar {
	height: 0;
	transition: height 1.5s ease-out;
}

@keyframes growUp {
	from { height: 0; }
	to { height: var(--target-height); }
}

/* Progress Bars */
.progress-container {
	margin-top: 1rem;
}

.progress-item {
	margin-bottom: 0.75rem;
}

.progress-label {
	color: #ffffff;
	font-size: 0.8rem;
	margin-bottom: 0.25rem;
	opacity: 0.9;
}

.progress-bar {
	height: 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--dutch-gold) 0%, #ffed4e 100%);
	border-radius: 4px;
	animation: fillProgress 2s ease-out;
}

/* Progress Fill - Will be set dynamically */
.progress-fill {
	width: 0;
	transition: width 2s ease-out;
}

@keyframes fillProgress {
	from { width: 0; }
	to { width: var(--target-width); }
}

/* Map Placeholder */
.map-placeholder {
	height: 120px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dutch-gold);
	font-size: 2rem;
	animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Activity List */
.activity-list {
	margin-top: 1rem;
}

.activity-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	animation: slideIn 0.5s ease-out;
}

.activity-item:last-child {
	border-bottom: none;
}

.activity-icon {
	width: 8px;
	height: 8px;
	background: var(--dutch-gold);
	border-radius: 50%;
	animation: blink 2s infinite;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0.3; }
}

.activity-text {
	color: #ffffff;
	font-size: 0.8rem;
	opacity: 0.9;
}

.activity-time {
	color: var(--dutch-gold);
	font-size: 0.7rem;
	margin-left: auto;
}

@keyframes slideIn {
	from { opacity: 0; transform: translateX(-20px); }
	to { opacity: 1; transform: translateX(0); }
}

/* Loading Animation */
.dashboard-loading {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 15, 35, 0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 217, 0, 0.3);
	border-top: 3px solid var(--dutch-gold);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-text {
	color: #ffffff;
	margin-top: 1rem;
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
	.responsive-dashboard {
		max-width: 100%;
		min-height: 400px;
		margin: 0 1rem;
	}
	
	.dashboard-grid {
		padding: 1rem;
		grid-template-columns: 1fr;
		grid-template-areas: 
			"stat1"
			"stat2"
			"chart"
			"map"
			"activity";
		gap: 0.75rem;
	}
	
	.dashboard-header {
		padding: 1rem;
	}
	
	.dashboard-title {
		font-size: 1.2rem;
	}
	
	.dashboard-user {
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}
	
	.stat-card {
		min-height: 100px;
		padding: 1rem;
	}
	
	.card-value {
		font-size: 1.5rem;
	}
	
	.card-label {
		font-size: 0.75rem;
	}
	
	.chart-card {
		min-height: 150px;
	}
	
	.chart-container {
		height: 80px;
	}
	
	.chart-bar {
		width: 15px;
	}
	
	.map-card {
		min-height: 120px;
	}
	
	.map-placeholder {
		height: 80px;
		font-size: 1.5rem;
	}
	
	.activity-card {
		min-height: 180px;
	}
	
	.activity-item {
		padding: 0.4rem 0;
	}
	
	.activity-text {
		font-size: 0.75rem;
	}
	
	.activity-time {
		font-size: 0.65rem;
	}
}

@media (max-width: 480px) {
	.responsive-dashboard {
		margin: 0 0.5rem;
		min-height: 350px;
	}
	
	.dashboard-grid {
		padding: 0.75rem;
		gap: 0.5rem;
	}
	
	.dashboard-header {
		padding: 0.75rem;
	}
	
	.dashboard-title {
		font-size: 1rem;
	}
	
	.dashboard-user {
		width: 30px;
		height: 30px;
		font-size: 0.8rem;
	}
	
	.dashboard-card {
		padding: 0.75rem;
	}
	
	.stat-card {
		min-height: 80px;
		padding: 0.75rem;
	}
	
	.card-value {
		font-size: 1.2rem;
	}
	
	.card-label {
		font-size: 0.7rem;
	}
	
	.chart-card {
		min-height: 120px;
	}
	
	.chart-container {
		height: 60px;
	}
	
	.chart-bar {
		width: 12px;
	}
	
	.map-card {
		min-height: 100px;
	}
	
	.map-placeholder {
		height: 60px;
		font-size: 1.2rem;
	}
	
	.activity-card {
		min-height: 150px;
	}
	
	.progress-label {
		font-size: 0.7rem;
	}
	
	.activity-text {
		font-size: 0.7rem;
	}
	
	.activity-time {
		font-size: 0.6rem;
	}
}

/* ===== NEW MOBILE-FIRST TV SHOWCASE ===== */

/* Content Slides Container */
.content-slides {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Individual Slide */
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 0.5rem;
}

.slide.active {
	opacity: 1;
	transform: translateX(0);
}

.slide.prev {
	transform: translateX(-100%);
}

/* Slide Content */
.slide-content {
	width: 100%;
	max-width: 100%;
	text-align: center;
	padding: 0.5rem;
}

/* Slide Badge */
.slide-badge {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: white;
	padding: 0.3rem 0.6rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.6rem;
	margin-bottom: 0.4rem;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* Slide Title */
.slide-title {
	font-size: 0.8rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.3rem;
	line-height: 1.2;
}

/* Slide Subtitle */
.slide-subtitle {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--dutch-gold);
	margin-bottom: 0.3rem;
	line-height: 1.2;
}

/* Slide Detail */
.slide-detail {
	font-size: 0.65rem;
	color: #ccc;
	line-height: 1.2;
	font-weight: 400;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet and up (768px+) */
@media (min-width: 768px) {
	.slide {
		padding-top: 1rem;
	}
	
	.slide-content {
		padding: 1rem;
		max-width: 300px;
	}
	
	.slide-badge {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
		margin-bottom: 0.75rem;
		border-radius: 15px;
	}
	
	.slide-title {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.slide-subtitle {
		font-size: 0.9rem;
		margin-bottom: 0.5rem;
	}
	
	.slide-detail {
		font-size: 0.8rem;
	}
}

/* Desktop and up (1024px+) */
@media (min-width: 1024px) {
	.slide {
		padding-top: 1.5rem;
	}
	
	.slide-content {
		padding: 1.5rem;
		max-width: 350px;
	}
	
	.slide-badge {
		padding: 0.6rem 1.2rem;
		font-size: 0.9rem;
		margin-bottom: 1rem;
		border-radius: 20px;
	}
	
	.slide-title {
		font-size: 1.2rem;
		margin-bottom: 0.75rem;
	}
	
	.slide-subtitle {
		font-size: 1rem;
		margin-bottom: 0.75rem;
	}
	
	.slide-detail {
		font-size: 0.9rem;
	}
}

/* Content-specific styling */
.content-slide[data-content="live-events"] .sports-banner {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.content-slide[data-content="glory-boxing"] .sports-banner {
	background: linear-gradient(45deg, #8b0000, #dc143c);
}

.content-slide[data-content="glory-boxing"] .match-info {
	border-color: #dc143c;
}

.content-slide[data-content="formula1"] .sports-banner {
	background: linear-gradient(45deg, #dc143c, #ff4500);
}

.content-slide[data-content="formula1"] .match-info {
	border-color: #dc143c;
}

.content-slide[data-content="premium-channels"] .sports-banner {
	background: linear-gradient(45deg, #4169e1, #1e90ff);
}

.content-slide[data-content="premium-channels"] .match-info {
	border-color: #4169e1;
}

.content-slide[data-content="live-sports"] .sports-banner {
	background: linear-gradient(45deg, #32cd32, #00ff00);
}

.content-slide[data-content="live-sports"] .match-info {
	border-color: #32cd32;
}

.match-info {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	padding: 1rem;
	border-radius: 10px;
	border: 2px solid #ffd900;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.teams {
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	margin-bottom: 0.5rem;
}

.score {
	font-size: 2rem;
	font-weight: 800;
	color: #ffd900;
	margin-bottom: 0.5rem;
}

.time {
	font-size: 0.9rem;
	color: #ccc;
}

/* Movies Content */
.featured-movie {
	text-align: center;
	width: 100%;
	padding: 1.5rem 1rem;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	margin: 0.5rem;
}

.popular-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--dutch-gold);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.movie-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.movie-details {
	font-size: 0.85rem;
	color: #ccc;
	line-height: 1.3;
	font-weight: 400;
}

/* Series Content */
.featured-series {
	text-align: center;
	width: 100%;
}

.series-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
}

.series-details {
	font-size: 0.9rem;
	color: #ccc;
}


/* Enhanced Animations for GIF-like effect */
@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

@keyframes slideIn {
	from { transform: translateX(100%); opacity: 0; }
	to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
	from { transform: translateX(0); opacity: 1; }
	to { transform: translateX(-100%); opacity: 0; }
}

@keyframes glow {
	0%, 100% { 
		box-shadow: 0 0 20px rgba(255, 217, 0, 0.3);
		text-shadow: 0 0 10px rgba(255, 217, 0, 0.5);
	}
	50% { 
		box-shadow: 0 0 30px rgba(255, 217, 0, 0.6);
		text-shadow: 0 0 15px rgba(255, 217, 0, 0.8);
	}
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

@keyframes shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

@keyframes fadeInOut {
	0%, 100% { opacity: 0.8; }
	50% { opacity: 1; }
}

/* Apply enhanced animations */
.sports-banner {
	animation: pulse 2s infinite, glow 3s infinite;
}

.teams, .movie-title, .series-title {
	animation: fadeInOut 4s infinite;
}

.score {
	animation: float 2s infinite ease-in-out;
}

.match-info {
	animation: glow 4s infinite;
}

/* Shimmer effect for banners */
.content-slide[data-content="live-events"] .sports-banner {
	background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
	background-size: 200% 200%;
	animation: pulse 2s infinite, shimmer 3s infinite;
}

.content-slide[data-content="glory-boxing"] .sports-banner {
	background: linear-gradient(45deg, #8b0000, #dc143c, #8b0000);
	background-size: 200% 200%;
	animation: pulse 2s infinite, shimmer 3s infinite;
}

.content-slide[data-content="formula1"] .sports-banner {
	background: linear-gradient(45deg, #dc143c, #ff4500, #dc143c);
	background-size: 200% 200%;
	animation: pulse 2s infinite, shimmer 3s infinite;
}

.content-slide[data-content="premium-channels"] .sports-banner {
	background: linear-gradient(45deg, #4169e1, #1e90ff, #4169e1);
	background-size: 200% 200%;
	animation: pulse 2s infinite, shimmer 3s infinite;
}

.content-slide[data-content="live-sports"] .sports-banner {
	background: linear-gradient(45deg, #32cd32, #00ff00, #32cd32);
	background-size: 200% 200%;
	animation: pulse 2s infinite, shimmer 3s infinite;
}

/* ===== SECTION SPACING ===== */
.key-features-section,
.multi-device-section,
.pricing-section,
.reviews-section,
.trust-section,
.how-it-works-section,
.compatibility-section,
.final-cta-section {
	padding: 6rem 0;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	padding-top: 25px;
}

.hero-text .highlight {
	background: linear-gradient(135deg, var(--dutch-gold) 0%, var(--dutch-gold-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.3rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.hero-trust {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-secondary);
	font-size: 1rem;
}

.flag {
	font-size: 1.5rem;
}

/* ===== IPTV SHOWCASE ===== */
.iptv-showcase {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.tv-screen {
	position: relative;
	width: 450px;
	height: 280px;
	background: #000;
	border-radius: var(--border-radius);
	padding: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
	transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.tv-frame {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.screen-content {
	width: 100%;
	height: 100%;
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.interface-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.logo {
	color: var(--dutch-gold);
	font-weight: 700;
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
}

.nav-tabs {
	display: flex;
	gap: 20px;
	align-items: center;
}

.tab {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 500;
	transition: color var(--transition-fast);
}

.tab.active {
	color: var(--dutch-gold);
}

.search-icon {
	color: var(--text-muted);
	font-size: 16px;
}

.featured-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
}

.popular-label {
	color: var(--dutch-gold);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.movie-title {
	color: var(--text-primary);
	font-size: 28px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 8px;
}

.movie-details {
	color: var(--text-secondary);
	font-size: 14px;
}

.movie-thumbnails {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.thumbnail {
	width: 45px;
	height: 65px;
	background: linear-gradient(135deg, #333 0%, #555 100%);
	border-radius: 6px;
	border: 1px solid #444;
}

.media-console {
	width: 350px;
	height: 25px;
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
	border-radius: 12px;
	position: relative;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.remote-control {
	position: absolute;
	top: -35px;
	right: 25px;
	width: 70px;
	height: 90px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	transform: rotate(-15deg);
}

.remote-control::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 25px;
	height: 25px;
	background: #333;
	border-radius: 50%;
}

.remote-control::after {
	content: '';
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 35px;
	height: 10px;
	background: #333;
	border-radius: 5px;
}

.showcase-badge {
	background: var(--dutch-gold);
	color: var(--bg-primary);
	padding: 0.75rem 1.5rem;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	box-shadow: var(--shadow-glow);
}

/* ===== KEY FEATURES SECTION ===== */
.key-features-section {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	padding: 4rem 0;
}

.features-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	gap: 2rem;
	align-items: stretch;
	justify-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-card {
	width: 100%;
	text-align: center;
	padding: 2.5rem 2rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	backdrop-filter: blur(20px) saturate(150%);
	transition: all var(--transition-normal);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 180px;
	position: relative;
}

.feature-icon {
	width: 48px;
	height: 48px;
	color: var(--dutch-gold);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-normal);
}

.feature-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}

.feature-title {
	color: var(--text-primary);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.3;
	margin: 0;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: var(--dutch-gold);
	box-shadow: var(--shadow-lg);
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
	color: var(--dutch-gold);
	filter: drop-shadow(0 0 8px rgba(255, 217, 0, 0.3));
}

/* ===== MULTI-DEVICE SECTION ===== */
.multi-device-section {
	padding: var(--section-padding);
}

.multi-device-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.multi-device-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.multi-device-icon {
	width: 32px;
	height: 32px;
	color: var(--dutch-gold);
	flex-shrink: 0;
}

.multi-device-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0;
}

.multi-device-description {
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.7;
	font-size: 1.2rem;
}

/* ===== UNIFIED BACKGROUND FOR ALL SECTIONS ===== */
.installation-hero-section,
.quick-start-section,
.device-selection-section,
.installation-instructions-section,
.installation-cta-section,
.faq-section {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}


/* ===== INSTALLATION PAGE STYLES ===== */
.installation-hero-section {
    padding: 4rem 0 3rem;
    text-align: center;
}

.installation-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.installation-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.installation-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

/* Quick Start Section */
.quick-start-section {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--dutch-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #f59e0b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Device Selection Section */
.device-selection-section {
    padding: 2rem 0 4rem 0;
}

.device-selection-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.device-category {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.device-category:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.device-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.device-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.device-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s ease;
}

.device-option:hover::before {
    left: 100%;
}

.device-option:hover {
    background: rgba(255, 193, 7, 0.05);
    border-color: var(--dutch-gold);
    transform: translateX(5px);
}

.device-option.active {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--dutch-gold);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.device-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.device-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.device-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all var(--transition-normal);
}

.device-option:hover .device-logo {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--dutch-gold);
    transform: scale(1.05);
}

.device-option.active .device-logo {
    background: rgba(255, 193, 7, 0.15);
    border-color: var(--dutch-gold);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.device-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.device-details span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.device-arrow {
    font-size: 1.2rem;
    color: var(--dutch-gold);
    font-weight: bold;
    transition: all var(--transition-normal);
    opacity: 0.7;
}

.device-option:hover .device-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Installation Instructions */
.installation-instructions-section {
    padding: 4rem 0;
}

.device-instructions {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.instruction-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #f59e0b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.step-content strong {
    color: var(--dutch-gold);
    font-weight: 600;
}

/* CTA Section */
.installation-cta-section {
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--dutch-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.support-section {
    padding: 4rem 0;
}

.support-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    max-width: 600px;
    margin: 0 auto;
}

.support-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for Installation Page */
@media (max-width: 768px) {
    .installation-hero-content h1 {
        font-size: 2rem;
    }
    
    .installation-hero-description {
        font-size: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-card .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .device-category {
        padding: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .device-option {
        padding: 0.875rem 1rem;
    }
    
    .device-logo {
        width: 55px;
        height: 55px;
    }
    
    .device-details h4 {
        font-size: 1rem;
    }
    
    .device-details span {
        font-size: 0.85rem;
    }
    
    .device-arrow {
        font-size: 1.1rem;
    }
    
    .device-instructions {
        padding: 2rem 1.5rem;
    }
    
    .instruction-content h2 {
        font-size: 1.8rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .installation-hero-section {
        padding: 3rem 0 2rem;
    }
    
    .installation-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 1.25rem;
    }
    
    .step-card .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .device-category {
        padding: 1.25rem;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
    
    .device-option {
        padding: 0.75rem 0.875rem;
    }
    
    .device-logo {
        width: 50px;
        height: 50px;
    }
    
    .device-details h4 {
        font-size: 0.95rem;
    }
    
    .device-details span {
        font-size: 0.8rem;
    }
    
    .device-instructions {
        padding: 1.5rem 1rem;
    }
    
    .instruction-content h2 {
        font-size: 1.6rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
}

/* ===== BLOG ARTICLES SECTION ===== */
.blog-articles-section {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    padding: 4rem 0;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-article-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px) saturate(150%);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-article-card:hover {
    transform: translateY(-5px);
    border-color: var(--dutch-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem;
}

.article-image svg {
    width: 64px;
    height: 64px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    color: var(--dutch-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.read-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.read-more {
    color: var(--dutch-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.read-more:hover {
    color: #f59e0b;
}

.blog-cta {
    text-align: center;
}

/* ===== DEVICE COMPATIBILITY SECTION ===== */
.device-compatibility-section {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    padding: 0;
}

.device-compatibility-footer {
    text-align: center;
    margin-top: 2rem;
}

.device-compatibility-footer .target-audience {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.device-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
}

.device-cta-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 217, 0, 0.4);
}

/* ===== DEVICE SLIDER ===== */
.device-slider-container {
    position: relative;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.device-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.device-slide {
    flex: 0 0 25%; /* 4 devices per view on desktop */
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.device-slide .device-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.device-slide .device-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--dutch-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 0, 0.2);
}

.device-slide .device-icon-clean {
    width: 48px;
    height: 48px;
    color: var(--dutch-gold);
    transition: all 0.3s ease;
}

.device-slide .device-item:hover .device-icon-clean {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 217, 0, 0.5));
}

.device-slide .device-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.device-slide .device-item:hover span {
    color: var(--dutch-gold);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--dutch-gold);
    border-color: var(--dutch-gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--dutch-gold);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Tablet responsive for device slider */
@media (max-width: 1024px) and (min-width: 769px) {
    .device-slide {
        flex: 0 0 33.333%; /* 3 devices per view on tablet */
        padding: 0 0.6rem;
    }
    
    .device-slide .device-item {
        padding: 1.25rem 0.75rem;
    }
    
    .device-slide .device-icon-clean {
        width: 44px;
        height: 44px;
    }
}

/* Large desktop for device slider */
@media (min-width: 1200px) {
    .device-slide {
        flex: 0 0 25%; /* 4 devices per view on large desktop */
        padding: 0 0.75rem;
    }
    
    .device-slide .device-item {
        padding: 1.5rem 1rem;
    }
    
    .device-slide .device-icon-clean {
        width: 48px;
        height: 48px;
    }
}

/* Mobile-first responsive for device compatibility */
@media (max-width: 768px) {
	.device-compatibility-section {
		padding: 0;
	}
	
	.device-compatibility-footer {
		margin-top: 1.5rem;
	}
	
	.device-compatibility-footer .target-audience {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}
	
	.device-cta-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.multi-device-content {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.multi-device-header {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.multi-device-icon {
		width: 28px;
		height: 28px;
	}
	
	.multi-device-header h2 {
		font-size: 1.5rem;
		line-height: 1.3;
		margin: 0;
	}
	
	.multi-device-description {
		font-size: 0.9rem;
		line-height: 1.4;
		margin-bottom: 2rem;
		color: var(--text-secondary);
	}
	
	.device-slide {
		flex: 0 0 50%; /* 2 devices per view on mobile */
		padding: 0 0.5rem;
	}
	
	.device-slide .device-item {
		padding: 1.5rem 0.5rem;
		gap: 0.75rem;
	}
	
	.device-slide .device-icon-clean {
		width: 40px;
		height: 40px;
	}
	
	.device-slide .device-item span {
		font-size: 0.8rem;
	}
	
	.slider-controls {
		margin-top: 1rem;
		gap: 0.75rem;
	}
	
	.slider-btn {
		width: 35px;
		height: 35px;
	}
	
	.slider-dot {
		width: 6px;
		height: 6px;
	}
	
	.device-item {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 1.5rem 1rem;
		background: var(--glass-bg);
		border-radius: var(--border-radius-sm);
		border: 1px solid var(--glass-border);
		transition: all var(--transition-normal);
		text-align: left;
	}
	
	.device-icon-clean {
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--dutch-gold);
		flex-shrink: 0;
	}
	
	.device-icon-clean svg {
		width: 40px;
		height: 40px;
	}
	
	.device-item span {
		font-size: 0.9rem;
		font-weight: 600;
		color: var(--text-primary);
	}
	
	.target-audience {
		font-size: 0.8rem;
		color: var(--text-muted);
		font-style: italic;
		margin-bottom: 1.5rem;
	}
	
	.multi-device-cta {
		display: inline-block;
		padding: 0.8rem 1.5rem;
		background: var(--dutch-gold);
		color: var(--bg-primary);
		text-decoration: none;
		border-radius: var(--border-radius);
		font-weight: 600;
		font-size: 0.9rem;
		transition: var(--transition-normal);
		text-align: center;
		width: 100%;
		max-width: 300px;
	}
	
	.multi-device-cta:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(255, 217, 0, 0.3);
	}
}

@media (max-width: 480px) {
	.multi-device-section {
		padding: 1.5rem 0;
	}
	
	.multi-device-content {
		gap: 1.5rem;
	}
	
	.multi-device-header {
		gap: 0.8rem;
		margin-bottom: 1rem;
	}
	
	.multi-device-icon {
		width: 24px;
		height: 24px;
	}
	
	.multi-device-header h2 {
		font-size: 1.3rem;
	}
	
	.multi-device-description {
		font-size: 0.8rem;
		margin-bottom: 1.5rem;
	}
	
	.device-slide {
		flex: 0 0 50%; /* 2 devices per view on small mobile */
		padding: 0 0.25rem;
	}
	
	.device-slide .device-item {
		padding: 1.25rem 0.25rem;
		gap: 0.5rem;
	}
	
	.device-slide .device-icon-clean {
		width: 32px;
		height: 32px;
	}
	
	.device-slide .device-item span {
		font-size: 0.75rem;
	}
	
	.device-compatibility-footer .target-audience {
		font-size: 0.8rem;
	}
	
	.device-cta-btn {
		padding: 0.75rem 1.25rem;
		font-size: 0.85rem;
	}
	
	.slider-controls {
		margin-top: 0.75rem;
		gap: 0.5rem;
	}
	
	.slider-btn {
		width: 30px;
		height: 30px;
	}
	
	.slider-dot {
		width: 5px;
		height: 5px;
	}
	
	.device-item {
		padding: 1.2rem 0.8rem;
		gap: 0.8rem;
	}
	
	.device-icon-clean {
		width: 32px;
		height: 32px;
	}
	
	.device-icon-clean svg {
		width: 32px;
		height: 32px;
	}
	
	.device-item span {
		font-size: 0.8rem;
	}
	
	.target-audience {
		font-size: 0.7rem;
		margin-bottom: 1rem;
	}
	
	.multi-device-cta {
		padding: 0.7rem 1.2rem;
		font-size: 0.8rem;
		max-width: 280px;
	}
}

.device-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--glass-bg);
	border-radius: var(--border-radius-sm);
	border: 1px solid var(--glass-border);
	transition: all var(--transition-normal);
}

.device-item:hover {
	background: var(--glass-hover);
	border-color: var(--dutch-gold);
	transform: translateY(-2px);
}

.device-icon-clean {
	width: 56px;
	height: 56px;
	color: var(--dutch-gold);
	display: flex;
	align-items: center;
	justify-content: center;
}

.device-item span {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 1.1rem;
}

.target-audience {
	color: var(--text-secondary);
	font-style: italic;
	font-size: 1.1rem;
}

.multi-device-cta {
	color: var(--dutch-gold);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.2rem;
	transition: color var(--transition-fast);
}

.multi-device-cta:hover {
	color: var(--dutch-gold-light);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
	padding: var(--section-padding);
}

.pricing-section h2 {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-description {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.3rem;
	margin-bottom: 4rem;
	padding-bottom: 25px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Specific styling for "Kies je Abonnement" heading */
h2[style*="padding-top: 10px"] {
	padding-top: 15px !important;
}

.device-toggle {
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}

.toggle-container {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: var(--glass-bg);
	padding: 1.5rem 3rem;
	border-radius: 50px;
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(20px);
}

.toggle-label {
	color: var(--text-primary);
	font-weight: 600;
	font-size: 1.1rem;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 70px;
	height: 35px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	transition: var(--transition-normal);
	border-radius: 35px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 27px;
	width: 27px;
	left: 4px;
	bottom: 3px;
	background: var(--text-primary);
	transition: var(--transition-normal);
	border-radius: 50%;
}

input:checked + .toggle-slider {
	background: var(--dutch-gold);
	border-color: var(--dutch-gold);
}

input:checked + .toggle-slider:before {
	transform: translateX(35px);
}


.pricing-card {
	position: relative;
	padding: 3rem 2.5rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	backdrop-filter: blur(20px) saturate(150%);
	transition: all var(--transition-normal);
	text-align: center;
}

.pricing-card:hover {
	transform: translateY(-10px);
	border-color: var(--dutch-gold);
	box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
	border-color: var(--dutch-gold);
	box-shadow: var(--shadow-glow);
	transform: scale(1.05);
}

.popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--dutch-gold);
	color: var(--bg-primary);
	padding: 0.75rem 2rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.pricing-header h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.pricing-price {
	margin-bottom: 1.5rem;
}

.pricing-price .price {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--dutch-gold);
	display: block;
	line-height: 1;
}

.pricing-price .period {
	font-size: 1.2rem;
	color: var(--text-secondary);
}

.bonus-text {
	background: var(--glass-active);
	color: var(--dutch-gold);
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 1.5rem;
	display: inline-block;
}

.pricing-features {
	margin: 2.5rem 0;
}

.pricing-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-features li {
	padding: 0.75rem 0;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--glass-border);
	font-size: 1.1rem;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-cta {
	margin-top: 2.5rem;
}

/* ===== BENEFITS SLIDESHOW SECTION - REMOVED (REPLACED WITH MINIMAL VERSION) ===== */
.benefits-slideshow-section {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	padding: 2rem 0;
}

.benefits-slideshow-section h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.benefits-slideshow-section .section-description {
	text-align: center;
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}

.slideshow-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.slideshow-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius);
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(20px) saturate(150%);
	min-height: 300px;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.slide.active {
	opacity: 1;
}

.slide-content {
	text-align: center;
	max-width: 500px;
}

.slide-icon {
	color: var(--dutch-gold);
	margin: 0 auto 1.5rem auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.slide.active .slide-icon {
	transform: scale(1.1);
}

.slide h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.slide p {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.slideshow-dots {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 2rem;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: var(--dutch-gold);
	transform: scale(1.2);
}

.dot:hover {
	background: rgba(255, 217, 0, 0.7);
}

/* Responsive Slideshow */
@media (max-width: 768px) {
	.benefits-slideshow-section {
		padding: 1.5rem 0;
	}
	
	.benefits-slideshow-section h2 {
		font-size: 1.75rem;
	}
	
	.benefits-slideshow-section .section-description {
		font-size: 0.9rem;
		margin-bottom: 2rem;
	}
	
	.slideshow-wrapper {
		min-height: 250px;
	}
	
	.slide {
		padding: 1.5rem;
	}
	
	.slide h3 {
		font-size: 1.25rem;
	}
	
	.slide p {
		font-size: 0.9rem;
	}
	
	.slide-icon {
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.benefits-slideshow-section {
		padding: 1rem 0;
	}
	
	.benefits-slideshow-section h2 {
		font-size: 1.5rem;
	}
	
	.benefits-slideshow-section .section-description {
		font-size: 0.85rem;
		margin-bottom: 1.5rem;
	}
	
	.slideshow-wrapper {
		min-height: 200px;
	}
	
	.slide {
		padding: 1rem;
	}
	
	.slide h3 {
		font-size: 1.1rem;
		margin-bottom: 0.75rem;
	}
	
	.slide p {
		font-size: 0.85rem;
		line-height: 1.5;
	}
	
	.slide-icon {
		margin-bottom: 0.75rem;
	}
	
	.slideshow-dots {
		margin-top: 1.5rem;
		gap: 0.5rem;
	}
	
	.dot {
		width: 10px;
		height: 10px;
	}
}

/* ===== BENEFITS MINIMAL SECTION ===== */
.benefits-minimal-section {
	padding: 3rem 0;
	background: var(--bg-primary);
}

.benefits-header {
	text-align: center;
	margin-bottom: 3rem;
}

.benefits-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.benefits-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.benefit-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.benefit-card:hover {
	transform: translateY(-5px);
	border-color: var(--dutch-gold);
	box-shadow: 0 10px 30px rgba(255, 217, 0, 0.1);
}

.benefit-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.benefit-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.benefit-card p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
}

/* Mobile Responsive for Benefits Minimal */
@media (max-width: 768px) {
	.benefits-minimal-section {
		padding: 2rem 0;
	}
	
	.benefits-header h2 {
		font-size: 2rem;
	}
	
	.benefits-header p {
		font-size: 1rem;
	}
	
	.benefits-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.25rem;
	}
	
	.benefit-card {
		padding: 1.5rem;
	}
	
	.benefit-icon {
		font-size: 2.5rem;
		margin-bottom: 0.75rem;
	}
	
	.benefit-card h3 {
		font-size: 1.1rem;
	}
	
	.benefit-card p {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.benefits-minimal-section {
		padding: 1.5rem 0;
	}
	
	.benefits-header {
		margin-bottom: 2rem;
	}
	
	.benefits-header h2 {
		font-size: 1.75rem;
	}
	
	.benefits-header p {
		font-size: 0.95rem;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.benefit-card {
		padding: 1.25rem;
	}
	
	.benefit-icon {
		font-size: 2rem;
		margin-bottom: 0.5rem;
	}
	
	.benefit-card h3 {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.benefit-card p {
		font-size: 0.85rem;
	}
}

/* ===== MINIMAL FAQ SECTION ===== */
.minimal-faq-section {
	padding: 3rem 0;
	background: var(--bg-primary);
}

.faq-header {
	text-align: center;
	margin-bottom: 3rem;
}

.faq-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.faq-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.minimal-faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.minimal-faq-item {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.minimal-faq-item:hover {
	border-color: var(--dutch-gold);
	box-shadow: 0 4px 20px rgba(255, 217, 0, 0.1);
}

.minimal-faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	background: transparent;
}

.minimal-faq-question:hover {
	background: rgba(255, 217, 0, 0.05);
}

.minimal-faq-question h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
	flex: 1;
	padding-right: 1rem;
	line-height: 1.4;
}

.minimal-faq-toggle {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--dutch-gold);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.minimal-faq-item.active .minimal-faq-toggle {
	background: var(--dutch-gold);
	color: var(--bg-primary);
	transform: rotate(45deg);
}

.minimal-faq-answer {
	display: none;
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.minimal-faq-item.active .minimal-faq-answer {
	display: block;
}

.minimal-faq-answer p {
	padding: 1.5rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
	font-size: 1rem;
}

/* Mobile Responsive for Minimal FAQ */
@media (max-width: 768px) {
	.minimal-faq-section {
		padding: 2rem 0;
	}
	
	.faq-header h2 {
		font-size: 2rem;
	}
	
	.faq-header p {
		font-size: 1rem;
	}
	
	.minimal-faq-question {
		padding: 1.25rem;
	}
	
	.minimal-faq-question h4 {
		font-size: 1rem;
		padding-right: 0.75rem;
	}
	
	.minimal-faq-toggle {
		width: 28px;
		height: 28px;
		font-size: 1.1rem;
	}
	
	.minimal-faq-answer p {
		padding: 1.25rem;
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.minimal-faq-section {
		padding: 1.5rem 0;
	}
	
	.faq-header {
		margin-bottom: 2rem;
	}
	
	.faq-header h2 {
		font-size: 1.75rem;
	}
	
	.faq-header p {
		font-size: 0.95rem;
	}
	
	.minimal-faq-question {
		padding: 1rem;
	}
	
	.minimal-faq-question h4 {
		font-size: 0.95rem;
		padding-right: 0.5rem;
		line-height: 1.3;
	}
	
	.minimal-faq-toggle {
		width: 24px;
		height: 24px;
		font-size: 1rem;
	}
	
	.minimal-faq-answer p {
		padding: 1rem;
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
	padding: var(--section-padding);
}

.reviews-section h2 {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.review-card {
	padding: 2.5rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	transition: all var(--transition-normal);
}

.review-card:hover {
	transform: translateY(-5px);
	border-color: var(--dutch-gold);
	box-shadow: var(--shadow-lg);
}

.stars {
	color: var(--dutch-gold);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.review-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-style: italic;
	font-size: 1.1rem;
}

.reviewer {
	color: var(--text-primary);
	font-weight: 700;
	font-size: 1.1rem;
}

.reviews-cta {
	text-align: center;
	margin-top: 3rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	padding: 4rem 0;
}

.trust-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.trust-feature {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-sm);
	transition: all var(--transition-normal);
}

.trust-feature:hover {
	background: var(--glass-hover);
	border-color: var(--dutch-gold);
	transform: translateY(-3px);
}

.trust-feature-icon {
	width: 32px;
	height: 32px;
	color: var(--dutch-gold);
	flex-shrink: 0;
}

.trust-feature-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.trust-feature-content p {
	color: var(--text-secondary);
	font-size: 1rem;
	margin: 0;
}

.installation-guide {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-sm);
	backdrop-filter: blur(20px);
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.installation-guide:hover {
	background: var(--glass-hover);
	border-color: var(--dutch-gold);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 217, 0, 0.2);
}

.guide-icon {
	width: 24px;
	height: 24px;
	color: var(--dutch-gold);
	flex-shrink: 0;
}

.installation-guide p {
	color: var(--text-secondary);
	margin: 0;
	font-size: 1.1rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	padding: 4rem 0;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.step-card {
	text-align: center;
	padding: 3rem 2.5rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	backdrop-filter: blur(20px) saturate(150%);
	transition: all var(--transition-normal);
}

.step-card:hover {
	transform: translateY(-8px);
	border-color: var(--dutch-gold);
	box-shadow: var(--shadow-lg);
}

.step-number {
	width: 80px;
	height: 80px;
	background: var(--dutch-gold);
	color: var(--bg-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	margin: 0 auto 2rem auto;
}

.step-icon {
	width: 40px;
	height: 40px;
	color: var(--dutch-gold);
	margin: 1.5rem auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-card h3 {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.step-card p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1.1rem;
}

/* Mobile responsive for how-it-works */
@media (max-width: 768px) {
	.how-it-works-section {
		padding: 2rem 0;
	}
	
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.step-card {
		padding: 2rem 1.5rem;
	}
	
	.step-number {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.step-icon {
		width: 32px;
		height: 32px;
		margin: 1rem auto;
	}
	
	.step-card h3 {
		font-size: 1.4rem;
		margin-bottom: 1rem;
	}
	
	.step-card p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.step-card {
		padding: 1.5rem 1rem;
	}
	
	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	
	.step-icon {
		width: 28px;
		height: 28px;
		margin: 0.75rem auto;
	}
	
	.step-card h3 {
		font-size: 1.2rem;
	}
	
	.step-card p {
		font-size: 0.9rem;
	}
}

/* ===== COMPATIBILITY ===== */
.compatibility-section {
	padding: var(--section-padding);
}

.compatibility-section h2 {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.compatibility-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.compatibility-item {
	text-align: center;
	padding: 2.5rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	backdrop-filter: blur(20px) saturate(150%);
	transition: all var(--transition-normal);
}

.compatibility-item:hover {
	transform: translateY(-8px);
	border-color: var(--dutch-gold);
	box-shadow: var(--shadow-lg);
}

.compatibility-icon {
	width: 56px;
	height: 56px;
	color: var(--dutch-gold);
	margin-bottom: 1.5rem;
}

.compatibility-item h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.compatibility-item p {
	color: var(--text-secondary);
	font-size: 1rem;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
	padding: var(--section-padding);
	text-align: center;
}

.final-cta-section h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 3rem;
}

/* ===== ENHANCED PROMOTIONAL BANNER ===== */
.enhanced-promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -20px 60px rgba(255, 217, 0, 0.3);
    animation: slideUpBanner 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

@keyframes slideUpBanner {
    from { 
        transform: translateY(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    gap: 2rem;
    position: relative;
}

.promo-banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.promo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.promo-icon {
    font-size: 1.2rem;
    animation: lightningPulse 2s infinite;
}

@keyframes lightningPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1) rotate(5deg); 
        filter: brightness(1.3);
    }
}

.promo-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.promo-message h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.promo-message p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    font-weight: 500;
}

.promo-banner-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-cta-btn {
    background: rgba(0, 0, 0, 0.9);
    color: var(--dutch-gold);
    border: 2px solid rgba(0, 0, 0, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.promo-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.promo-cta-btn:hover::before {
    left: 100%;
}

.promo-cta-btn:hover {
    background: rgba(0, 0, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.promo-cta-btn:hover .cta-arrow {
    transform: translateX(3px);
}

.promo-close-btn {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    /* Mobile touch optimization */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    /* Ensure button is clickable on mobile */
    position: relative;
    z-index: 1000;
    /* Make button more visible on mobile */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.promo-close-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* CSS-only banner close functionality */
.enhanced-promo-banner {
    transition: all 0.3s ease;
}

/* Hide banner when body has 'banner-closed' class */
body.banner-closed .enhanced-promo-banner {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Hide banner when close button is clicked (using :target) */
.enhanced-promo-banner:target {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Ensure banner doesn't interfere with page content when hidden */
.enhanced-promo-banner[style*="display: none"] {
    display: none !important;
}

.promo-banner-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    width: 100%;
    animation: progressAnimation 10s linear infinite;
}

@keyframes progressAnimation {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile responsive for enhanced banner */
@media (max-width: 768px) {
    .enhanced-promo-banner {
        padding: 0 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .promo-banner-content {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1rem 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .promo-banner-left {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .promo-badge {
        align-self: center !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
    }
    
    .promo-text {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }
    
    .promo-message {
        width: 100%;
    }
    
    .promo-message h3 {
        font-size: 1.2rem !important;
        font-weight: 800 !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
    }
    
    .promo-message p {
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        opacity: 0.9 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
    
    .promo-banner-right {
        width: 100% !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .promo-cta-btn {
        flex: 1 !important;
        justify-content: center !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .promo-close-btn {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
        padding: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .promo-banner-content {
        padding: 0.75rem 0.75rem !important;
        gap: 0.75rem !important;
    }
    
    .promo-banner-left {
        gap: 0.5rem !important;
    }
    
    .promo-badge {
        padding: 0.4rem 0.8rem !important;
        border-radius: 15px !important;
    }
    
    .promo-text {
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.3px !important;
    }
    
    .promo-message h3 {
        font-size: 1rem !important;
        font-weight: 800 !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.2 !important;
    }
    
    .promo-message p {
        font-size: 0.75rem !important;
        font-weight: 500 !important;
        opacity: 0.9 !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    
    .promo-banner-right {
        gap: 0.5rem !important;
    }
    
    .promo-cta-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        min-height: 35px !important;
    }
    
    .promo-close-btn {
        width: 45px !important;
        height: 45px !important;
        padding: 0.5rem !important;
        /* Enhanced mobile touch area */
        min-width: 45px !important;
        min-height: 45px !important;
        /* Better visibility on mobile */
        background: rgba(0, 0, 0, 0.4) !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    }
}

/* Removed excessive body padding-bottom */

/* ===== SUPPORT STYLES ===== */

/* Support Options Section */
.support-options-section {
	padding: 3rem 0;
	width: 100%;
}

.support-options-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.support-option {
	text-align: center;
	padding: 3rem 2rem;
	transition: all var(--transition-normal);
}

.support-option:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.support-icon {
	margin-bottom: 1.5rem;
	color: var(--dutch-gold);
}

.support-icon svg {
	width: 64px;
	height: 64px;
}

.support-option h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.support-option p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
	padding: 3rem 0;
	width: 100%;
}

.contact-form-card {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem;
}

.contact-form-card h2 {
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.contact-form-card p {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.75rem 1rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-size: 1rem;
	transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--dutch-gold);
	box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Support Hours Section */
.support-hours-section {
	padding: 3rem 0;
	width: 100%;
}

.support-hours-card {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 3rem;
}

.support-hours-card h2 {
	margin-bottom: 2rem;
	color: var(--text-primary);
}

.hours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.hours-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.hours-item p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Quick Links Section */
.quick-links-section {
	padding: 3rem 0;
	width: 100%;
}

.quick-links-section h2 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-primary);
}

.quick-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.quick-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 2rem 1rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	text-decoration: none;
	color: var(--text-primary);
	transition: all var(--transition-normal);
}

.quick-link:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--dutch-gold);
	color: var(--dutch-gold);
}

.quick-link-icon {
	color: var(--dutch-gold);
}

.quick-link span {
	font-weight: 600;
	text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
	border-top: 1px solid var(--glass-border);
	margin-top: 2rem;
	width: 100%;
}

.footer-main {
	padding: 3rem 0;
	width: 100%;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	align-items: start;
}

.footer-widget {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.footer-widget h3 {
	color: var(--dutch-gold);
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
	margin-top: 0;
}

.footer-widget p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
}

.footer-widget ul li {
	margin-bottom: 0.75rem;
}

.footer-widget ul li a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color var(--transition-fast);
	font-size: 1.1rem;
	display: block;
}

.footer-widget ul li a:hover {
	color: var(--dutch-gold);
}

.footer-bottom {
	border-top: 1px solid var(--glass-border);
	padding: 1.5rem 0;
	width: 100%;
}

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

.footer-copyright p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 1rem;
}

/* New Footer Elements */
.footer-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: auto;
}

.feature-tag {
	background: rgba(255, 217, 0, 0.1);
	color: var(--dutch-gold);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 600;
	border: 1px solid rgba(255, 217, 0, 0.2);
}

.footer-social {
	margin-top: auto;
}

.social-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-right: 0.5rem;
}

.social-link {
	color: var(--dutch-gold);
	text-decoration: none;
	margin-right: 1rem;
	font-size: 0.9rem;
	transition: color var(--transition-fast);
}

.social-link:hover {
	color: var(--text-primary);
}

.dmca-badge {
	margin-top: auto;
}

.dmca-badge img {
	height: 20px;
	width: auto;
}

/* Footer Bottom Structure */
.footer-legal-row {
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--glass-border);
}

.footer-legal-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.footer-legal-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
	color: var(--dutch-gold);
}

.separator {
	color: var(--text-muted);
	font-size: 0.8rem;
}

.footer-copyright-row {
	text-align: center;
	margin-top: 1rem;
}

.footer-copyright-row p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* ===== PILL NAVIGATION HEADER ===== */
.site-header {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.2rem 0;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transform: translateY(0);
	opacity: 1;
}

/* Header scroll states */
.site-header.header-hidden {
	transform: translateY(-100%);
	opacity: 0;
}

.site-header.header-visible {
	transform: translateY(0);
	opacity: 1;
}

/* Add padding to body to account for fixed header */
body {
	padding-top: 55px; /* Match actual header height: 0.2rem + pill-navigation + logo */
}

.site-header .container {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Pill Navigation Container */
.pill-navigation {
	display: flex;
	align-items: center;
	background: transparent;
	border-radius: 50px;
	padding: 0.5rem 1rem;
	gap: 2rem;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: 1px solid var(--dutch-gold);
}

/* Logo Styling */
.nav-logo {
	display: flex;
	align-items: center;
}

.logo-link {
	text-decoration: none;
	transition: transform 0.2s ease;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-wordmark {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0.4rem 0.8rem;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 25px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

/* Netherlands Flag Stripes */
.flag-stripe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	transition: opacity 0.3s ease;
}

.flag-stripe.red {
	background: linear-gradient(90deg, #ae1c28 0%, transparent 100%);
	z-index: 1;
}

.flag-stripe.white {
	background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
	z-index: 2;
}

.flag-stripe.blue {
	background: linear-gradient(90deg, transparent 0%, #21468b 100%);
	z-index: 3;
}

.logo-text {
	font-size: 1.2rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	letter-spacing: 2px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	z-index: 10;
	position: relative;
	margin-right: 0.5rem;
}

.logo-accent {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--dutch-gold);
	line-height: 1;
	letter-spacing: 1px;
	text-transform: uppercase;
	z-index: 10;
	position: relative;
	opacity: 0.9;
}

.logo-wordmark:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.12);
}

.logo-wordmark:hover .flag-stripe {
	opacity: 0.2;
}

.logo-wordmark:hover .logo-accent {
	color: #ffffff;
	opacity: 1;
}

/* Navigation Links */
.nav-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav-link {
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
	font-size: 0.9rem;
	padding: 0.5rem 0;
	transition: all 0.2s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--dutch-gold);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--dutch-gold);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

/* CTA Button */
.nav-cta {
	display: flex;
	align-items: center;
}

.cta-button {
	display: block;
	padding: 0.6rem 1.5rem;
	background: var(--dutch-gold);
	color: var(--bg-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 25px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(255, 217, 0, 0.3);
}

.cta-button:hover {
	background: var(--dutch-gold-light);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(255, 217, 0, 0.4);
}

.cta-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(255, 217, 0, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 3px;
	width: 20px;
	height: 16px;
}

.hamburger-line {
	width: 100%;
	height: 2px;
	background: #ffffff;
	border-radius: 1px;
	transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.pill-navigation {
		gap: 1.5rem;
		padding: 0.4rem 0.8rem;
	}
	
	.nav-links {
		gap: 1rem;
	}
	
	.nav-link {
		font-size: 0.85rem;
	}
	
	.cta-button {
		padding: 0.5rem 1.2rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 50px; /* Match tablet header height */
	}
	
	.pill-navigation {
		position: relative;
		width: 100%;
		max-width: 500px;
	}
	
	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(15, 15, 35, 0.95);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-radius: 12px;
		padding: 0.5rem 0;
		margin-top: 0.5rem;
		flex-direction: column;
		gap: 0;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
		border: 1px solid rgba(255, 255, 255, 0.2);
	}
	
	.nav-links.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	
	.nav-link {
		padding: 1rem 1.5rem;
		background: none;
		text-align: left;
		font-weight: 400;
		font-size: 0.95rem;
		color: #ffffff;
		transition: color 0.2s ease;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		position: relative;
	}
	
	.nav-link:last-child {
		border-bottom: none;
	}
	
	.nav-link:hover {
		color: #ffffff;
		background: none;
		transform: none;
		box-shadow: none;
	}
	
	.nav-cta {
		display: none;
	}
	
	.menu-toggle {
		display: block;
		margin-left: auto;
	}
	
	.logo-icon {
		width: 28px;
		height: 28px;
	}
	
	.logo-icon svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 480px) {
	body {
		padding-top: 45px; /* Match small mobile header height */
	}
	
	.pill-navigation {
		padding: 0.4rem 0.6rem;
		gap: 1rem;
	}
	
	.logo-icon {
		width: 24px;
		height: 24px;
	}
	
	.logo-icon svg {
		width: 14px;
		height: 14px;
	}
	
	.nav-link {
		padding: 0.7rem 0.8rem;
		font-size: 0.8rem;
	}
}

/* ===== NEW CLEAN FOOTER ===== */
.site-footer {
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	border-top: 1px solid var(--glass-border);
	padding: 3rem 0 1.5rem 0;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: var(--dutch-gold);
	font-size: 1.2rem;
	margin-bottom: 1rem;
	margin-top: 0;
}

.footer-section p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
	color: var(--dutch-gold);
}

.footer-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.feature {
	background: rgba(255, 217, 0, 0.1);
	color: var(--dutch-gold);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 600;
	border: 1px solid rgba(255, 217, 0, 0.2);
}

.dmca-badge {
	margin-top: 1rem;
}

.dmca-badge img {
	height: 18px;
	width: auto;
}

.footer-bottom {
	border-top: 1px solid var(--glass-border);
	padding-top: 1.5rem;
	text-align: center;
}

.footer-links {
	margin-bottom: 1rem;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	margin: 0 0.5rem;
	transition: color var(--transition-fast);
}

.footer-links a:hover {
	color: var(--dutch-gold);
}

.footer-links span {
	color: var(--text-muted);
	font-size: 0.8rem;
}

.copyright {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 0;
}

/* Mobile Responsive for New Footer */
@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.footer-section h3 {
		font-size: 1.1rem;
	}
	
	.footer-section p {
		font-size: 0.9rem;
	}
	
	.footer-section ul li a {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}
	
	.footer-features {
		justify-content: center;
	}
	
	.footer-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
	}
}

.footer-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.footer-nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 1rem;
	transition: color var(--transition-fast);
}

.footer-nav a:hover {
	color: var(--dutch-gold);
}

/* ===== PAGE TEMPLATES ===== */

/* Hero sections for page templates */
.pricing-hero-section,
.installation-hero-section,
.faq-hero-section,
.support-hero-section {
	padding: 2rem 0 1rem 0;
	text-align: center;
}

/* Blog Hero Section - Special Design */
.blog-hero-section {
	padding: 4rem 0 3rem 0;
	text-align: center;
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	position: relative;
}

.blog-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	pointer-events: none;
}

.pricing-hero-content h1,
.installation-hero-content h1,
.faq-hero-content h1,
.support-hero-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
}

/* Blog Hero Content - Special Styling */
.blog-hero-content {
	position: relative;
	z-index: 1;
	max-width: 100%;
	overflow: hidden;
	text-align: center;
}

.blog-hero-content h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--text-primary);
}

.pricing-hero-description,
.installation-hero-description,
.faq-hero-description,
.support-hero-description {
	font-size: 1.3rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Blog Hero Description - Special Styling */
.blog-hero-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto 3rem auto;
	line-height: 1.7;
	font-weight: 400;
}

/* FAQ Styles */
.faq-categories {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.faq-category {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: var(--border-radius-sm);
	cursor: pointer;
	transition: all var(--transition-normal);
	font-weight: 600;
}

.faq-category:hover,
.faq-category.active {
	background: var(--glass-active);
	border-color: var(--dutch-gold);
	color: var(--dutch-gold);
}

.faq-category-content {
	display: none;
}

.faq-category-content.active {
	display: block;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-sm);
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all var(--transition-normal);
}

.faq-item:hover {
	border-color: var(--dutch-gold);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	transition: all var(--transition-normal);
}

.faq-question:hover {
	background: var(--glass-hover);
}

.faq-question h3 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dutch-gold);
	transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem 1.5rem 1.5rem;
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-answer p {
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* Device Selection Enhanced */
.device-selection-enhanced {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}

.device-selection-header {
    text-align: center;
    margin-bottom: 2rem;
}

.device-selection-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.device-selection-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.device-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.device-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.device-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.1), rgba(255, 217, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-option:hover::before {
    opacity: 1;
}

.device-option:hover {
    border-color: var(--dutch-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 0, 0.2);
}

.device-option.selected {
    border-color: var(--dutch-gold);
    background: rgba(255, 217, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 0, 0.3);
}

.device-option.selected::before {
    opacity: 1;
}

.device-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dutch-gold);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.device-option.selected .device-number {
    color: var(--dutch-gold);
    text-shadow: 0 0 10px rgba(255, 217, 0, 0.5);
}

.device-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.device-option.selected .device-label {
    color: var(--text-primary);
}

.selection-summary-enhanced {
    background: rgba(255, 217, 0, 0.1);
    border: 1px solid rgba(255, 217, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-icon {
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.summary-text {
    flex: 1;
}

.summary-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dutch-gold);
    margin-right: 0.5rem;
}

.summary-label {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.summary-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* Consistent section container */
    .section-container {
        padding: 0 1rem;
    }
    
    /* Section spacing */
    .device-selection-section {
        padding: 1.5rem 0 3rem 0;
    }
    
    .pricing-section,
    .multi-device-section {
        padding: 3rem 0;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.25rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Device selection enhanced */
    .device-selection-enhanced {
        margin: 0 auto;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .device-selection-header h3 {
        font-size: 1.25rem;
    }
    
    .device-selection-header p {
        font-size: 0.9rem;
    }
    
    .device-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .device-option {
        padding: 1.25rem 0.75rem;
    }
    
    .device-number {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }
    
    .device-label {
        font-size: 0.8rem;
    }
    
    .selection-summary-enhanced {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .summary-text {
        order: 2;
    }
    
    .summary-description {
        order: 3;
        margin-top: 0;
    }
    
    /* Hero section mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .section-container {
        padding: 0 0.75rem;
    }
    
    /* Section spacing */
    .device-selection-section {
        padding: 1.5rem 0 3rem 0;
    }
    
    .pricing-section,
    .multi-device-section {
        padding: 3rem 0;
    }
    
    .section-header h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Device selection */
    .device-selection-enhanced {
        padding: 1rem;
    }
    
    .device-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .device-option {
        padding: 1rem 0.5rem;
    }
    
    .device-number {
        font-size: 1.5rem;
    }
    
    .device-label {
        font-size: 0.75rem;
    }
    
    .selection-summary-enhanced {
        padding: 1rem;
    }
    
    .summary-count {
        font-size: 1.25rem;
    }
    
    .summary-label {
        font-size: 0.9rem;
    }
    
    /* Hero section extra small */
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}




/* Installation Steps */
.steps-list {
	max-width: 800px;
	margin: 0 auto;
}

.step-item {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
	align-items: flex-start;
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--dutch-gold);
	color: var(--bg-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	flex-shrink: 0;
}

.step-content h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.step-content p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
}

/* Support Options */
.support-options-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.support-option {
	text-align: center;
	padding: 3rem 2rem;
}

.support-icon {
	color: var(--dutch-gold);
	margin-bottom: 1.5rem;
}

.support-option h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.support-option p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

/* Contact Form */
.contact-form-card {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-sm);
	padding: 1rem;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--dutch-gold);
	box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Support Hours */
.support-hours-card {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 3rem;
}

.hours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.hours-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.hours-item p {
	color: var(--text-secondary);
	margin: 0;
}

/* Quick Links */
.quick-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.quick-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 2rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	text-decoration: none;
	color: var(--text-primary);
	transition: all var(--transition-normal);
}

.quick-link:hover {
	border-color: var(--dutch-gold);
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.quick-link-icon {
	color: var(--dutch-gold);
}

.quick-link span {
	font-weight: 600;
	text-align: center;
}

/* Newsletter */
.newsletter-card {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 3rem;
}

.newsletter-form {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.newsletter-form input {
	flex: 1;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-sm);
	padding: 1rem;
	color: var(--text-primary);
	font-size: 1rem;
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--dutch-gold);
}

/* Support Card */
.support-card {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 3rem;
}

.support-options {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

/* ===== BLOG STYLES ===== */

/* Blog Categories Wrapper */
.blog-categories-wrapper {
	width: 100%;
}

/* Desktop Horizontal Categories */
.blog-categories {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	max-width: 100%;
	margin: 0 auto;
}

/* Mobile Dropdown */
.mobile-category-dropdown {
	display: none;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.category-select {
	width: 100%;
	padding: 1rem 1.5rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-normal);
	backdrop-filter: blur(10px);
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 1rem center;
	background-repeat: no-repeat;
	background-size: 1rem;
	padding-right: 3rem;
}

.category-select:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

.category-select:focus {
	outline: none;
	border-color: var(--dutch-gold);
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.blog-category {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-primary);
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius-sm);
	cursor: pointer;
	transition: all var(--transition-normal);
	font-weight: 600;
	font-size: 0.9rem;
}

.blog-category:hover,
.blog-category.active {
	background: var(--glass-active);
	border-color: var(--dutch-gold);
	color: var(--dutch-gold);
}

/* Category Buttons */
.category-btn {
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	color: var(--text-primary);
	cursor: pointer;
	transition: all var(--transition-normal);
	font-weight: 600;
	font-size: 1rem;
	white-space: nowrap;
	backdrop-filter: blur(15px);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-width: 120px;
	text-align: center;
}

.category-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.category-btn:hover::before {
	left: 100%;
}

.category-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-btn.active {
	background: var(--dutch-gold);
	color: var(--bg-primary);
	border-color: var(--dutch-gold);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.category-btn.active::before {
	display: none;
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
	.category-btn {
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
		user-select: none;
	}
	
	.category-btn:active {
		transform: scale(0.98);
		transition: transform 0.1s ease;
	}
}

/* Featured Post */
.featured-post-section {
	padding: 2rem 0;
	width: 100%;
}

.featured-post {
	overflow: hidden;
}

.featured-post-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.featured-post-image {
	position: relative;
}

.featured-post-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: var(--border-radius);
}

.featured-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--dutch-gold);
	color: var(--bg-primary);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius-sm);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
}

.featured-post-text {
	padding: 1rem 0;
}

.featured-post-text .post-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.featured-post-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.featured-post-title a {
	color: var(--text-primary);
	text-decoration: none;
}

.featured-post-title a:hover {
	color: var(--dutch-gold);
}

.featured-post-excerpt {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--dutch-gold);
	color: var(--bg-primary);
	padding: 1rem 2rem;
	border-radius: var(--border-radius-sm);
	text-decoration: none;
	font-weight: 600;
	transition: all var(--transition-normal);
}

.read-more-btn:hover {
	background: var(--dutch-gold-hover);
	transform: translateY(-2px);
}

/* Blog Posts Header */
.blog-posts-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
}

.blog-posts-header h2 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
}

.posts-filter select {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-sm);
	padding: 0.75rem 1rem;
	color: var(--text-primary);
	font-size: 0.9rem;
	cursor: pointer;
}

/* Blog Posts Section */
.blog-posts-section {
	padding: 2rem 0;
	width: 100%;
}

.blog-posts-header {
	text-align: center;
	margin-bottom: 2rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
}

/* Posts Grid */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.post-card {
	overflow: hidden;
	transition: all var(--transition-normal);
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.post-thumbnail {
	position: relative;
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform var(--transition-normal);
}

.post-card:hover .post-thumbnail img {
	transform: scale(1.05);
}

.no-thumbnail {
	width: 100%;
	height: 200px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
}

.post-category-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
}

.post-category-badge span {
	background: var(--dutch-gold);
	color: var(--bg-primary);
	padding: 0.25rem 0.75rem;
	border-radius: var(--border-radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
}

.post-content {
	padding: 1.5rem;
}

.post-content .post-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.entry-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.entry-title a {
	color: var(--text-primary);
	text-decoration: none;
}

.entry-title a:hover {
	color: var(--dutch-gold);
}

.entry-summary {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.entry-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.read-more {
	color: var(--dutch-gold);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: color var(--transition-normal);
}

.read-more:hover {
	color: var(--dutch-gold-hover);
}

.post-stats {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

/* Load More Section */
.load-more-section {
	text-align: center;
	padding: 2rem 0;
}

/* Single Post Styles */
.single-post {
	width: 100%;
	margin-top: 0.24rem; /* Reduced by 60% from 0.6rem */
}

/* Post Header - Full Width */
.post-header {
	padding: 0.6rem 0 0.45rem 0; /* Reduced by 70% */
	width: 100%;
}

/* Post Content - Full Width */
.post-content-main {
	padding: 0.3rem 0;
	width: 100%;
}

/* Post Tags - Full Width */
.post-tags-main {
	padding: 2rem 0;
	width: 100%;
}

/* Related Articles Section - Full Width */
.related-articles-section {
	border-top: 1px solid var(--glass-border);
	margin: 2rem 0 0 0;
	width: 100%;
}

.related-articles-main {
	padding: 4rem 0;
	width: 100%;
}

.related-articles-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-sm);
}

.related-articles-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.related-articles-header p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.related-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.related-article-card {
	padding: 0;
	overflow: hidden;
	transition: all var(--transition-normal);
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-md);
}

.related-article-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--dutch-gold);
	background: var(--glass-active);
}

.related-article-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.related-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-normal);
}

.related-article-card:hover .related-article-image img {
	transform: scale(1.05);
}

.related-article-content {
	padding: 2rem;
}

.related-article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.related-article-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
}

.related-article-category {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--dutch-gold);
	padding: 0.25rem 0.75rem;
	border-radius: var(--border-radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
}

.related-article-title {
	margin-bottom: 1rem;
}

.related-article-title a {
	color: var(--text-primary);
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.3;
	transition: color var(--transition-normal);
}

.related-article-title a:hover {
	color: var(--dutch-gold);
}

.related-article-excerpt {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.related-article-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--dutch-gold);
	text-decoration: none;
	font-weight: 600;
	transition: all var(--transition-normal);
}

.related-article-link:hover {
	color: var(--text-primary);
	transform: translateX(3px);
}

.related-article-link svg {
	transition: transform var(--transition-normal);
}

.related-article-link:hover svg {
	transform: translateX(3px);
}

.related-articles-cta {
	text-align: center;
	padding: 2rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-sm);
}

.related-articles-cta .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-md);
}

.post-header {
	margin-bottom: 0.45rem;
}

.post-breadcrumb {
	margin-bottom: 0.3rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.post-breadcrumb a {
	color: var(--dutch-gold);
	text-decoration: none;
}

.breadcrumb-separator {
	margin: 0 0.5rem;
}

.post-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding: 1rem 0;
	border-top: 1px solid var(--glass-border);
	border-bottom: 1px solid var(--glass-border);
}

.post-meta-left {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.post-meta-left span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.post-meta-left svg {
	color: var(--dutch-gold);
}

.post-categories {
	display: flex;
	gap: 0.5rem;
}

.post-category {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-primary);
	padding: 0.25rem 0.75rem;
	border-radius: var(--border-radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
}

.post-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 0.3rem;
}

.post-featured-image {
	margin-bottom: 2rem;
}

.post-featured-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: var(--border-radius);
}

.post-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
	margin-bottom: 3rem;
}

.post-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-primary);
}

.post-content h2,
.post-content h3,
.post-content h4 {
	margin: 2rem 0 1rem 0;
	font-weight: 600;
}

.post-content h2 {
	font-size: 1.8rem;
}

.post-content h3 {
	font-size: 1.5rem;
}

.post-content h4 {
	font-size: 1.3rem;
}

.post-content p {
	margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.post-content li {
	margin-bottom: 0.5rem;
}

.post-content blockquote {
	border-left: 4px solid var(--dutch-gold);
	padding-left: 2rem;
	margin: 2rem 0;
	font-style: italic;
	color: var(--text-secondary);
}

.post-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius-sm);
	margin: 1.5rem 0;
}

/* Post Sidebar */
.post-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.toc-widget,
.share-widget,
.related-posts-widget {
	padding: 2rem;
}

.toc-widget h3,
.share-widget h3,
.related-posts-widget h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.toc-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc-widget li {
	margin-bottom: 0.5rem;
}

.toc-widget a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color var(--transition-normal);
}

.toc-widget a:hover {
	color: var(--dutch-gold);
}

/* Share Buttons */
.share-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.share-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	border-radius: var(--border-radius-sm);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all var(--transition-normal);
	border: none;
	cursor: pointer;
}

.share-btn.facebook {
	background: #1877f2;
	color: white;
}

.share-btn.twitter {
	background: #1da1f2;
	color: white;
}

.share-btn.linkedin {
	background: #0077b5;
	color: white;
}

.share-btn.copy-link {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-primary);
}

.share-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Related Posts */
.related-posts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.related-post {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.related-post-thumbnail {
	flex-shrink: 0;
}

.related-post-thumbnail img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--border-radius-sm);
}

.related-post-content h4 {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.related-post-content h4 a {
	color: var(--text-primary);
	text-decoration: none;
}

.related-post-content h4 a:hover {
	color: var(--dutch-gold);
}

.related-post-date {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

/* Post Tags */
.post-tags {
	margin-bottom: 3rem;
	padding: 2rem 0;
	border-top: 1px solid var(--glass-border);
}

.post-tags h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tag {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-primary);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius-sm);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all var(--transition-normal);
}

.tag:hover {
	background: var(--dutch-gold);
	color: var(--bg-primary);
	border-color: var(--dutch-gold);
}

/* Post Navigation */
.post-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
	border-top: 1px solid var(--glass-border);
}

.nav-previous,
.nav-next {
	flex: 1;
}

.nav-next {
	text-align: right;
}

.post-navigation a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--transition-normal);
}

.post-navigation a:hover {
	color: var(--dutch-gold);
}

/* Page Links */
.page-links {
	margin: 2rem 0;
	text-align: center;
}

.page-links a {
	display: inline-block;
	padding: 0.5rem 1rem;
	margin: 0 0.25rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: var(--border-radius-sm);
	transition: all var(--transition-normal);
}

.page-links a:hover,
.page-links .current {
	background: var(--dutch-gold);
	color: var(--bg-primary);
	border-color: var(--dutch-gold);
}

/* ===== CALL TO ACTION STYLES ===== */

.cta-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.cta-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.cta-feature svg {
	color: var(--dutch-gold);
	flex-shrink: 0;
}

/* Pricing CTA Widget */
.pricing-cta-widget {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 217, 0, 0.05) 100%);
	border: 1px solid var(--dutch-gold);
}

.pricing-cta-widget h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.pricing-highlight {
	margin-bottom: 1.5rem;
}

.price-from {
	display: block;
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 0.25rem;
}

.price-amount {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--dutch-gold);
	line-height: 1;
}

.price-period {
	font-size: 1rem;
	color: var(--text-secondary);
}

.pricing-cta-content p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.pricing-guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.pricing-guarantee svg {
	color: var(--dutch-gold);
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-feature svg {
    color: var(--success-green);
    flex-shrink: 0;
}


/* Newsletter Section */
.newsletter-section {
	padding: 3rem 0;
	width: 100%;
}

.newsletter-card {
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
}

.newsletter-form {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	justify-content: center;
	align-items: center;
}

.newsletter-form input {
	flex: 1;
	max-width: 300px;
	padding: 0.75rem 1rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-size: 1rem;
}

.newsletter-form input::placeholder {
	color: var(--text-secondary);
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--dutch-gold);
	box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.1);
}

.cta-text h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.cta-text p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.cta-text .cta-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.cta-text .cta-feature {
	font-size: 1rem;
}

.cta-actions {
	text-align: center;
}

.cta-actions .pricing-highlight {
	margin-bottom: 2rem;
}

.cta-actions .price-amount {
	font-size: 3rem;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.btn-large {
	padding: 1.25rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.cta-guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1rem;
	color: var(--text-secondary);
}

.cta-guarantee svg {
	color: var(--dutch-gold);
}

/* Post Card CTA */
.post-card-cta {
	padding: 1rem 1.5rem;
	background: var(--glass-bg);
	border-top: 1px solid var(--glass-border);
	margin-top: 1rem;
}

.post-card-cta p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-secondary);
	text-align: center;
}

.post-card-cta a {
	color: var(--dutch-gold);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--transition-normal);
}

.post-card-cta a:hover {
	color: var(--dutch-gold-hover);
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* ===== MOBILE-FIRST BREAKPOINTS ===== */

/* Small Mobile (320px - 480px) */
@media (min-width: 320px) {
	
	.hero-section {
		padding: 1rem 0 1.5rem 0;
	}
	
	.hero-text h1 {
		font-size: 1.6rem;
		line-height: 1.2;
	}
	
	.hero-text p {
		font-size: 0.9rem;
		line-height: 1.4;
	}
	
	.btn {
		padding: 0.7rem 1.2rem;
		font-size: 0.9rem;
		min-height: 40px;
	}
}

/* Mobile (481px - 768px) */
@media (min-width: 481px) {
	
	.hero-section {
		padding: 1.5rem 0 2rem 0;
	}
	
	.hero-text h1 {
		font-size: 2rem;
	}
	
	.hero-text p {
		font-size: 1rem;
	}
	
	.btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
		min-height: 44px;
	}
	
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) {
	
	.hero-section {
		padding: 2rem 0 3rem 0;
	}
	
	.hero-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
		align-items: center;
	}
	
	.hero-text h1 {
		font-size: 2.5rem;
		line-height: 1.1;
	}
	
	.hero-text p {
		font-size: 1.1rem;
		line-height: 1.5;
	}
	
	.btn {
		padding: 1rem 2rem;
		font-size: 1.1rem;
		min-height: 48px;
	}
	
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }
	
	section {
		padding: 3rem 0;
	}
}

/* Desktop (1025px - 1440px) */
@media (min-width: 1025px) {
	
	.hero-section {
		padding: 3rem 0 4rem 0;
	}
	
	.hero-content {
		gap: 4rem;
	}
	
	.hero-text h1 {
		font-size: 3rem;
		line-height: 1.1;
	}
	
	.hero-text p {
		font-size: 1.2rem;
		line-height: 1.6;
	}
	
	.btn {
		padding: 1.2rem 2.5rem;
		font-size: 1.2rem;
		min-height: 52px;
	}
	
	section {
		padding: 4rem 0;
	}
}

/* Large Desktop (1441px+) */
@media (min-width: 1441px) {
	
	.hero-section {
		padding: 4rem 0 5rem 0;
	}
	
	.hero-text h1 {
		font-size: 3.5rem;
	}
	
	.hero-text p {
		font-size: 1.3rem;
	}
	
	section {
		padding: 5rem 0;
	}
}

/* ===== KEY FEATURES RESPONSIVE ===== */
@media (max-width: 768px) {
	.key-features-section {
		padding: 2.5rem 0;
	}
	
	.features-container {
		padding: 0 1rem;
	}
	
	.features-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: repeat(2, 1fr) !important;
		gap: 1.25rem;
		max-width: 500px;
		margin: 0 auto;
		align-items: stretch;
		justify-items: center;
	}
	
	.feature-card {
		width: 100% !important;
		height: 150px !important;
		padding: 2rem 1rem 1.5rem 1rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.feature-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 1rem;
		margin-top: 0.5rem;
	}
	
	.feature-title {
		font-size: 1rem;
		line-height: 1.3;
		text-align: center;
		margin: 0;
		word-wrap: break-word;
		hyphens: auto;
	}
}

@media (max-width: 480px) {
	.key-features-section {
		padding: 2rem 0;
	}
	
	.features-container {
		padding: 0 0.75rem;
	}
	
	.features-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: repeat(2, 1fr) !important;
		gap: 1rem;
		max-width: 400px;
		align-items: stretch;
		justify-items: center;
	}
	
	.feature-card {
		width: 100% !important;
		height: 130px !important;
		padding: 1.75rem 0.75rem 1.25rem 0.75rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.feature-icon {
		width: 36px;
		height: 36px;
		margin-bottom: 0.75rem;
		margin-top: 0.5rem;
	}
	
	.feature-title {
		font-size: 1rem;
		line-height: 1.3;
		text-align: center;
		margin: 0;
		word-wrap: break-word;
		hyphens: auto;
	}
}

/* Additional mobile override for better grid control */
@media (max-width: 600px) {
	.key-features-section .features-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		grid-template-rows: repeat(2, 1fr) !important;
		gap: 1rem !important;
		max-width: 450px !important;
		margin: 0 auto !important;
	}
	
	.key-features-section .feature-card {
		width: 100% !important;
		height: 140px !important;
		padding: 1.75rem 0.75rem 1.25rem 0.75rem !important;
	}
	
	.key-features-section .feature-icon {
		margin-top: 0.5rem !important;
	}
}

/* Desktop override to ensure horizontal layout */
@media (min-width: 769px) {
	.key-features-section .features-grid {
		display: grid !important;
		grid-template-columns: repeat(4, 1fr) !important;
		grid-template-rows: 1fr !important;
		gap: 2rem !important;
		max-width: 1200px !important;
		margin: 0 auto !important;
	}
}

/* Override all feature-card h3 rules for key features section */
.key-features-section .feature-card h3 {
	font-size: 1rem !important;
}

/* Mobile banner override to ensure visibility */
@media (max-width: 768px) {
	.enhanced-promo-banner {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		transform: translateY(0) !important;
	}
}

/* ===== SEO FAQ SECTION ===== */
.seo-faq-section {
	padding: 4rem 0;
	background: transparent;
}

.seo-faq-section .section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.seo-faq-section .section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.seo-faq-section .section-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--dutch-gold);
	box-shadow: 0 4px 20px rgba(255, 217, 0, 0.1);
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(255, 217, 0, 0.05);
}

.faq-question h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
	flex: 1;
	padding-right: 1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--dutch-gold);
	transition: transform 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 217, 0, 0.1);
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
	background: var(--dutch-gold);
	color: var(--bg-primary);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
	font-size: 1rem;
}

/* Mobile responsive for FAQ */
@media (max-width: 768px) {
	.seo-faq-section {
		padding: 3rem 0;
	}
	
	.seo-faq-section .section-header h2 {
		font-size: 2rem;
	}
	
	.seo-faq-section .section-header p {
		font-size: 1rem;
	}
	
	.faq-question {
		padding: 1.25rem;
	}
	
	.faq-question h4 {
		font-size: 1rem;
	}
	
	.faq-item.active .faq-answer {
		padding: 0 1.25rem 1.25rem 1.25rem;
	}
}

@media (max-width: 480px) {
	.seo-faq-section {
		padding: 2rem 0;
	}
	
	.seo-faq-section .section-header h2 {
		font-size: 1.8rem;
	}
	
	.faq-question {
		padding: 1rem;
	}
	
	.faq-question h4 {
		font-size: 1rem;
	}
	
	.faq-item.active .faq-answer {
		padding: 0 1rem 1rem 1rem;
	}
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
	
	/* Hero Section */
	.hero-section {
		padding: 1.5rem 0 2rem 0;
	}
	
	.hero-visual {
		margin-top: 1rem;
	}
	
	.iptv-showcase {
		max-width: 100%;
	}
	
	.tv-screen {
		max-width: 100%;
		height: auto;
	}
	
	.screen-content {
		padding: 1.2rem;
	}
	
	/* New mobile-first styles are handled above */
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}
	
	.hero-text h1 {
		font-size: 3rem;
		margin-bottom: 1.5rem;
	}
	
	.hero-text p {
		font-size: 1.2rem;
		margin-bottom: 2rem;
	}
	
	.hero-buttons {
		justify-content: center;
		gap: 1rem;
	}
	
	/* Key Features Section */
	.key-features-section {
		padding: 4rem 0;
	}
	
	.features-container {
		padding: 0 1.5rem;
	}
	
	.features-grid {
		display: grid !important;
		grid-template-columns: repeat(4, 1fr) !important;
		grid-template-rows: 1fr !important;
		gap: 1.5rem;
		max-width: 1000px;
	}
	
	.feature-card {
		height: 160px;
		padding: 2rem 1.5rem;
	}
	
	/* Multi-Device Section */
	.multi-device-section {
		padding: 4rem 0;
	}
	
	.multi-device-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}
	
	/* Pricing Section */
	.pricing-section {
		padding: 4rem 0;
	}
	
	
	/* Reviews Section */
	.reviews-section {
		padding: 4rem 0;
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	/* Trust Section */
	.trust-section {
		padding: 4rem 0;
	}
	
	.trust-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	
	/* How It Works Section */
	.how-it-works-section {
		padding: 4rem 0;
	}
	
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	
	/* Compatibility Section */
	.compatibility-section {
		padding: 4rem 0;
	}
	
	.compatibility-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	
	/* Final CTA Section */
	.final-cta-section {
		padding: 4rem 0;
	}
	
	.final-cta-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.final-cta-buttons {
		justify-content: center;
	}
	
	/* Footer */
	.site-footer {
		margin-top: 1.5rem;
	}
	
	.footer-main {
		padding: 2.5rem 0;
	}
	
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		text-align: left;
	}
	
	.footer-copyright-row {
		text-align: center;
	}
	
	.footer-legal-links {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.footer-bottom {
		padding: 1.25rem 0;
	}
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
	/* Body padding handled by header scroll behavior */
	
	
	/* Ensure proper mobile viewport */
	html {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
	
	body {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	
	/* Hero Section */
	.hero-section {
		padding: 1rem 0 1.5rem 0;
	}
	
	.hero-visual {
		margin-top: 0.5rem;
	}
	
	.iptv-showcase {
		max-width: 100%;
	}
	
	.tv-screen {
		max-width: 100%;
		height: auto;
	}
	
	.screen-content {
		padding: 1rem;
	}
	
	/* New mobile-first styles are handled above */
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.hero-text h1 {
		font-size: 2.2rem;
		margin-bottom: 1rem;
		line-height: 1.2;
	}
	
	.hero-text p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
		line-height: 1.6;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		width: 100%;
	}
	
	.hero-buttons .btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}
	
	/* Statistics Section */
	.stats-section {
		padding: 2.5rem 0;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 1rem;
		max-width: 400px;
		margin: 0 auto;
		align-items: stretch;
		justify-items: center;
	}
	
	.stat-card {
		padding: 1.5rem 1rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 140px;
		text-align: center;
		width: 100%;
		height: 100%;
	}
	
	.stat-icon {
		width: 48px;
		height: 48px;
		margin-bottom: 0.75rem;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}
	
	.stat-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.stat-label {
		font-size: 20px;
		line-height: 1.2;
		font-weight: 600;
		word-wrap: break-word;
		hyphens: auto;
		color: #888;
		text-align: center;
	}
	
	.stat-item {
		text-align: center;
		padding: 1.5rem;
	}
	
	.stat-number {
		font-size: 2.5rem;
		margin-bottom: 0.5rem;
	}
	
	.stat-label {
		font-size: 1rem;
	}
	
	/* Multi-Device Section */
	.multi-device-section {
		padding: 3rem 0;
	}
	
	.multi-device-content {
		gap: 2rem;
	}
	
	/* Pricing Section */
	.pricing-section {
		padding: 2.5rem 0;
	}
	
	
	.pricing-card {
		padding: 2rem 1.5rem;
	}
	
	.pricing-card h3 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	
	.pricing-card .price {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}
	
	.pricing-card .price-period {
		font-size: 1rem;
	}
	
	
	/* Reviews Section */
	.reviews-section {
		padding: 3rem 0;
	}
	
	.reviews-grid {
		gap: 1.5rem;
	}
	
	/* Trust Section */
	.trust-section {
		padding: 3rem 0;
	}
	
	.trust-features {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	/* How It Works Section */
	.how-it-works-section {
		padding: 3rem 0;
	}
	
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	/* Compatibility Section */
	.compatibility-section {
		padding: 3rem 0;
	}
	
	.compatibility-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	/* Final CTA Section */
	.final-cta-section {
		padding: 3rem 0;
	}
	
	.final-cta-content {
		gap: 1.5rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	/* Fixed Banner */
	.fixed-banner {
		padding: 1rem 1.5rem;
	}
	
	.fixed-banner-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.fixed-banner-text h3 {
		font-size: 1.1rem;
	}
	
	.fixed-banner-text p {
		font-size: 0.85rem;
	}
	
	.fixed-banner-button {
		padding: 0.7rem 1.2rem;
		font-size: 0.85rem;
	}
	
	.fixed-banner-close {
		top: 8px;
		right: 8px;
		width: 28px;
		height: 28px;
	}
	
	/* Footer */
	.site-footer {
		margin-top: 1rem;
	}
	
	.footer-main {
		padding: 2rem 0;
	}
	
	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}
	
	.footer-features {
		justify-content: center;
	}
	
	.footer-copyright-row {
		text-align: center;
	}
	
	.footer-legal-links {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.footer-bottom {
		padding: 1rem 0;
	}
	
	.footer-bottom .container {
		justify-content: center;
		text-align: center;
	}
	
	.footer-nav {
		justify-content: center;
		flex-wrap: wrap;
		gap: 1rem;
	}
	
	/* Navigation */
	.menu-toggle {
		display: block;
	}
	
	/* Header padding handled by pill navigation header */
	
	.site-header .container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.main-navigation {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(15, 15, 35, 0.98);
		backdrop-filter: blur(20px);
		z-index: 9999;
		display: none;
	}
	
	.main-navigation.active {
		display: block;
	}
	
	.nav-menu {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 2rem;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	.nav-menu li {
		margin: 0;
	}
	
	.nav-menu a {
		font-size: 1.5rem;
		font-weight: 600;
		color: var(--text-primary);
		text-decoration: none;
		padding: 1rem 2rem;
		display: block;
		transition: color var(--transition-normal);
	}
	
	.nav-menu a:hover {
		color: var(--dutch-gold);
	}
	
	/* TV Interface */
	.tv-screen {
		width: 300px;
		height: 190px;
	}
	
	.movie-title {
		font-size: 20px;
	}
	
	.movie-details {
		font-size: 11px;
	}
	
	.thumbnail {
		width: 32px;
		height: 45px;
	}
	
	.media-console {
		width: 250px;
	}
	
	.remote-control {
		width: 55px;
		height: 75px;
		right: 15px;
	}
	
	/* Page Templates */
	.device-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.support-options-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.quick-links-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.hours-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.faq-categories {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}
	
	.newsletter-form {
		flex-direction: column;
		gap: 1rem;
	}
	
	.support-options {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	/* Blog Styles */
	.blog-hero-section {
		padding: 1.5rem 0 1rem 0;
	}
	
	.blog-hero-content h1 {
		font-size: 2.2rem;
		margin-bottom: 1rem;
		line-height: 1.2;
	}
	
	.blog-hero-description {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
	}
	
	.featured-post-section {
		padding: 1.5rem 0;
	}
	
	.featured-post-content {
		gap: 1.5rem;
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.featured-post-image {
		order: -1;
	}
	
	.blog-posts-section {
		padding: 1.5rem 0;
	}
	
	.posts-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	/* Support Styles - Tablet */
	.support-options-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.support-option {
		padding: 2rem 1.5rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.hours-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.quick-links-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.post-card {
		padding: 1.5rem;
	}
	
	.post-card h3 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
		line-height: 1.3;
	}
	
	.post-card p {
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 1rem;
	}
	
	.blog-posts-header {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
		margin-bottom: 1.5rem;
	}
	
	.post-content-wrapper {
		gap: 1.5rem;
		grid-template-columns: 1fr;
	}
	
	.post-meta {
		flex-direction: column;
		gap: 0.75rem;
		text-align: center;
	}
	
	.post-meta-left {
		justify-content: center;
	}
	
	/* Single Post Mobile Styles */
	.single-post {
		margin-top: 0.18rem; /* Reduced by 60% from 0.45rem */
	}
	
	.post-header {
		padding: 0.45rem 0 0.3rem 0; /* Reduced by 70% */
	}
	
	.post-content-main {
		padding: 0.3rem 0;
	}
	
	.post-tags-main {
		padding: 1.5rem 0;
	}
	
	.post-title {
		font-size: 2rem;
		margin-bottom: 0.3rem;
		line-height: 1.2;
	}
	
	.post-meta {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
		padding: 1.5rem 0;
	}
	
	.post-meta-left {
		flex-direction: column;
		gap: 0.75rem;
		justify-content: center;
	}
	
	.post-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 2rem;
	}
	
	.post-content {
		font-size: 1rem;
		line-height: 1.7;
	}
	
	.post-content h2 {
		font-size: 1.5rem;
		margin: 2rem 0 1rem 0;
	}
	
	.post-content h3 {
		font-size: 1.3rem;
		margin: 1.5rem 0 0.75rem 0;
	}
	
	.post-content p {
		margin-bottom: 1.5rem;
	}
	
	.post-content ul,
	.post-content ol {
		margin-bottom: 1.5rem;
		padding-left: 1.5rem;
	}
	
	.post-content li {
		margin-bottom: 0.5rem;
	}
	
	.post-sidebar {
		order: -1;
	}
	
	.cta-buttons .btn {
		width: 100%;
		justify-content: center;
	}
	
	.cta-features {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 1.5rem;
	}
	
	.pricing-cta-widget {
		padding: 1.5rem;
		text-align: center;
	}
	
	.pricing-cta-widget h3 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}
	
	.pricing-cta-content {
		gap: 1rem;
	}
	
	.pricing-highlight {
		margin-bottom: 1rem;
	}
	
	.pricing-cta-content .btn {
		width: 100%;
		justify-content: center;
	}
	
	/* Related Articles Mobile */
	.related-articles-section {
		margin: 2rem 0 0 0;
	}
	
	.related-articles-main {
		padding: 3rem 0;
	}
	
	.related-articles-header {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.related-articles-header h2 {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}
	
	.related-articles-header p {
		font-size: 1.1rem;
	}
	
	.related-articles-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.related-article-content {
		padding: 1.5rem;
	}
	
	.related-article-title a {
		font-size: 1.2rem;
	}
	
	.related-article-excerpt {
		font-size: 0.95rem;
		margin-bottom: 1.25rem;
	}
	
	.related-articles-cta {
		padding: 1.5rem;
	}
	
	/* CTA Styles */
	
	.cta-text .cta-features {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
	
	.cta-features {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		gap: 1rem;
	}
	
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
	
	/* Device selection mobile optimizations */
	.device-options-row {
		gap: 0.6rem;
		padding: 0.6rem;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.device-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	.selection-summary {
		padding: 1rem;
		margin-top: 0.8rem;
		max-width: 100%;
	}
	
	.summary-count {
		font-size: 1.8rem;
	}
	
	.summary-label {
		font-size: 1rem;
	}
	
	.summary-description {
		font-size: 0.8rem;
	}
	
	/* Ensure proper mobile viewport */
	html {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
	
	body {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	
	/* Hero Section */
	.hero-section {
		padding: 0.5rem 0 1rem 0;
	}
	
	.hero-visual {
		margin-top: 0.3rem;
	}
	
	.iptv-showcase {
		max-width: 100%;
	}
	
	.tv-screen {
		max-width: 100%;
		height: auto;
	}
	
	.screen-content {
		padding: 0.5rem;
	}
	
	.hero-text h1 {
		font-size: 1.8rem;
		margin-bottom: 0.75rem;
		line-height: 1.2;
	}
	
	.hero-text p {
		font-size: 0.95rem;
		margin-bottom: 1.25rem;
		line-height: 1.5;
	}
	
	.hero-buttons .btn {
		max-width: 100%;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
	
	/* Glass Cards */
	.glass-card {
		padding: 1.5rem;
	}
	
	.feature-card,
	.step-card,
	.compatibility-item {
		padding: 1.5rem;
	}
	
	/* Statistics Section */
	.stats-section {
		padding: 2rem 0;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 0.75rem;
		max-width: 350px;
		margin: 0 auto;
		align-items: stretch;
		justify-items: center;
	}
	
	.stat-card {
		padding: 1.25rem 0.75rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 120px;
		text-align: center;
		width: 100%;
		height: 100%;
	}
	
	.stat-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 0.5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}
	
	.stat-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.stat-label {
		font-size: 20px;
		line-height: 1.1;
		font-weight: 600;
		word-wrap: break-word;
		hyphens: auto;
		color: #888;
		text-align: center;
	}
	
	/* Blog Articles Section */
	.blog-articles-section {
		padding: 2.5rem 0;
	}
	
	.blog-articles-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.article-image {
		height: 150px;
		padding: 1.5rem;
	}
	
	.article-image svg {
		width: 48px;
		height: 48px;
	}
	
	.article-content {
		padding: 1.25rem;
	}
	
	.article-content h3 {
		font-size: 1.1rem;
		margin-bottom: 0.75rem;
	}
	
	.article-content p {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}
	
	/* Blog Articles Section */
	.blog-articles-section {
		padding: 2rem 0;
	}
	
	.blog-articles-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.article-image {
		height: 120px;
		padding: 1rem;
	}
	
	.article-image svg {
		width: 40px;
		height: 40px;
	}
	
	.article-content {
		padding: 1rem;
	}
	
	.article-content h3 {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
	
	.article-content p {
		font-size: 0.85rem;
		margin-bottom: 0.75rem;
	}
	
	.article-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	/* Multi-Device Section */
	.multi-device-section {
		padding: 2rem 0;
	}
	
	/* Pricing Section */
	.pricing-section {
		padding: 2rem 0;
	}
	
	
	/* Reviews Section */
	.reviews-section {
		padding: 2rem 0;
	}
	
	/* Trust Section */
	.trust-section {
		padding: 2rem 0;
	}
	
	/* How It Works Section */
	.how-it-works-section {
		padding: 2rem 0;
	}
	
	/* Compatibility Section */
	.compatibility-section {
		padding: 2rem 0;
	}
	
	/* Final CTA Section */
	.final-cta-section {
		padding: 2rem 0;
	}
	
	/* Footer */
	.site-footer {
		margin-top: 0.75rem;
	}
	
	.footer-main {
		padding: 1.5rem 0;
	}
	
	.footer-widgets {
		gap: 1rem;
	}
	
	.footer-bottom {
		padding: 0.75rem 0;
	}
	
	.footer-bottom .container {
		justify-content: center;
		text-align: center;
	}
	
	/* Fixed Banner */
	.fixed-banner {
		padding: 0.75rem 1rem;
	}
	
	.fixed-banner-text h3 {
		font-size: 1rem;
	}
	
	.fixed-banner-text p {
		font-size: 0.8rem;
	}
	
	.fixed-banner-button {
		padding: 0.6rem 1rem;
		font-size: 0.8rem;
	}
	
	.fixed-banner-close {
		top: 6px;
		right: 6px;
		width: 24px;
		height: 24px;
	}
	
	/* Blog Styles - Small Mobile */
	.blog-hero-section {
		padding: 1rem 0 0.75rem 0;
	}
	
	.blog-hero-content h1 {
		font-size: 1.8rem;
		margin-bottom: 0.75rem;
		line-height: 1.2;
	}
	
	.blog-hero-description {
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}
	
	.featured-post-section {
		padding: 1rem 0;
	}
	
	.featured-post-content {
		gap: 1rem;
	}
	
	.blog-posts-section {
		padding: 1rem 0;
	}
	
	.posts-grid {
		gap: 1rem;
	}
	
	.post-card {
		padding: 1.25rem;
	}
	
	.post-card h3 {
		font-size: 1.2rem;
		margin-bottom: 0.75rem;
		line-height: 1.3;
	}
	
	.post-card p {
		font-size: 0.9rem;
		line-height: 1.5;
		margin-bottom: 0.75rem;
	}
	
	/* Single Post - Small Mobile */
	.single-post {
		margin-top: 0.12rem; /* Reduced by 60% from 0.3rem */
	}
	
	.post-header {
		padding: 0.375rem 0 0.225rem 0; /* Reduced by 70% */
	}
	
	.post-content-main {
		padding: 0.225rem 0;
	}
	
	.post-tags-main {
		padding: 1.25rem 0;
	}
	
	.post-title {
		font-size: 1.8rem;
		margin-bottom: 0.225rem;
		line-height: 1.2;
	}
	
	.post-meta {
		padding: 1rem 0;
		gap: 0.75rem;
	}
	
	.post-content-wrapper {
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.post-content {
		font-size: 0.95rem;
		line-height: 1.6;
	}
	
	.post-content h2 {
		font-size: 1.3rem;
		margin: 1.5rem 0 0.75rem 0;
	}
	
	.post-content h3 {
		font-size: 1.2rem;
		margin: 1.25rem 0 0.5rem 0;
	}
	
	.post-content p {
		margin-bottom: 1.25rem;
	}
	
	.post-content ul,
	.post-content ol {
		margin-bottom: 1.25rem;
		padding-left: 1.25rem;
	}
	
	.cta-content {
		padding: 1.5rem 1rem;
	}
	
	.cta-content h3 {
		font-size: 1.3rem;
		margin-bottom: 0.75rem;
	}
	
	.cta-content p {
		font-size: 0.95rem;
		margin-bottom: 1.25rem;
	}
	
	.pricing-cta-widget {
		padding: 1.25rem;
	}
	
	.pricing-cta-widget h3 {
		font-size: 1.2rem;
		margin-bottom: 0.75rem;
	}
	
	/* Related Articles - Small Mobile */
	.related-articles-section {
		margin: 1.5rem 0 0 0;
	}
	
	.related-articles-main {
		padding: 2.5rem 0;
	}
	
	.related-articles-header {
		padding: 1.25rem;
		margin-bottom: 1.5rem;
	}
	
	.related-articles-header h2 {
		font-size: 1.8rem;
		margin-bottom: 0.5rem;
	}
	
	.related-articles-header p {
		font-size: 1rem;
	}
	
	.related-articles-grid {
		gap: 1.25rem;
		margin-bottom: 1.5rem;
	}
	
	.related-article-content {
		padding: 1.25rem;
	}
	
	.related-article-title a {
		font-size: 1.1rem;
	}
	
	.related-article-excerpt {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}
	
	.related-articles-cta {
		padding: 1.25rem;
	}
	
	.related-articles-cta .btn {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
	
	/* TV Interface */
	.tv-screen {
		width: 250px;
		height: 160px;
	}
	
	.movie-title {
		font-size: 16px;
	}
	
	.movie-details {
		font-size: 9px;
	}
	
	.thumbnail {
		width: 28px;
		height: 38px;
	}
	
	.media-console {
		width: 200px;
	}
	
	.remote-control {
		width: 45px;
		height: 65px;
		right: 10px;
	}
	
	/* Page Templates */
	.device-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.support-options-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.quick-links-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.hours-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.faq-categories {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}
	
	.newsletter-form {
		flex-direction: column;
		gap: 1rem;
	}
	
	.support-options {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	/* Blog Styles */
	.blog-hero-section {
		padding: 1rem 0 0.75rem 0;
	}
	
	.featured-post-section {
		padding: 1rem 0;
	}
	
	.featured-post-content {
		gap: 1rem;
	}
	
	.blog-posts-section {
		padding: 1rem 0;
	}
	
	.posts-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	/* Support Styles - Small Mobile */
	.support-option {
		padding: 1.5rem 1rem;
	}
	
	.support-icon svg {
		width: 48px;
		height: 48px;
	}
	
	.contact-form-card {
		padding: 2rem 1.5rem;
	}
	
	.support-hours-card {
		padding: 2rem 1.5rem;
	}
	
	.quick-links-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.quick-link {
		padding: 1.5rem 1rem;
	}
	
	.blog-posts-header {
		gap: 0.75rem;
		margin-bottom: 1rem;
	}
	
	.post-content-wrapper {
		gap: 1rem;
	}
	
	.post-meta {
		gap: 0.5rem;
	}
	
	.post-navigation {
		gap: 0.75rem;
	}
	
	/* CTA Styles */
	
	.cta-text h2 {
		font-size: 1.8rem;
	}
	
	.cta-text p {
		font-size: 0.95rem;
	}
	
	.cta-text .cta-features {
		gap: 0.5rem;
	}
	
	.cta-features {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
	
	.cta-buttons {
		gap: 0.75rem;
	}
	
	
	.cta-actions .price-amount {
		font-size: 2rem;
	}
	
	/* Additional small mobile optimizations */
	.step-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.blog-categories {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}
	
	.featured-post-text {
		text-align: center;
	}
	
	.post-meta-left {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.related-post {
		flex-direction: column;
		text-align: center;
	}
	
        .tags-list {
                justify-content: center;
        }
}

/* ===== ENHANCED BENEFITS SECTION ===== */
.benefits-section {
    padding: 4rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--dutch-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dutch-gold) 0%, rgba(255, 193, 7, 0.5) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--dutch-gold);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: rgba(255, 193, 7, 0.8);
}

.benefit-icon svg {
    color: var(--dutch-gold);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card:hover .benefit-icon svg {
    transform: rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefits-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-header {
        margin-bottom: 2rem;
    }
    
    .benefits-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-header p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 2rem 0;
    }
    
    .benefits-header h2 {
        font-size: 1.6rem;
    }
    
    .benefits-header p {
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
}

/* ===== ENHANCED FAQ SECTION ===== */
.faq-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    margin: 2rem 0;
}

.faq-container h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--dutch-gold);
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-question:hover {
    background: rgba(255, 193, 7, 0.05);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, rgba(255, 193, 7, 0.8) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon svg {
    color: var(--bg-primary);
    width: 20px;
    height: 20px;
}

.faq-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--dutch-gold);
    cursor: pointer;
}

.faq-item.active .faq-toggle {
    background: var(--dutch-gold);
    color: var(--bg-primary);
}

.faq-answer {
    display: none;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== NEW PRICING CARDS ===== */
.new-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.new-pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.new-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 193, 7, 0.3);
}

.new-pricing-card.popular {
    border: 2px solid var(--dutch-gold);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.new-pricing-card .card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.new-pricing-card .card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.new-pricing-card .price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.new-pricing-card .currency {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.new-pricing-card .amount {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.new-pricing-card .price-per-credit {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.new-pricing-card .price-per-credit-small {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.savings-dot {
    width: 8px;
    height: 8px;
    background: var(--dutch-gold);
    border-radius: 50%;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.feature-item svg {
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.new-select-btn {
    width: 100%;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-select-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--dutch-gold);
    transform: translateY(-2px);
}

.new-select-btn.popular-btn {
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    color: var(--bg-primary);
    border: none;
}

.new-select-btn.popular-btn:hover {
    background: linear-gradient(135deg, #ffd700, var(--dutch-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

/* ===== CREDIT SYSTEM SECTION ===== */
.credit-system-section {
    padding: 5rem 0;
}

.credit-system-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.credit-system-left {
    padding-right: 2rem;
}

.credit-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.credit-system-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.credit-system-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-credit-info {
    display: inline-block;
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-credit-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.credit-system-right {
    display: flex;
    justify-content: center;
}

.credit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.credit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.credit-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.credit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.credit-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.2);
}

.credit-row.highlight {
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    color: var(--bg-primary);
    border-color: var(--dutch-gold);
}

.credit-duration {
    font-weight: 600;
    color: var(--text-primary);
}

.credit-row.highlight .credit-duration {
    color: var(--bg-primary);
}

.credit-value {
    font-weight: 600;
    color: var(--text-secondary);
}

.credit-row.highlight .credit-value {
    color: var(--bg-primary);
}

.credit-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credit-footer span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== ENHANCED FINAL CTA SECTION ===== */
.final-cta {
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}


/* ===== UNIFIED SECTION SPACING FOR DESKTOP ===== */
@media (min-width: 769px) {
    /* Reseller Page Sections - Equal and Relaxing Spacing */
    .hero-section {
        padding: 6rem 0 !important;
    }
    
    .benefits-section {
        padding: 6rem 0 !important;
    }
    
    .pricing-section {
        padding: 6rem 0 !important;
    }
    
    .credit-system-section {
        padding: 6rem 0 !important;
    }
    
    .faq-container {
        margin: 6rem 0 !important;
    }
    
    .signup-section {
        padding: 6rem 0 !important;
    }
    
    .final-cta {
        padding: 6rem 0 !important;
    }
    
    /* Add breathing room between sections */
    .hero-section + .benefits-section {
        padding-top: 7rem !important;
    }
    
    .benefits-section + .pricing-section {
        padding-top: 7rem !important;
    }
    
    .pricing-section + .credit-system-section {
        padding-top: 7rem !important;
    }
    
    .credit-system-section + .faq-container {
        margin-top: 7rem !important;
    }
    
    .faq-container + .signup-section {
        padding-top: 7rem !important;
    }
    
    .signup-section + .final-cta {
        padding-top: 7rem !important;
    }
}

/* ===== ENHANCED CTA CONTENT ===== */
.enhanced-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

.cta-icon svg {
    color: var(--bg-primary);
    width: 48px;
    height: 48px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.enhanced-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dutch-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enhanced-cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dutch-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-guarantee svg {
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.cta-header {
    margin-bottom: 2.5rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, rgba(255, 193, 7, 0.8) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.cta-icon svg {
    color: var(--bg-primary);
    width: 64px;
    height: 64px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--dutch-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.cta-feature svg {
    color: var(--dutch-gold);
    width: 20px;
    height: 20px;
}

.cta-feature span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-guarantee svg {
    color: var(--dutch-gold);
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .new-pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .new-pricing-card .card-header h3 {
        font-size: 1.6rem;
    }
    
    .new-pricing-card .amount {
        font-size: 3rem;
    }
    
    .new-pricing-card .currency {
        font-size: 1.6rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }
    
    .credit-system-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .credit-system-left {
        padding-right: 0;
        text-align: center;
    }
    
    .credit-system-left h2 {
        font-size: 2rem;
    }
    
    .credit-system-left p {
        font-size: 1rem;
    }
    
    .credit-card {
        max-width: 100%;
    }
    
    .faq-container {
        padding: 1.5rem;
    }
    
    .faq-header h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
    }
    
    .faq-text {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .cta-header p {
        font-size: 1rem;
    }
    
    /* Enhanced CTA Mobile */
    .enhanced-cta-content h2 {
        font-size: 2rem;
    }
    
    .enhanced-cta-content p {
        font-size: 1rem;
    }
    
    .cta-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-large {
        min-width: 250px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-feature {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .new-pricing-cards {
        gap: 1.5rem;
    }
    
    .new-pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .new-pricing-card .card-header h3 {
        font-size: 1.4rem;
    }
    
    .new-pricing-card .amount {
        font-size: 2.5rem;
    }
    
    .new-pricing-card .currency {
        font-size: 1.4rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .new-select-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .credit-system-section {
        padding: 3rem 0;
    }
    
    .credit-system-left h2 {
        font-size: 1.8rem;
    }
    
    .credit-system-left p {
        font-size: 0.95rem;
    }
    
    .credit-card {
        padding: 1.5rem;
    }
    
    .credit-card h3 {
        font-size: 1.3rem;
    }
    
    .credit-row {
        padding: 0.75rem;
    }
    
    .faq-container {
        padding: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
    }
    
    .faq-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .faq-text {
        font-size: 0.95rem;
    }
    
    .cta-header h2 {
        font-size: 1.6rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ===== RESELLER FORM PHONE INSTRUCTIONS ===== */
.phone-instructions {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    color: var(--dutch-gold);
    font-size: 0.875rem;
    line-height: 1.4;
}

.phone-instructions small {
    color: var(--dutch-gold);
    font-weight: 500;
}

/* ===== IMPROVED BLOG LAYOUT ===== */
.blog-main-content {
    padding: 3rem 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Subscription Offer Container */
.subscription-offer-container {
    position: sticky;
    top: 120px;
    max-width: 100%;
    width: 100%;
}

.subscription-offer {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.offer-badge {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.offer-badge svg {
    width: 16px;
    height: 16px;
}

.offer-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.title-line-1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
}

.title-line-2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dutch-gold);
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.offer-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

.offer-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 2rem;
    flex: 1;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.offer-feature svg {
    color: var(--success-green);
    flex-shrink: 0;
}

.offer-pricing {
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.original-price {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: line-through;
}

.discount-price {
    color: var(--dutch-gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.offer-actions {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: 100%;
    justify-content: center;
}

.offer-guarantee {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.offer-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    margin-top: auto;
}

.offer-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dutch-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.featured-post {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-muted);
}

.featured-post-content {
    padding: 2rem;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.featured-category {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.featured-title {
    margin-bottom: 1rem;
}

.featured-title a {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.featured-excerpt {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-stats {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Blog Posts Container */
.blog-posts-container {
    min-height: 500px;
}

.blog-posts-header {
    margin-bottom: 3rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.header-text h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.header-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.header-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border-radius: var(--border-radius);
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dutch-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    padding: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.post-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.post-thumbnail:hover img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.post-card:hover .post-overlay {
    opacity: 1;
}

.post-category-badge {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-muted);
}

.post-content {
    padding: 1.5rem;
}

.entry-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.post-date,
.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.post-date svg,
.post-author svg {
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.entry-title {
    margin-bottom: 1rem;
}

.entry-title a {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.entry-summary {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.entry-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dutch-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
}

.read-more:hover {
    color: var(--bg-primary);
    background: var(--dutch-gold);
    transform: translateX(4px);
}

.read-more svg {
    transition: var(--transition-fast);
}

.read-more:hover svg {
    transform: translateX(2px);
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.reading-time svg {
    color: var(--dutch-gold);
}

.post-card-cta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 1rem;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dutch-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.cta-link:hover {
    color: #ffed4e;
    transform: translateX(2px);
}

.cta-link svg {
    transition: var(--transition-fast);
}

.cta-link:hover svg {
    transform: translateX(2px);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.newsletter-header {
    text-align: center;
}

.newsletter-icon {
    margin-bottom: 1.5rem;
    color: var(--dutch-gold);
    display: flex;
    justify-content: center;
}

.newsletter-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.newsletter-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.form-group input:focus {
    outline: none;
    border-color: var(--dutch-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
    line-height: 1.5;
}


/* Responsive Blog Layout */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subscription-offer-container {
        position: static;
    }
    
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 2rem 0 1.5rem 0;
    }
    
    .blog-hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .blog-hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    /* Hide desktop categories on mobile */
    .desktop-categories {
        display: none;
    }
    
    /* Show mobile dropdown */
    .mobile-category-dropdown {
        display: block;
        margin-bottom: 1rem;
    }
    
    .category-select {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .header-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-header {
        padding: 1rem 1rem 0 1rem;
    }
    
    .offer-content {
        padding: 1rem;
    }
    
    .offer-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .title-line-1 {
        font-size: 1.3rem;
    }
    
    .title-line-2 {
        font-size: 1.6rem;
    }
    
    .offer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-features {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-feature {
        font-size: 0.85rem;
    }
    
    .offer-actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .offer-footer {
        padding: 1rem;
    }
    
    .offer-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .post-content {
        padding: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .blog-hero-section {
        padding: 1.5rem 0 1rem 0;
    }
    
    .blog-layout {
        gap: 0;
        grid-template-columns: 1fr;
    }
    
    .subscription-offer-container {
        display: none;
    }
    
    .blog-posts-container {
        margin-top: 0;
    }
    
    .blog-hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .blog-hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .blog-categories {
        padding: 0 0.5rem 1rem 0.5rem;
        gap: 0.4rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .category-btn.active {
        padding: 0.6rem 1rem;
    }
}
    
    .cta-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .newsletter-content {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .newsletter-header h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group .btn {
        width: 100%;
        justify-content: center;
    }

/* Device Toggle - Theme Consistent */
.device-toggle-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.device-toggle {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px) saturate(150%);
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.toggle-switch {
    position: relative;
    width: 80px;
    height: 40px;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.toggle-switch.active {
    background: var(--dutch-gold);
    border-color: var(--dutch-gold);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 32px;
    height: 32px;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border-radius: 50%;
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(40px);
}


.pricing-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px) saturate(150%);
    transition: all var(--transition-normal);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--dutch-gold);
    box-shadow: var(--shadow-lg);
}

.pricing-card.gold-card {
    border: 2px solid var(--dutch-gold);
    box-shadow: 0 25px 50px rgba(255, 217, 0, 0.3);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffd700 100%);
    color: var(--bg-primary);
    margin-top: 0;
    padding-top: 3rem;
    position: relative;
}

.pricing-card.gold-card:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 217, 0, 0.4);
}

/* Hide the old badge */
.popular-badge {
    display: none;
}

.card-duration {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: inherit;
}

.pricing-card.gold-card .card-duration {
    color: var(--bg-primary);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-bonus {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.gold-card .card-bonus {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.card-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: inherit;
}

.pricing-card.gold-card .card-price {
    color: var(--bg-primary);
    font-size: 4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-connection {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-card.gold-card .card-connection {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.card-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.pricing-card.gold-card .card-features li {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-card.gold-card .card-features li::before {
    color: var(--bg-primary);
    font-weight: 900;
}

.buy-button {
    display: inline-block;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-primary);
    text-decoration: none;
    background: #ffed4e;
}

.pricing-card.gold-card .buy-button {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    font-weight: 800;
    border: 2px solid var(--dutch-gold);
    box-shadow: 0 4px 12px rgba(255, 217, 0, 0.3);
}

.pricing-card.gold-card .buy-button:hover {
    background: #ffed4e;
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 217, 0, 0.4);
}

/* Mobile Responsive for Pricing */
@media (max-width: 768px) {
    .device-toggle {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .card-price {
        font-size: 3rem;
    }
    
    .toggle-switch {
        width: 70px;
        height: 35px;
    }
    
    .toggle-slider {
        width: 28px;
        height: 28px;
    }
    
    .toggle-switch.active .toggle-slider {
        transform: translateX(35px);
    }
}

/* Product Page Styles */
.product-hero-section {
    padding: 2rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.product-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-breadcrumb a {
    color: var(--dutch-gold);
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-feature svg {
    color: var(--success-green);
    flex-shrink: 0;
}

/* Pricing Card Sidebar - Theme Consistent */
.pricing-card-sidebar {
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px) saturate(150%);
    text-align: center;
    position: sticky;
    top: 2rem;
}

.pricing-card-sidebar h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Screen Selector - Theme Consistent */
.screen-selector {
    margin-bottom: 2rem;
}

.screen-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.screen-option {
    width: 60px;
    height: 60px;
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
}

.screen-option:hover {
    border-color: var(--dutch-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.screen-option.active {
    background: var(--dutch-gold);
    border-color: var(--dutch-gold);
    color: var(--bg-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Bonus Display - Theme Consistent */
.bonus-display {
    margin-bottom: 2rem;
}

.bonus-display .card-bonus {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Price Display - Theme Consistent */
.price-display {
    margin-bottom: 2.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: all var(--transition-normal);
}

.price-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Subscribe Button - Theme Consistent */
.subscribe-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Elements - Theme Consistent */
.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--success-green);
    flex-shrink: 0;
}

/* Product Features Section */
.product-features-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.product-features-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(60px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    margin: 0 auto 1.5rem auto;
    color: var(--dutch-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Product Reviews Section */
.product-reviews-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.product-reviews-section .glass-card {
    padding: 3rem;
}

.product-reviews-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: var(--dutch-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer {
    color: var(--text-primary);
    font-weight: 600;
}

/* FAQ Section */
.product-faq-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.product-faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(60px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dutch-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Product Pages */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card-sidebar {
        position: static;
        order: -1;
        padding: 2rem 1.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .screen-options {
        gap: 0.75rem;
    }
    
    .screen-option {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .bonus-display .card-bonus {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .subscribe-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Checkout Page Styles */
.checkout-hero-section {
    padding: 2rem 0 4rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.checkout-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkout-breadcrumb a {
    color: var(--dutch-gold);
    text-decoration: none;
}

.checkout-breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.checkout-left h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.checkout-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Order Summary */
.order-summary {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.order-summary h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.item-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.bonus-badge {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.order-total {
    margin-top: 1.5rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.total-final {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 2px solid var(--dutch-gold);
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Payment Methods */
.payment-methods {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.payment-methods h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.payment-option {
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--glass-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    min-height: 120px;
    min-width: 140px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.payment-option:hover {
    border-color: var(--dutch-gold);
    transform: translateY(-2px);
}

.payment-option.selected {
    border-color: var(--dutch-gold);
    background: rgba(255, 217, 0, 0.1);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.payment-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.payment-info {
    display: flex;
    flex-direction: column;
}

.payment-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.payment-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Customer Information */
.customer-info {
    padding: 2.5rem;
}

.customer-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

/* Fast Checkout Form Styles */
.fast-checkout-form {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    padding: 0;
}

.single-field-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.single-field-row .form-group {
    width: 100%;
}

.phone-row {
    display: grid;
    grid-template-columns: 1fr auto 1.5fr;
    gap: 1.25rem;
    align-items: end;
    margin-bottom: 1rem;
}

.whatsapp-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.whatsapp-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: auto;
}

.payment-button-row {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.country-code-group {
    min-width: 140px;
}

.custom-country-group {
    min-width: 80px;
    max-width: 100px;
}

.custom-country-group input {
    text-align: center;
    font-family: monospace;
    font-weight: 600;
}

.phone-group {
    flex: 1;
}


.whatsapp-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-label:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #25D366;
}

.whatsapp-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.whatsapp-label input[type="checkbox"]:checked + .whatsapp-text {
    color: #25D366;
}

.whatsapp-label:has(input[type="checkbox"]:checked) {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
}

/* Form input styling */
.fast-checkout-form input,
.fast-checkout-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fast-checkout-form input:focus,
.fast-checkout-form select:focus {
    outline: none;
    border-color: var(--dutch-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.fast-checkout-form input:hover,
.fast-checkout-form select:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.fast-checkout-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.fast-checkout-form select {
    cursor: pointer;
}

.fast-checkout-form select option {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
}

/* Payment Methods Row */
.payment-methods-row {
    margin: 1rem 0;
}

.payment-methods-group h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.payment-methods-group .payment-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.payment-methods-group .payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    min-width: 140px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.payment-methods-group .payment-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-methods-group .payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-methods-group .payment-option:has(input[type="radio"]:checked) {
    background: rgba(255, 217, 0, 0.1);
    border-color: var(--dutch-gold);
}

.payment-methods-group .payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.payment-methods-group .payment-icon svg {
    width: 32px;
    height: 32px;
}

.payment-methods-group .payment-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Place Order Button */
.place-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffd700 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
    min-width: 280px;
}

.complete-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 0, 0.4);
    background: linear-gradient(135deg, #ffd700 0%, var(--dutch-gold) 100%);
}

.complete-payment-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
}

.complete-payment-btn svg {
    transition: transform 0.3s ease;
}

.complete-payment-btn:hover svg {
    transform: translateX(3px);
}

.payment-button-group {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 1rem;
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus {
    outline: none;
    border-color: var(--dutch-gold);
    box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.1);
}

.form-group input.error {
    border-color: #dc3232;
    box-shadow: 0 0 0 3px rgba(220, 50, 50, 0.1);
}

.error-message {
    color: #dc3232;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Checkout Summary */
.checkout-summary {
    padding: 2.5rem;
    position: sticky;
    top: 2rem;
}

.checkout-summary h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.summary-item.bonus {
    color: var(--dutch-gold);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 2px solid var(--dutch-gold);
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-guarantee {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-item svg {
    color: var(--success-green);
    flex-shrink: 0;
}

/* Mobile Responsive for Checkout */
@media (max-width: 480px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-summary {
        position: static;
        order: -1;
    }
    
    .checkout-left h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Fast checkout mobile responsive */
    .single-field-row {
        margin-bottom: 1rem;
    }
    
    .phone-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-row {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .whatsapp-group {
        min-width: auto;
        justify-content: center;
    }
    
    .whatsapp-label {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .country-code-group {
        min-width: auto;
    }
    
    .custom-country-group {
        min-width: auto;
        max-width: none;
    }
    
    .payment-methods-row {
        margin: 0.75rem 0;
    }
    
    .payment-methods-group .payment-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .payment-methods-group .payment-option {
        padding: 1rem;
        gap: 1rem;
        min-height: 120px;
    }
    
    .payment-methods-group .payment-icon {
        width: 40px;
        height: 40px;
    }
    
    .payment-methods-group .payment-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .payment-methods-group .payment-name {
        font-size: 0.85rem;
    }
    
    .place-order-btn {
        min-width: auto;
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .order-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .item-price {
        font-size: 1.3rem;
    }
    
    .payment-options {
        gap: 0.75rem;
    }
    
    .payment-option {
        padding: 1rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
        width: 40px;
    }
}

/* Blog Page Styles */
.blog-hero-section {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dutch-gold), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Categories */
.blog-categories-wrapper {
    margin-top: 2rem;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
    background: var(--dutch-gold);
    border-color: var(--dutch-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
}

.mobile-category-dropdown {
    display: none;
}

.category-select {
    width: 100%;
    max-width: 300px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

/* Blog Main Content */
.blog-main-content {
    padding: 2rem 0 4rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Subscription Offer */
.subscription-offer-container {
    position: sticky;
    top: 2rem;
}

.subscription-offer {
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 217, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.subscription-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dutch-gold), #ffed4e, var(--dutch-gold));
    animation: shimmer 3s ease-in-out infinite;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.offer-title {
    margin-bottom: 1rem;
}

.title-line-1 {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.title-line-2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dutch-gold);
    text-shadow: 0 0 20px rgba(255, 217, 0, 0.5);
}

.offer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-features {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.offer-feature svg {
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.offer-pricing {
    margin-bottom: 1.5rem;
}

.pricing-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.original-price {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dutch-gold);
}

.offer-actions {
    margin-bottom: 1.5rem;
}

.offer-guarantee {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.offer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.offer-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dutch-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Blog Posts */
.blog-posts-container {
    min-height: 500px;
}

.blog-posts-header {
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.header-text p {
    color: var(--text-secondary);
}

.header-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dutch-gold);
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--dutch-gold);
    box-shadow: 0 10px 30px rgba(255, 217, 0, 0.2);
}

.post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.post-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.post-category-badge {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.entry-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.entry-meta svg {
    width: 14px;
    height: 14px;
}

.entry-title {
    margin-bottom: 1rem;
}

.entry-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: var(--dutch-gold);
}

.entry-summary {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.entry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dutch-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.post-stats {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Post Card CTA */
.post-card-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--dutch-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    transform: translateX(3px);
}

/* Load More */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 217, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.newsletter-header {
    margin-bottom: 2rem;
}

.newsletter-icon {
    color: var(--dutch-gold);
    margin-bottom: 1rem;
}

.newsletter-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.newsletter-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--dutch-gold);
    box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.2);
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
}



.cta-guarantee {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.no-posts h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subscription-offer-container {
        position: static;
        order: -1;
    }
}

/* Small Mobile Blog Layout */
@media (max-width: 768px) {
    .blog-layout {
        gap: 0;
        grid-template-columns: 1fr;
    }
    
    .subscription-offer-container {
        display: none;
    }
    
    .blog-posts-container {
        margin-top: 0;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero-description {
        font-size: 1.1rem;
    }
    
    .blog-categories {
        display: none;
    }
    
    .mobile-category-dropdown {
        display: block;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-stats {
        justify-content: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .offer-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .subscription-offer {
        padding: 1.5rem;
    }
    
    .title-line-2 {
        font-size: 2rem;
    }
    
    .newsletter-content {
        padding: 2rem 1rem;
    }
    
}

/* Order Confirmation Page Styles */
.confirmation-hero-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    text-align: center;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.confirmation-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.confirmation-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Order Details */
.order-details {
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.order-details h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item.bonus {
    color: var(--dutch-gold);
    font-weight: 600;
}

.info-label {
    font-weight: 600;
    color: var(--text-primary);
}

.info-value {
    color: var(--text-secondary);
    font-weight: 500;
}

.info-item.bonus .info-value {
    color: var(--dutch-gold);
}

/* Next Steps */
.next-steps {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Support Info */
.support-info {
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.support-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.support-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
}

/* Confirmation Actions */
.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile Responsive for Confirmation */
@media (max-width: 768px) {
    .confirmation-content h1 {
        font-size: 2.5rem;
    }
    
    .confirmation-description {
        font-size: 1.1rem;
    }
    
    .order-details,
    .next-steps,
    .support-info {
        padding: 2rem 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .support-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Enhanced Pricing Page Styles */
.pricing-hero-section {
    padding: 4rem 0 6rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    text-align: center;
}

.pricing-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.pricing-hero-content .highlight {
    color: var(--dutch-gold);
}

.pricing-hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dutch-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Device Selection Hero Section */
.device-selection-hero-section {
    padding: 6rem 0 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.device-selection-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.device-selection-hero-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.device-selection-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 217, 0, 0.1);
    border: 1px solid rgba(255, 217, 0, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dutch-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.device-selection-hero-content .hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--dutch-gold);
}

.device-selection-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.device-selection-hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.device-selection-hero-content .hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* Device Selection Section */
.device-selection-section {
    padding: 2rem 0 4rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.device-selection-content {
    padding: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* New Device Selection Section - Wide Layout */
.device-selection-content {
    text-align: center;
    width: 100%;
    padding: 3rem 2rem;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced responsive grid for device selection */
@media (min-width: 1400px) {
    .device-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .device-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
        max-width: 1000px;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .device-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 900px;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .device-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 700px;
    }
}

.device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

/* Enhanced device card styling for better visual appeal */
.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.05) 0%, rgba(255, 217, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.device-card:hover {
    border-color: rgba(255, 217, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 217, 0, 0.15);
}

.device-card.selected {
    background: rgba(255, 217, 0, 0.1);
    border-color: var(--dutch-gold);
    box-shadow: 0 10px 30px rgba(255, 217, 0, 0.25);
    transform: translateY(-5px);
}

.device-card.selected::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.1) 0%, rgba(255, 217, 0, 0.05) 100%);
}


.device-card.selected {
    background: rgba(255, 217, 0, 0.1);
    border-color: var(--dutch-gold);
    box-shadow: 0 10px 30px rgba(255, 217, 0, 0.25);
    transform: translateY(-3px);
}

.device-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dutch-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 217, 0, 0.4);
}

.device-card:hover .device-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 217, 0, 0.4);
}

.device-card.selected .device-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 217, 0, 0.5);
}

.device-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg-primary);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.selection-summary {
    background: rgba(255, 217, 0, 0.1);
    border: 2px solid rgba(255, 217, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.summary-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.summary-count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dutch-gold);
}

.summary-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-description {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Selected Device Banner - Minimal */
.selected-device-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.device-count-large {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dutch-gold);
    line-height: 1;
}

.device-label-large {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.change-devices-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-devices-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--dutch-gold);
    color: var(--dutch-gold);
}

.change-devices-btn svg {
    width: 14px;
    height: 14px;
}

/* Premium Plan Bonus Label - Stylish Ribbon Design */
.premium-plan-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.premium-bonus-label {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    z-index: 10;
    white-space: nowrap;
    border-radius: 8px;
    transform: rotate(5deg);
}


.premium-bonus-label:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Premium card styling - clean and consistent */
.premium-plan-container .pricing-card {
    background: linear-gradient(135deg, rgba(255, 217, 0, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 2px solid var(--dutch-gold);
    box-shadow: 0 8px 32px rgba(255, 217, 0, 0.2);
    position: relative;
    overflow: visible;
}

.premium-plan-container .card-duration {
    margin-bottom: 0.5rem;
    color: var(--dutch-gold);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255, 217, 0, 0.3);
}

.premium-plan-container .card-price {
    margin-bottom: 0.5rem;
    color: var(--dutch-gold);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(255, 217, 0, 0.3);
    position: relative;
}

.premium-plan-container .card-connection {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.premium-plan-container .card-features {
    margin-bottom: 1.5rem;
}

.premium-plan-container .card-features li {
    color: var(--text-primary);
}

.premium-plan-container .card-features li::before {
    color: var(--dutch-gold);
}

.premium-plan-container .buy-button {
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffd700 100%);
    color: var(--bg-primary);
    border: 2px solid var(--dutch-gold);
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(255, 217, 0, 0.4);
    transition: all 0.3s ease;
}

.premium-plan-container .buy-button:hover {
    background: linear-gradient(135deg, #ffd700 0%, var(--dutch-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 0, 0.5);
    color: var(--bg-primary);
}

/* Desktop Pricing Cards Layout - Equal Width */
@media (min-width: 769px) {
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        align-items: stretch;
        max-width: 1200px;
        margin: 0 auto;
        /* Mobile touch scrolling support */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: contain;
    }
    
    .pricing-card {
        display: flex;
        flex-direction: column;
        padding: 1.2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .premium-plan-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        order: 2;
    }
    
    .premium-plan-container .pricing-card {
        display: flex;
        flex-direction: column;
        padding: 1.2rem;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        transform: scale(1.05);
    }
    
    /* Order: 6-month, 12-month (premium), 3-month */
    .pricing-card[data-plan="6_months"] {
        order: 1;
    }
    
    .pricing-card[data-plan="3_months"] {
        order: 3;
    }
}

/* Tablet Responsive - Maintain Grid Layout */
@media (min-width: 481px) and (max-width: 768px) {
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 1rem;
        /* Mobile touch scrolling support */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: contain;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .premium-plan-container .pricing-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
}

/* Clean Buy Buttons - Fixed Glass Effect */
.buy-button {
    background: var(--dutch-gold);
    color: var(--bg-primary);
    border: 2px solid var(--dutch-gold);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: 100%;
}

.buy-button:hover {
    background: #ffed4e;
    border-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 0, 0.4);
    color: var(--bg-primary);
    text-decoration: none;
}

.buy-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
}

/* Card Offer Styling */
.card-offer {
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffd700 100%);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 217, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.device-selection-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.device-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.device-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Device Funnel Styles */
.device-funnel {
    margin-top: 2rem;
}

.funnel-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px) saturate(150%);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Device Selector */
.device-selector {
    margin-bottom: 2rem;
}

.selector-wrapper {
    position: relative;
    max-width: 400px;
}

.device-dropdown {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.device-dropdown:focus {
    outline: none;
    border-color: var(--dutch-gold);
    box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.1);
}

.selector-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dutch-gold);
    pointer-events: none;
}

/* Selected Device Info */
.selected-device-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 217, 0, 0.05);
    border: 1px solid rgba(255, 217, 0, 0.2);
    border-radius: var(--border-radius);
}

.device-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.device-icon-large {
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.device-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dutch-gold);
    line-height: 1;
}

.count-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.device-description {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Pricing Section - Duplicate rule removed to prevent conflicts */

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-header .section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 3rem;
    text-align: center;
}

.pricing-comparison h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.comparison-item {
    text-align: center;
}

.comparison-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    background: transparent;
    color: var(--dutch-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-sizing: border-box;
    flex-shrink: 0;
}

.comparison-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.comparison-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}


.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.features-header .section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px) saturate(150%);
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--dutch-gold);
    box-shadow: 0 20px 40px rgba(255, 217, 0, 0.1);
}

.feature-icon {
    color: var(--dutch-gold);
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-header .section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px) saturate(150%);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dutch-gold);
    transition: transform var(--transition-normal);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.trust-content {
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.trust-icon {
    color: var(--dutch-gold);
    flex-shrink: 0;
}

.trust-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.trust-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile Responsive for Enhanced Pricing */
@media (max-width: 480px) {
    .pricing-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .device-selection-hero-section {
        padding: 4rem 0 2rem 0;
    }
    
    .device-selection-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .device-selection-hero-content .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    
    .device-selection-content {
        padding: 2rem 1rem;
    }
    
    .device-options-row {
        gap: 0.8rem;
        padding: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .device-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .selection-summary {
        padding: 1.5rem;
        margin-top: 1rem;
        max-width: 600px;
    }
    
    .summary-count {
        font-size: 2rem;
    }
    
    .summary-label {
        font-size: 1.1rem;
    }
    
    .summary-description {
        font-size: 0.9rem;
    }
    
    
    .summary-count {
        font-size: 2rem;
    }
    
    .summary-label {
        font-size: 1.1rem;
    }
    
    .summary-description {
        font-size: 0.9rem;
    }
    
    .device-question {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .device-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    
    .device-option .device-count-display {
        width: 50px;
        height: 50px;
    }
    
    .device-option .device-number {
        font-size: 1.3rem;
    }
    
    .device-option .device-count {
        font-size: 0.9rem;
    }
    
    .selected-device-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .selected-device-info .selected-count {
        font-size: 2rem;
    }
    
    .selected-device-banner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .device-count-large {
        font-size: 1.1rem;
    }
    
    .device-label-large {
        font-size: 0.85rem;
    }
    
    .change-devices-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        align-self: center;
    }
    
    .premium-plan-container {
        margin-top: 0;
    }
    
    .premium-bonus-label {
        font-size: 0.6rem;
        padding: 0.5rem 1.2rem;
        top: -20px;
        right: -12px;
        letter-spacing: 0.6px;
        transform: rotate(12deg);
    }
    
    .premium-plan-container .pricing-card {
        padding: 1.2rem;
    }
    
    .premium-plan-container .card-duration {
        margin-bottom: 0.3rem;
    }
    
    .premium-plan-container .card-price {
        margin-bottom: 0.3rem;
    }
    
    .premium-plan-container .card-connection {
        margin-bottom: 0.8rem;
    }
    
    .premium-plan-container .card-features {
        margin-bottom: 1.2rem;
    }
    
    /* Mobile Responsive Pricing Cards - Premium First */
    .pricing-cards {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem;
        /* Fix mobile touch scrolling */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: contain;
        /* Ensure smooth scrolling on mobile */
        scroll-behavior: smooth;
        /* Prevent scroll chaining issues */
        overscroll-behavior-y: contain;
    }
    
    /* Ensure pricing cards don't interfere with touch scrolling */
    .pricing-cards * {
        touch-action: pan-y;
    }
    
    .premium-plan-container {
        order: 1;
    }
    
    .pricing-card[data-plan="6_months"] {
        order: 2;
    }
    
    .pricing-card[data-plan="3_months"] {
        order: 3;
    }
    
    .pricing-card {
        width: 100%;
        margin: 0;
        padding: 1rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .premium-plan-container {
        width: 100%;
        margin: 0;
    }
    
    .premium-plan-container .pricing-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .card-duration {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .card-price {
        font-size: 2.2rem;
        margin-bottom: 0.4rem;
    }
    
    .card-connection {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .card-features {
        margin-bottom: 1.2rem;
    }
    
    .card-features li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .device-selection-content {
        padding: 2rem 1.5rem;
    }
    
    .buy-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .card-offer {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.4rem 0;
    }
    
    .funnel-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .selector-wrapper {
        max-width: 100%;
    }
    
    .device-dropdown {
        padding: 1rem 2.5rem 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .selected-device-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .device-preview {
        justify-content: center;
    }
    
    .count-number {
        font-size: 1.8rem;
    }
    
    .device-description {
        font-size: 1rem;
    }
    
    .pricing-header h2,
    .features-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-feature {
        text-align: center;
        flex-direction: column;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    /* Mobile responsive for new elements */
    .pricing-header-top {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .back-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .selected-device-summary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .device-selection-actions .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Mobile responsive for compact device selection */
    .device-selection-header h2 {
        font-size: 1.5rem;
    }
    
    .device-selection-header .device-description {
        font-size: 0.9rem;
    }
    
    .device-selector-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .device-preview-compact {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
    
    .device-dropdown {
        padding: 0.875rem 2rem 0.875rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .selector-icon {
        right: 0.5rem;
    }
    
    .count-number {
        font-size: 1.3rem;
    }
    
    .count-label {
        font-size: 0.75rem;
    }
    
    .device-description-compact {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .device-selection-compact .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Mobile responsive for checkout device selection */
    .device-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .device-option {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .device-option .device-count {
        font-size: 0.9rem;
    }
    
    .device-option .device-price {
        font-size: 1rem;
    }
    
    .total-months {
        font-size: 0.9rem;
    }
    
    .bonus-explanation {
        font-size: 0.75rem;
    }
    
    /* Mobile responsive for device count display */
    .device-option .device-count-display {
        min-width: 50px;
        height: 50px;
    }
    
    .device-option .device-number {
        font-size: 1.5rem;
    }
    
    /* Mobile section spacing */
    .pricing-section {
        padding: 1rem 0;
    }
    
    .pricing-header {
        margin-bottom: 1rem;
    }
}

/* Compact Device Selection */
.device-selection-header {
    text-align: center;
    margin-bottom: 2rem;
}

.device-selection-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.device-selection-header .device-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.device-selection-compact {
    max-width: 500px;
    margin: 0 auto;
}

.device-selector-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.selector-wrapper {
    flex: 1;
    position: relative;
}

.device-dropdown {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.device-dropdown:focus {
    outline: none;
    border-color: var(--dutch-gold);
    box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.1);
}

.selector-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dutch-gold);
    pointer-events: none;
}

.device-preview-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 217, 0, 0.1);
    border: 1px solid rgba(255, 217, 0, 0.2);
    border-radius: 10px;
    min-width: 120px;
}

.device-icon-small {
    color: var(--dutch-gold);
}

.device-count-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.count-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.device-description-compact {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.device-selection-compact .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.device-selection-compact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Pricing Header Top */
.pricing-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--dutch-gold);
    color: var(--dutch-gold);
    transform: translateY(-1px);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-2px);
}

/* Selected Device Summary */
.selected-device-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffd700 100%);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
}

.device-count-display {
    font-size: 1.2rem;
    font-weight: 800;
}

.device-label-display {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Checkout Device Selection */
.device-selection {
    margin-bottom: 2rem;
}

.device-selection h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.device-selection-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.device-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.device-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--dutch-gold);
    transform: translateY(-2px);
}

.device-option.selected {
    background: rgba(255, 217, 0, 0.1);
    border-color: var(--dutch-gold);
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.2);
}

.device-option .device-count-display {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, #ffd700 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.3);
}

.device-option .device-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.device-option .device-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.device-option .device-count {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.device-option .device-price {
    font-weight: 700;
    color: var(--dutch-gold);
    font-size: 1.1rem;
}

/* Total Months Info */
.total-months-info {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 217, 0, 0.1);
    border: 1px solid rgba(255, 217, 0, 0.2);
    border-radius: 8px;
}

.total-months {
    display: block;
    font-weight: 700;
    color: var(--dutch-gold);
    font-size: 1rem;
}

.bonus-explanation {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}
/* ===== NEW FAST CHECKOUT PAGE STYLES ===== */

/* Mobile Header */
.mobile-header {
    display: none;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-header .back-btn {
    color: var(--dutch-gold);
    text-decoration: none;
    font-weight: 600;
    margin-right: 1rem;
}

.mobile-header h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: inline;
}

/* Desktop Header */
.desktop-header {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    padding: 2rem 0 1rem;
    text-align: center;
}

.desktop-header .breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.desktop-header .breadcrumb a {
    color: var(--dutch-gold);
    text-decoration: none;
}

.desktop-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.desktop-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Sticky Order Bar (Mobile) */
.sticky-order-bar {
    display: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    position: sticky;
    top: 60px;
    z-index: 99;
    backdrop-filter: blur(10px);
}

.sticky-order-bar .order-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sticky-order-bar .plan-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.sticky-order-bar .device-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sticky-order-bar .order-price {
    font-weight: 700;
    color: var(--dutch-gold);
    font-size: 1.1rem;
}


/* Main Checkout Form Container */
.checkout-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem 150px 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Selected Plan Section */
.selected-plan-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.selected-plan-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selected-plan-section .plan-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-plan-section .plan-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.selected-plan-section .plan-name {
    font-weight: 600;
    color: var(--text-primary);
}

.selected-plan-section .plan-price {
    color: var(--dutch-gold);
    font-weight: 600;
}

.selected-plan-section .edit-btn {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    border: 1px solid var(--dutch-gold);
    color: var(--dutch-gold);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.selected-plan-section .edit-btn:hover {
    background: var(--dutch-gold);
    color: var(--bg-primary);
}

/* Device Selector Section */
.device-selector-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.device-selector-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.device-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}


.device-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 80px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.device-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--dutch-gold);
}

.device-btn.active {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--dutch-gold);
    transform: scale(1.05);
}

.device-btn .device-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    text-align: center;
}

.device-btn .device-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dutch-gold);
    line-height: 1.2;
    text-align: center;
}

.device-btn .device-bonus {
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
    color: #00a32a;
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.device-summary {
    text-align: center;
}

.device-summary .current-selection {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.device-summary .total-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dutch-gold);
    margin-bottom: 0.5rem;
}

.device-summary .bonus-display {
    font-weight: 700;
    color: var(--dutch-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

/* Contact Section - Container Specifications */
.contact-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Form Header */
.contact-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

/* Form Layout */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Standard Input Fields */
.form-group input,
.form-group select {
    height: 48px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--dutch-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.1);
}

.form-group input:hover,
.form-group select:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

/* Form rows removed - using full width fields */

/* Country Selection - Grid Layout */
.country-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 71px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.country-btn {
    height: 48px;
    width: 100%;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-right: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    position: relative;
}

.country-btn:last-child {
    border-right: none;
}

.country-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.country-btn.active {
    background: #6366f1;
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.country-btn.active .country-name {
    color: white;
    font-weight: 600;
}

.country-btn.active .country-flag {
    filter: brightness(1.2);
}

.country-flag {
    font-size: 20px;
    line-height: 1;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
}

.country-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

/* Custom Country Input */
#customCountryGroup {
    margin-top: 8px;
}

#customCountryGroup input {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--dutch-gold);
    height: 48px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
}

/* Error States */
.form-group input.error,
.form-group select.error,
.phone-input-group.error,
.whatsapp-group.error {
    border-color: #dc3232;
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.1);
}

.error-message {
    color: #dc3232;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* Disabled States */
.form-group input:disabled,
.form-group select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive Behavior */
@media (max-width: 480px) {
    .contact-section {
        padding: 16px;
        width: 100%;
    }
    
    .checkout-form {
        gap: 16px;
    }
    
    .contact-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        height: 44px;
        padding: 0 12px;
        font-size: 15px;
    }
    
    .country-buttons {
        gap: 6px;
    }
    
    .country-btn {
        padding: 10px 4px;
        height: 63px;
        max-width: calc(33.333% - 4px);
    }
    
    .country-flag {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .country-name {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .phone-input-group {
        height: 44px;
    }
    
    .phone-input-group input {
        height: 44px;
        padding: 0 12px;
        font-size: 15px;
    }
    
    .country-code {
        width: 55px;
        height: 44px;
        font-size: 13px;
        line-height: 44px;
    }
    
    .whatsapp-group {
        height: 44px;
        padding: 12px 12px;
    }
    
    .whatsapp-checkbox-label {
        padding-left: 28px;
        line-height: 18px;
    }
    
    .whatsapp-text {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
        flex-shrink: 1;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-section h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .country-name {
        font-size: 12px;
    }
    
    .country-flag {
        font-size: 18px;
        margin-right: 4px;
    }
    
    .country-btn {
        padding: 12px 4px;
    }
}


/* Contact Section - Completely Rebuilt */
.contact-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

.contact-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.checkout-form {
    display: block;
}

.form-group {
    display: block;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    border-color: var(--dutch-gold);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Country Buttons - Fixed Dimensions */
.country-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.country-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    height: 68px;
    min-width: 0;
    max-width: calc(33.333% - 6px);
}

.country-btn:hover {
    border-color: var(--dutch-gold);
    background: rgba(255, 193, 7, 0.1);
}

.country-btn.active {
    border-color: var(--dutch-gold);
    background: rgba(255, 193, 7, 0.15);
    color: var(--dutch-gold);
}

.country-flag {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 1;
    display: block;
}

.country-name {
    font-weight: 600;
    font-size: 11px;
    line-height: 1.3;
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Phone Input Group - Ultra Simple */
.phone-input-group {
    display: table;
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-sizing: border-box;
}

.phone-input-group:focus-within {
    border-color: var(--dutch-gold);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.1);
}

.country-code {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--dutch-gold);
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 48px;
    line-height: 48px;
}

.phone-input-group input {
    display: table-cell;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    vertical-align: middle;
}

/* WhatsApp Group - Ultra Simple */
.whatsapp-group {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.whatsapp-group:hover {
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}

.whatsapp-checkbox-label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    line-height: 20px;
}

.whatsapp-checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.whatsapp-checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #25D366;
    border-color: #25D366;
}

.whatsapp-checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.whatsapp-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.whatsapp-text {
    display: inline-block;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
}

.whatsapp-icon path {
    fill: #25D366;
}

/* Payment Section */
.payment-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem 2rem 3rem 2rem;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.payment-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--dutch-gold);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option:has(input[type="radio"]:checked) {
	background: rgba(255, 193, 7, 0.1);
	border-color: var(--dutch-gold);
}

/* Payment validation error styling - removed frame around payment options */

.payment-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.payment-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.bank-selector {
    display: none;
}

.bank-selector select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Terms Section */
.terms-section {
    text-align: center;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--dutch-gold);
}

/* Trust Features */
.trust-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Sticky Bottom Payment Button */
.sticky-payment-button {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bg-primary);
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 217, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 81, 165, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 217, 0, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	border-top: 1px solid var(--glass-border);
	padding: 1rem;
	z-index: 999; /* Lower than header but still above content */
	transition: transform 0.3s ease-in-out; /* Match header transition */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.payment-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--dutch-gold) 0%, var(--dutch-gold-dark) 100%);
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
    animation: waveGlass 2.5s infinite;
}

@keyframes waveGlass {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.payment-btn:hover::before {
    animation-duration: 1.5s;
}

.payment-btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.payment-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.payment-btn-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.payment-btn-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }
    
    .desktop-header {
        display: none;
    }
    
    .sticky-order-bar {
        display: block;
    }
    
    .checkout-form-container {
        padding: 0 1rem;
        padding-bottom: 150px; /* Space for sticky button */
    }
    
    .device-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .device-btn {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        min-height: 60px;
        border-radius: 12px;
        text-align: left;
        width: 100%;
    }
    
    .device-btn .device-number {
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1;
    }
    
    .device-btn .device-price {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1;
    }
    
    /* All fields now use full width */
    
    .country-buttons {
        gap: 0.5rem;
    }
    
    .country-btn {
        height: 65px;
        padding: 0.5rem 0.25rem;
    }
    
    .country-flag {
        font-size: 1.2rem;
    }
    
    .country-name {
        font-size: 0.75rem;
    }
    
    .payment-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .payment-option {
        padding: 0.75rem 0.5rem;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-features {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .checkout-form-container {
        padding: 0 0.75rem;
        padding-bottom: 150px;
    }
    
    .selected-plan-section {
        padding: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .payment-section {
        padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    }
    
    .device-selector-section,
    .contact-section {
        padding: 1.5rem;
    }
    
    
    .device-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .device-btn {
        padding: 1rem 1.25rem;
        min-height: 55px;
    }
    
    .device-btn .device-number {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .device-btn .device-price {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .payment-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .device-summary .current-selection {
        font-size: 0.9rem;
    }
    
    .device-summary .total-price {
        font-size: 1rem;
    }
    
    .device-summary .bonus-display {
        font-size: 0.8rem;
        padding: 0.375rem 0.5rem;
    }
}

/* ===== BLOG PAGE STYLES ===== */

/* ===== MOBILE-FIRST BLOG RESPONSIVE FIX ===== */
@media (max-width: 768px) {
    /* Fix Posts Grid - Make it single column and properly contained */
    .posts-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
    
    .post-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Hide Promotional Section on Mobile */
    .subscription-offer-container {
        display: none !important;
    }
    
    .subscription-offer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }
    
    /* Fix Laatste Berichten Header - Make it responsive */
    .blog-posts-header {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 2rem 0 !important;
        padding: 0 16px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    .header-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .header-text {
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .header-stats {
        display: flex !important;
        justify-content: center !important;
        gap: 2rem !important;
        width: 100% !important;
    }
    
    /* Fix Blog Layout Container */
    .blog-layout {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Fix Blog Posts Container */
    .blog-posts-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
}

/* ===== SAFE CHECKOUT BADGE COMPONENT ===== */
.safe-checkout-badge {
    margin: 0 auto;
    max-width: 800px;
}

.safe-checkout-badge {
    padding: 0 !important;
}

.safe-checkout-badge .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.safe-checkout-content {
    text-align: center;
    padding: 50px 1.5rem;
}

/* Security Icon */
.security-icon {
    margin-bottom: 1rem;
}

.security-icon svg {
    width: 32px;
    height: 32px;
    color: var(--dutch-gold);
    stroke-width: 2.5;
}

/* Heading */
.safe-checkout-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Payment Logos */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 40px;
    padding: 0.5rem;
    transition: all var(--transition-fast);
}

.payment-logo:hover {
    transform: translateY(-2px);
}

.payment-logo img {
    max-width: 100%;
    height: auto;
    filter: brightness(0.9);
    transition: filter var(--transition-fast);
}

.payment-logo:hover img {
    filter: brightness(1);
}

/* Security Message */
.security-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (640px - 1024px) */
@media (min-width: 640px) {
    .safe-checkout-badge {
        margin: 0 auto;
    }
    
    .safe-checkout-content {
        padding: 50px 2rem;
    }
    
    .security-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .safe-checkout-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .payment-logos {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-logo {
        min-width: 70px;
        min-height: 50px;
        padding: 0.75rem;
    }
    
    .security-message {
        font-size: 1rem;
    }
}

/* Desktop (> 1024px) */
@media (min-width: 1024px) {
    .safe-checkout-badge {
        margin: 0 auto;
        max-width: 900px;
    }
    
    .safe-checkout-content {
        padding: 50px 2.5rem;
    }
    
    .security-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .safe-checkout-heading {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .payment-logos {
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .payment-logo {
        min-width: 80px;
        min-height: 60px;
        padding: 1rem;
    }
    
    .security-message {
        font-size: 1.1rem;
    }
}

/* Mobile adjustments for better touch targets */
@media (max-width: 639px) {
    .payment-logos {
        gap: 1rem;
        justify-content: space-around;
    }
    
    .payment-logo {
        min-width: 50px;
        min-height: 35px;
        padding: 0.4rem;
        /* Ensure touch targets are at least 44x44px */
        min-width: 44px;
        min-height: 44px;
    }
    
    .safe-checkout-heading {
        font-size: 1.2rem;
    }
    
    .safe-checkout-content {
        padding: 50px 1rem;
    }
}


/* Enhanced Reviews Section Styles */
.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stars {
    font-size: 1.5rem;
    color: var(--dutch-gold);
}

.rating-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--dutch-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-rating {
    color: var(--dutch-gold);
    font-size: 1.2rem;
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reviewer-info {
        gap: 0.75rem;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-header h2 {
        font-size: 1.75rem;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .reviewer-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .reviewer-name {
        font-size: 0.95rem;
    }
    
    .review-date {
        font-size: 0.85rem;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
}
