/* ===================================
   AQUAPERL.PL - MODERN DESIGN
   =================================== */

/* CSS Variables */
:root {
	--primary: #0ea5e9;
	--primary-dark: #0284c7;
	--primary-light: #38bdf8;
	--secondary: #10b981;
	--secondary-dark: #059669;
	--accent: #f59e0b;
	--accent-dark: #d97706;

	--text-dark: #0f172a;
	--text-gray: #475569;
	--text-light: #64748b;

	--bg-white: #ffffff;
	--bg-light: #f8fafc;
	--bg-gray: #f1f5f9;

	--border-light: #e2e8f0;
	--border-gray: #cbd5e1;

	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;

	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--bg-white);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
}

.logo-icon {
	font-size: 2rem;
}

.logo-text {
	font-family: 'Poppins', sans-serif;
}

.logo-accent {
	color: var(--primary);
}

.mobile-only {
	display: none;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.nav-link {
	font-weight: 500;
	color: var(--text-gray);
	position: relative;
	padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary);
}

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

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

.nav-link-cta {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white !important;
	padding: 0.625rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
}

.nav-link-cta::after {
	display: none;
}

.nav-link-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	z-index: -2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
		rgba(14, 165, 233, 0.92) 0%,
		rgba(16, 185, 129, 0.88) 100%);
	z-index: -1;
}

.hero-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../images/img_bg_1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	z-index: 1;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	color: white;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.625rem 1.5rem;
	border-radius: 50px;
	font-size: 0.9375rem;
	font-weight: 600;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	animation: fadeInDown 0.8s ease-out;
}

.hero-badge svg {
	opacity: 0.9;
}

.hero-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-main {
	display: block;
	font-size: clamp(3rem, 8vw, 4.5rem);
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-accent {
	display: block;
	font-size: clamp(1.75rem, 5vw, 3rem);
	background: linear-gradient(90deg, #fbbf24, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-top: 0.5rem;
	min-height: 3.5rem;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-description {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	margin-bottom: 2.5rem;
	opacity: 0.95;
	font-weight: 400;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Stats */
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 1.5rem 1rem;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition);
}

.stat-card:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
}

.stat-number {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9375rem;
	opacity: 0.9;
	font-weight: 500;
}

/* Hero Actions */
.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-hero-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: white;
	color: var(--primary);
	padding: 1.125rem 2.5rem;
	border-radius: 50px;
	font-size: 1.125rem;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: var(--transition);
}

.btn-hero-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	background: var(--accent);
	color: white;
}

.btn-hero-primary svg {
	width: 20px;
	height: 20px;
}

.btn-hero-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
	padding: 1.125rem 2.5rem;
	border-radius: 50px;
	font-size: 1.125rem;
	font-weight: 600;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: var(--transition);
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

.btn-hero-secondary svg {
	width: 18px;
	height: 18px;
}

/* Hero Features */
.hero-features {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 1s both;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	font-weight: 500;
	opacity: 0.95;
}

.feature-item svg {
	width: 20px;
	height: 20px;
	color: var(--accent);
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	cursor: pointer;
	opacity: 0.8;
}

.scroll-indicator svg {
	width: 32px;
	height: 32px;
	color: white;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

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

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

.result-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition);
}

.result-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.2);
}

.result-card.highlight {
	background: rgba(245, 158, 11, 0.25);
	border: 2px solid var(--accent);
}

.result-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.result-card p {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.result-subtitle {
	font-size: 0.875rem;
	opacity: 0.9;
}

.result-highlight {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: var(--accent);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: white;
	color: var(--primary);
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1.125rem;
	font-weight: 600;
	box-shadow: var(--shadow-xl);
	transition: var(--transition);
}

.hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-icon {
	width: 24px;
	height: 24px;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products {
	padding: 100px 0;
	background: var(--bg-light);
}

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

.section-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-gray);
	margin-top: 1.5rem;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.product-card {
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

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

.product-image {
	position: relative;
	height: 280px;
	overflow: hidden;
	background: var(--bg-gray);
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	/* transform: scale(1.1); */ /* Disabled zoom effect */
}

.product-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: var(--shadow-md);
}

.product-badge.eco {
	background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.product-badge.medical {
	background: linear-gradient(135deg, #ef4444, #dc2626);
}

.product-badge.secure {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.product-content {
	padding: 2rem;
}

.product-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.product-description {
	color: var(--text-gray);
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.product-features {
	list-style: none;
}

.product-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0;
	color: var(--text-gray);
	font-size: 0.9375rem;
	border-bottom: 1px solid var(--border-light);
}

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

.check-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--secondary);
	margin-top: 2px;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
	position: relative;
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	overflow: hidden;
}

.benefits-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.5;
}

.benefits-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.benefits-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	margin-bottom: 4rem;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2.5rem 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition);
}

