﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	background-color: #ffffff;
	color: #1a2a3f;
	line-height: 1.4;
	scroll-behavior: smooth;
}
:root {
	--glass-blue: #0f3b6f;
	--glass-blue-light: #1e4a7a;
	--glass-accent: #2c7ab1;
	--glass-gray: #f5f7fb;
	--glass-gray-dark: #eef2f8;
	--glass-text: #1e2f3e;
	--glass-text-light: #4a627a;
	--shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
	--shadow-hover: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
        --transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}
/* NAVIGATION */
.top-bar {
	background-color: white;
	border-bottom: 1px solid rgba(15, 59, 111, 0.1);
	padding: 12px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(2px);
	background: rgba(255,255,255,0.96);
}
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.logo-area {
	display: flex;
	align-items: center;
	gap: 12px;
}
.logo {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, var(--glass-blue) 0%, var(--glass-accent) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	text-decoration: none;
}
.nav-links {
	display: flex;
	gap: 32px;
	font-weight: 500;
}
.nav-links a {
	text-decoration: none;
	color: var(--glass-text);
	transition: var(--transition);
	font-size: 0.95rem;
}
.nav-links a:hover {
	color: var(--glass-blue);
}
/* HERO */
.hero {
	background: linear-gradient(105deg, #f9fcff 0%, #eef3fc 100%);
	padding: 70px 0 60px;
	border-bottom: 1px solid rgba(0,0,0,0.03);
}
.hero-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}
.hero-content {
	flex: 1;
}
.hero-content h1 {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	background: linear-gradient(135deg, var(--glass-blue) 0%, #1f6392 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 20px;
}
.hero-content p {
	font-size: 1.2rem;
	color: var(--glass-text-light);
	max-width: 550px;
	margin-bottom: 28px;
}
.hero-badge {
	background: white;
	display: inline-block;
	padding: 8px 20px;
	border-radius: 40px;
	font-weight: 500;
	box-shadow: var(--shadow-sm);
	font-size: 0.9rem;
	color: var(--glass-blue);
}
.hero-image {
	flex: 0.8;
	text-align: center;
}
.hero-image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 12px 20px rgba(0,0,0,0.08));
	border-radius: 32px;
	aspect-ratio: 900 / 500;
	object-fit: cover;
	width: 100%;
}
/* ABOUT */
.about {
	padding: 80px 0;
	background: white;
}
.section-title {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--glass-blue);
	letter-spacing: -0.3px;
	position: relative;
	display: inline-block;
}
.section-title:after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 70px;
	height: 3px;
	background: var(--glass-accent);
	border-radius: 4px;
}
.about-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	margin-top: 40px;
}
.about-text {
	flex: 1.5;
}
.about-text p {
	margin-bottom: 20px;
	font-size: 1.05rem;
	color: var(--glass-text);
	line-height: 1.5;
}
.stats {
	flex: 1;
	background: var(--glass-gray);
	border-radius: 32px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.stat-item {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	padding-bottom: 12px;
}
.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--glass-blue);
}
/* PRODUCTS GRID */
.products {
	background: var(--glass-gray);
	padding: 80px 0;
}
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
	margin-top: 40px;
}
.product-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	aspect-ratio: 1 / 0.9;
	cursor: pointer;
	will-change: transform;
}
.product-card a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
	display: block;
}
.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 70%, transparent);
	padding: 28px 20px 20px;
	transition: var(--transition);
	transform: translateY(0);
}
.card-title {
	color: white;
	font-size: 1.45rem;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0,0,0,0.3);
	margin-bottom: 6px;
	letter-spacing: -0.2px;
}
.card-sub {
	color: rgba(255,255,255,0.85);
	font-size: 0.85rem;
	font-weight: 500;
	opacity: 0;
	transform: translateY(8px);
	transition: var(--transition);
}
.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
}
.product-card:hover .card-image {
	transform: scale(1.05);
}
.product-card:hover .card-sub {
	opacity: 1;
	transform: translateY(0);
}
.product-card:hover .card-overlay {
	background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 80%);
}
/* CONTACT */
.contact {
	padding: 80px 0;
	background: white;
}
.contact-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	margin-top: 40px;
}
.contact-info {
	flex: 1;
}
.contact-info h3 {
	font-size: 1.8rem;
	color: var(--glass-blue);
	margin-bottom: 20px;
}
.contact-details {
	list-style: none;
	margin-top: 24px;
}
.contact-details li {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	font-size: 1.05rem;
}
/* SOCIAL MEDIA SECTION */
.social-section {
	flex: 1;
}
.social-title {
	font-size: 1.5rem;
	color: var(--glass-blue);
	margin-bottom: 24px;
	text-align: center;
}
.social-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.social-card {
	background: var(--glass-gray);
	border-radius: 24px;
	padding: 28px 20px;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	border: 1px solid rgba(15, 59, 111, 0.1);
}
.social-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}
.social-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 2rem;
	transition: var(--transition);
}
.social-card:hover .social-icon {
	transform: scale(1.1);
}
.social-name {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--glass-text);
}
.social-follow {
	font-size: 0.85rem;
	color: var(--glass-text-light);
}
/* Kolory dla poszczególnych platform */
.social-card.facebook .social-icon {
	background: #1877f2;
	color: white;
}
.social-card.instagram .social-icon {
	background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
	color: white;
}
.social-card.linkedin .social-icon {
	background: #0077b5;
	color: white;
}
.social-card.youtube .social-icon {
	background: #ff0000;
	color: white;
}
.btn {
	display: inline-block;
	background-color: var(--glass-blue);
	color: white;
	padding: 12px 28px;
	border-radius: 40px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}