.benefit-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.15);
}

.benefit-icon-lg {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.benefit-icon-lg svg {
	width: 100%;
	height: 100%;
}

.benefit-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.benefit-card p {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.95;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
	padding: 80px 0;
	background: var(--bg-white);
}

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

.cta-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.cta-description {
	font-size: 1.25rem;
	color: var(--text-gray);
	margin-bottom: 2.5rem;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	padding: 1.25rem 3rem;
	border-radius: 50px;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: var(--shadow-xl);
	transition: var(--transition);
}

.cta-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.cta-button-icon {
	width: 28px;
	height: 28px;
}

/* ===================================
   FIXED CONTACT BUTTON
   =================================== */
.fixed-contact {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 999;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
	color: white;
	padding: 1rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	box-shadow: var(--shadow-xl);
	transition: var(--transition);
}

.fixed-contact:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.fixed-contact svg {
	width: 24px;
	height: 24px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	color: white;
	padding: 4rem 0 2rem;
}

.footer-content {
	text-align: center;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.footer-info {
	margin-bottom: 2rem;
}

.footer-tagline {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.95);
}

.footer-savings {
	font-size: 1rem;
	color: var(--accent);
	font-weight: 600;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin: 2.5rem 0;
	padding: 2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--primary-light);
}

.footer-bottom {
	margin-top: 2rem;
}

.copyright {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.5rem;
}

.designed-by {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

.designed-by a {
	color: var(--primary-light);
	font-weight: 600;
}

.designed-by a:hover {
	color: var(--accent);
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
	position: fixed;
	right: 2rem;
	bottom: 6rem;
	width: 48px;
	height: 48px;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(10px);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 998;
	box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--primary);
	transform: translateY(-4px);
}

.back-to-top svg {
	width: 24px;
	height: 24px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	max-width: 360px;
	background: white;
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	z-index: 9999;
	border: 2px solid var(--primary);
	animation: slideInLeft 0.4s ease-out;
}

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

.cookie-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cookie-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-dark);
	margin: 0;
}

.cookie-text strong {
	font-size: 1.125rem;
	color: var(--primary);
	display: block;
	margin-bottom: 0.25rem;
}

.cookie-buttons {
	display: flex;
	gap: 0.75rem;
}

.cookie-btn {
	flex: 1;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: var(--transition);
}

.cookie-accept {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
}

.cookie-accept:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.cookie-decline {
	background: var(--bg-light);
	color: var(--text-gray);
}

.cookie-decline:hover {
	background: var(--bg-gray);
}

.cookie-badge {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	width: 50px;
	height: 50px;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 50%;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--shadow-lg);
	z-index: 9998;
	transition: var(--transition);
}