.btn:hover {
	background-color: var(--glass-blue-light);
	transform: scale(0.98);
}
/* FLAGI NA DOLE */
.lang-section {
	background-color: #111827;
	border-top: 1px solid #1f2937;
	padding: 48px 0;
}
.lang-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(90px, auto));
	gap: 12px;
	justify-content: center;
	list-style: none;
}
.lang-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1f2937;
	padding: 8px 14px;
	border-radius: 40px;
	transition: all 0.2s ease;
	border: 1px solid #374151;
	font-size: 0.85rem;
	font-weight: 500;
	color: #e5e7eb;
	text-decoration: none;
}
.lang-item:hover {
	background: var(--glass-accent);
	border-color: var(--glass-accent);
	color: white;
	transform: scale(1.02);
}
.lang-item img {
	width: 18px;
	height: 18px;
	object-fit: cover;
	border-radius: 2px;
}
/* STOPKA */
.main-footer {
	background: #0a1c2a;
	color: #cfdfed;
	padding-top: 56px;
}
.footer-bottom {
	background: #0a1c2a;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 32px 0;
}
.footer-bottom-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}
.footer-info {
	flex: 2;
}
.footer-links-side {
	flex: 1;
	text-align: right;
}
.footer-copyright-main {
	color: #b9d0e5;
	font-size: 0.85rem;
	margin-bottom: 12px;
}
.footer-description {
	color: #8aa4bc;
	font-size: 0.8rem;
	margin-bottom: 12px;
	line-height: 1.4;
}
.footer-digital {
	color: #8aa4bc;
	font-size: 0.8rem;
	margin-bottom: 12px;
	line-height: 1.4;
}
.footer-standards {
	color: #6c8aaa;
	font-size: 0.7rem;
	margin-bottom: 8px;
	line-height: 1.4;
}
.footer-case {
	color: #6c8aaa;
	font-size: 0.7rem;
	margin-bottom: 8px;
}
.footer-link-highlight {
	color: #b9d0e5;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.footer-link-highlight:hover {
	color: white;
	text-decoration: underline;
}
.footer-nav-links {
	display: flex;
	gap: 16px;
	justify-content: flex-end;
	margin-bottom: 16px;
}
.footer-link {
	color: #b9d0e5;
	text-decoration: none;
	font-size: 0.8rem;
	transition: color 0.2s;
}
.footer-link:hover {
	color: white;
}
.separator {
	color: #8aa4bc;
}
.footer-partner {
	color: #6c8aaa;
	font-size: 0.7rem;
	margin-bottom: 16px;
	text-align: right;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.container {
	padding: 0 20px;
}
.hero-content h1 {
	font-size: 2.2rem;
}
.nav-container {
	flex-direction: column;
	align-items: flex-start;
}
.nav-links {
	flex-wrap: wrap;
	gap: 20px;
}
.products-grid {
	grid-template-columns: 1fr;
	gap: 24px;
}
.product-card {
	aspect-ratio: 1 / 0.7;
}
.section-title {
	font-size: 1.9rem;
}
.about-grid {
	flex-direction: column;
}
.social-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
.social-card {
	padding: 20px 15px;
}
.social-icon {
	width: 50px;
	height: 50px;
	font-size: 1.6rem;
}
.social-name {
	font-size: 1rem;
}
.lang-grid {
	grid-template-columns: repeat(auto-fill, minmax(75px, auto));
	gap: 8px;
}
.lang-item {
	padding: 6px 10px;
	font-size: 0.75rem;
}
.lang-item img {
	width: 16px;
	height: 16px;
}
.footer-bottom-content {
	flex-direction: column;
	gap: 24px;
}
.footer-links-side {
	text-align: left;
}
.footer-nav-links {
	justify-content: flex-start;
}
.footer-partner {
	text-align: left;
}
}
@media (max-width: 480px) {
.hero-content h1 {
	font-size: 1.9rem;
}
.card-title {
	font-size: 1.2rem;
}
.social-grid {
	grid-template-columns: 1fr;
}
}