.cookie-badge:hover {
	transform: scale(1.1) rotate(10deg);
	box-shadow: var(--shadow-xl);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1000px) {
	.cookie-consent {
		left: 1rem;
		right: 1rem;
		max-width: calc(100% - 2rem);
		bottom: 1rem;
	}

	.mobile-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
		padding: 2rem 0 140px 0;
		box-shadow: var(--shadow-lg);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		z-index: 999;
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.nav-link {
		padding: 0.75rem 2rem;
		width: auto;
		font-size: 1.5rem;
		text-align: center;
	}

	.nav-link::after {
		display: none;
	}

	.mobile-only {
		display: block;
	}

	.nav-link-cta {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.75rem;
		text-align: center;
		padding: 1.5rem 2rem;
		border-radius: 0;
		z-index: 1000;
		font-size: 1.25rem;
		font-weight: 700;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	}

	.nav-link-cta svg {
		width: 24px;
		height: 24px;
		flex-shrink: 0;
	}

	.hero {
		min-height: auto;
		padding: 100px 0 60px;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

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

	.hero-features {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.scroll-indicator {
		display: none;
	}

	.products {
		padding: 60px 0;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.benefits-section {
		padding: 60px 0;
	}

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

	.cta-section {
		padding: 60px 0;
	}

	.fixed-contact {
		right: 1rem;
		bottom: 1rem;
		padding: 0.875rem 1.25rem;
		font-size: 0.9375rem;
	}

	.contact-text {
		display: none;
	}

	.back-to-top {
		right: 1rem;
		bottom: 5rem;
		width: 44px;
		height: 44px;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.product-card {
		border-radius: var(--radius-md);
	}

	.product-content {
		padding: 1.5rem;
	}
}

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

.animate-on-scroll {
	animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   PAGES STYLES (Certyfikaty, FAQ, Katalog, Kontakt, Rekomendacje)
   =================================== */

/* Page Header */
.page-header {
	position: relative;
	padding: 100px 0 100px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	margin-top: 70px;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../images/img_bg_1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	z-index: 0;
}

.page-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.5;
	z-index: 0;
}

.page-header-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 1rem;
	text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-subtitle {
	font-size: clamp(1.125rem, 3vw, 1.5rem);
	opacity: 0.95;
	font-weight: 400;
}

/* Content Section */
.content-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.section-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.section-intro h2 {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.lead {
	font-size: 1.25rem;
	color: var(--text-gray);
	line-height: 1.7;
}

/* ===================================
   CERTYFIKATY PAGE
   =================================== */
.content-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.intro-text h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.intro-image img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

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

.certificate-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 2.5rem 2rem;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	text-align: center;
	border: 2px solid var(--border-light);
}

.certificate-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary);
}

.certificate-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.certificate-icon svg {
	width: 32px;
	height: 32px;
}

.certificate-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.certificate-card p {
	color: var(--text-gray);
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

.view-link {
	color: var(--primary);
	font-weight: 600;
	font-size: 0.9375rem;
}

/* ===================================
   FAQ PAGE
   =================================== */
.faq-accordion {
	max-width: 900px;
	margin: 0 auto 4rem;
}

.faq-item {
	background: white;
	border-radius: var(--radius-md);
	margin-bottom: 1rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	overflow: hidden;
	transition: var(--transition);
}

.faq-item:hover {
	box-shadow: var(--shadow-md);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	background: white;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-dark);
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--primary);
}

.faq-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: var(--primary);
}

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

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

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

.faq-answer p {
	padding: 0 2rem 1.5rem;
	color: var(--text-gray);
	line-height: 1.7;
}

.faq-answer a {
	color: var(--primary);
	font-weight: 600;
}

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

/* ===================================
   KATALOG PAGE
   =================================== */
.katalog-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.katalog-image {
	position: relative;
}

.katalog-image a {
	display: block;
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.katalog-image img {
	transition: transform 0.5s ease;
}

.katalog-image a:hover img {
	/* transform: scale(1.05); */ /* Disabled zoom effect */
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(14, 165, 233, 0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.katalog-image a:hover .image-overlay {
	opacity: 1;
}

.download-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
}

.image-overlay span {
	font-size: 1.125rem;
	font-weight: 600;
}

.katalog-info h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.download-box {
	background: linear-gradient(135deg, var(--bg-light), white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	margin: 2rem 0;
	text-align: center;
	border: 2px solid var(--border-light);
}

.btn-download {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1.125rem;
	font-weight: 700;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	margin-bottom: 1rem;
}

.btn-download:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-xl);
}

.btn-download svg {
	width: 24px;
	height: 24px;
}

.file-info {
	font-size: 0.875rem;
	color: var(--text-light);
}

.benefits-list {
	margin: 2rem 0;
}

.benefits-list h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.benefits-list ul {
	list-style: none;
}

.benefits-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	color: var(--text-gray);
	border-bottom: 1px solid var(--border-light);
}

.benefits-list li:last-child {
	border-bottom: none;
}

.benefits-list svg {
	width: 20px;
	height: 20px;
	color: var(--secondary);
	flex-shrink: 0;
}

.contact-prompt {
	background: var(--bg-light);
	padding: 2rem;
	border-radius: var(--radius-lg);
	margin-top: 2rem;
}

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

.contact-prompt p {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
}

.btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--secondary);
	color: white;
	padding: 0.875rem 1.75rem;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
}

.btn-contact:hover {
	background: var(--secondary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-contact svg {
	width: 20px;
	height: 20px;
}

/* ===================================
   KONTAKT PAGE
   =================================== */
.contact-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
}

.contact-info-box h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.contact-details {
	margin: 3rem 0;
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	padding: 2rem;
	background: white;
	border-radius: var(--radius-lg);
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	transition: var(--transition);
}

.contact-item:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--primary);
}

.contact-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.contact-icon svg {
	width: 24px;
	height: 24px;
}

.contact-text h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.contact-text p {
	color: var(--text-gray);
	line-height: 1.6;
}

.contact-link {
	color: var(--primary);
	font-weight: 600;
	transition: var(--transition);
}

.contact-link:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

.contact-cta {
	background: linear-gradient(135deg, var(--bg-light), white);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	text-align: center;
	border: 2px solid var(--border-light);
}

.contact-cta h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.contact-cta p {
	color: var(--text-gray);
	margin-bottom: 2rem;
}

.quick-links-box {
	background: white;
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
}

.quick-links-box h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.quick-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 2rem;
}

.quick-link-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1.5rem;
	background: var(--bg-light);
	border-radius: var(--radius-md);
	transition: var(--transition);
	text-align: center;
}

.quick-link-card:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.quick-link-card svg {
	width: 32px;
	height: 32px;
}

.quick-link-card span {
	font-weight: 600;
	font-size: 0.9375rem;
}

.benefits-reminder {
	background: var(--bg-light);
	padding: 1.5rem;
	border-radius: var(--radius-md);
	margin-top: 2rem;
}

.benefits-reminder h4 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.benefits-reminder ul {
	list-style: none;
}

.benefits-reminder li {
	color: var(--text-gray);
	padding: 0.5rem 0;
	font-size: 0.9375rem;
}

/* ===================================
   REKOMENDACJE PAGE
   =================================== */
.recommendations-grid {
	column-count: 3;
	column-gap: 2rem;
	margin-bottom: 4rem;
}

.recommendation-card {
	break-inside: avoid;
	margin-bottom: 2rem;
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-light);
	transition: var(--transition);
	display: inline-block;
	width: 100%;
}

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

.recommendation-image {
	position: relative;
	background: var(--bg-gray);
	overflow: hidden;
}

.recommendation-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.recommendation-card:hover .recommendation-image img {
	/* transform: scale(1.05); */ /* Disabled zoom effect */
}

.recommendation-label {
	padding: 1rem 1.5rem;
	text-align: center;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
}

.recommendation-label span {
	font-weight: 600;
	font-size: 0.9375rem;
	display: block;
	margin-bottom: 0.5rem;
}

.recommendation-desc {
	font-size: 0.875rem;
	line-height: 1.5;
	opacity: 0.95;
	margin: 0;
}

/* ===================================
   CTA BOX (Universal)
   =================================== */
.cta-box {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	padding: 4rem 3rem;
	border-radius: var(--radius-xl);
	text-align: center;
	color: white;
	box-shadow: var(--shadow-xl);
}

.cta-box h2 {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: white;
}

.cta-box p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: white;
	color: var(--primary);
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-size: 1.125rem;
	font-weight: 700;
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	background: var(--accent);
	color: white;
}

.btn-primary svg {
	width: 20px;
	height: 20px;
}

/* ===================================
   RESPONSIVE - Pages
   =================================== */
@media (max-width: 992px) {
	.content-intro,
	.katalog-wrapper,
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.recommendations-grid {
		column-count: 2;
	}

	.quick-links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.page-header {
		padding: 30px 0 30px;
	}

	.content-section {
		padding: 60px 0;
	}

	.certificates-grid {
		grid-template-columns: 1fr;
	}

	.recommendations-grid {
		column-count: 1;
	}

	.cta-box {
		padding: 3rem 2rem;
	}

	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}

	.faq-answer p {
		padding: 0 1.5rem 1.25rem;
	}

	.contact-text h3,
	.contact-text p,
	.contact-link,
	.contact-info-box h2,
	.quick-links-box h3 {
		color: var(--text-dark) !important;
	}

	.contact-text p {
		color: var(--text-gray) !important;
	}
}
