@charset "utf-8";

/* --------------------------------------------------- Variables --------------------------------------------------- */
:root {
	--primary: #0a1628;
	--primary-light: #1b2d4a;
	--primary-lighter: #2a4066;
	--accent: #2563eb;
	--accent-light: #3b82f6;
	--accent-lighter: #dbeafe;
	--highlight: #f97316;
	--highlight-hover: #ea580c;
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-subtle: #f1f5f9;
	--border: #e2e8f0;
	--border-light: #f1f5f9;
	--text: #1e293b;
	--text-light: #64748b;
	--text-lighter: #94a3b8;
	--white: #ffffff;
	--success: #16a34a;
	--error: #dc2626;
	--font: 'Roboto', Calibri, Arial, Helvetica, sans-serif;
	--gap: 14px;
	--radius: 14px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
	--shadow-md: 0 4px 16px rgba(0,0,0,0.08);
	--shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
	--header-height: 80px;
	--header-height-mobile: 64px;
	--container: 1200px;
	--transition: 0.3s ease;
}


/* --------------------------------------------------- Reset --------------------------------------------------- */
*, *:before, *:after {
	box-sizing: border-box;
	outline: none;
	margin: 0;
	padding: 0;
}

html {
	overflow-y: auto;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
	list-style: none;
}

select, input, textarea, button {
	font-family: var(--font);
	font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	color: var(--primary);
}

/* --------------------------------------------------- Scrollbar --------------------------------------------------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }


/* --------------------------------------------------- Layout --------------------------------------------------- */
.site-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.site-container-wide {
	max-width: 1400px;
}

.site-container-narrow {
	max-width: 800px;
}

.no-scroll {
	overflow: hidden !important;
	height: 100vh;
}
.no-scroll::-webkit-scrollbar {
	display: none;
}


/* --------------------------------------------------- Flex / Grid Utilities --------------------------------------------------- */
.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
}

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

.flex-container-start {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

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


/* --------------------------------------------------- Header --------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	z-index: 1000;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	transition: all var(--transition);
}

.site-header.header-scrolled {
	box-shadow: var(--shadow-md);
}

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

.header-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header-logo img {
	height: 50px;
	width: auto;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.header-nav-link {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}

.header-nav-link:hover,
.header-nav-link.active {
	color: var(--accent);
	background: var(--bg-subtle);
}

.header-nav-link img {
	width: 14px;
	height: 14px;
	opacity: 0.5;
	transition: transform var(--transition);
}

.header-nav-link:hover img {
	transform: rotate(180deg);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-cart-btn {
	position: relative;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.header-cart-btn:hover {
	background: var(--bg-subtle);
}

.header-cart-btn svg {
	width: 20px;
	height: 20px;
	stroke: var(--text);
	fill: none;
}

.header-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	background: var(--highlight);
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	line-height: 1;
}

.header-cart-count:empty {
	display: none;
}

@keyframes cartBadgePulse {
	0% { transform: scale(1); }
	30% { transform: scale(1.5); }
	60% { transform: scale(0.9); }
	100% { transform: scale(1); }
}

.header-cart-count.pulse {
	animation: cartBadgePulse 0.45s ease;
}

.mobile-menu-trigger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	border-radius: var(--radius-sm);
}

.mobile-menu-trigger:hover {
	background: var(--bg-subtle);
}

.mobile-menu-trigger img {
	width: 24px;
	height: 24px;
}


/* --------------------------------------------------- Mega Menu --------------------------------------------------- */
.mega-menu-wrapper {
	position: relative;
}

.mega-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 24px;
	display: none;
	z-index: 1001;
	min-width: 900px;
}

.mega-menu.mega-menu-small {
	min-width: 280px;
	left: 0;
	transform: none;
}

.mega-menu-wrapper:hover .mega-menu,
.mega-menu-wrapper.mega-menu-open .mega-menu {
	display: block;
}

.mega-menu-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

.mega-menu-column {}

.mega-menu-column-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--primary);
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 2px solid var(--highlight);
	letter-spacing: 0.5px;
}

.mega-menu-column-title a {
	color: var(--primary);
}

.mega-menu-column-title a:hover {
	color: var(--accent);
}

.mega-menu-item {
	display: block;
	padding: 6px 0;
	font-size: 13px;
	color: var(--text-light);
	transition: all var(--transition);
}

.mega-menu-item:hover {
	color: var(--accent);
	padding-left: 6px;
}

.mega-menu-list {
	display: flex;
	flex-direction: column;
}

.mega-menu-list a {
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	color: var(--text);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.mega-menu-list a:hover {
	background: var(--bg-subtle);
	color: var(--accent);
}


/* --------------------------------------------------- Mobile Menu --------------------------------------------------- */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white);
	z-index: 2000;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	padding: 24px;
}

.mobile-menu-overlay.mobile-menu-open {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.mobile-menu-close {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	border-radius: var(--radius-sm);
}

.mobile-menu-close img {
	width: 24px;
	height: 24px;
}

.mobile-menu-nav {}

.mobile-menu-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	border-bottom: 1px solid var(--border-light);
}

.mobile-menu-link img {
	width: 20px;
	height: 20px;
	transition: transform var(--transition);
}

.mobile-menu-link.open img {
	transform: rotate(180deg);
}

.mobile-submenu {
	display: none;
	padding: 0 0 10px 16px;
}

.mobile-submenu.open {
	display: block;
}

.mobile-submenu-title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-lighter);
	padding: 12px 0 6px;
	letter-spacing: 0.5px;
}

.mobile-submenu a {
	display: block;
	padding: 8px 0;
	font-size: 14px;
	color: var(--text-light);
}

.mobile-submenu a:hover {
	color: var(--accent);
}

.mobile-menu-cta {
	margin-top: 32px;
}


/* --------------------------------------------------- Alerts --------------------------------------------------- */
.alert {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 16px 24px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	z-index: 9999;
	animation: slideInRight 0.4s ease, fadeOut 0.5s ease 4s forwards;
	box-shadow: var(--shadow-lg);
	max-width: 400px;
}

.alert-success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.alert-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}


/* --------------------------------------------------- Buttons --------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 28px;
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all var(--transition);
	border: 2px solid transparent;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn img {
	width: 18px;
	height: 18px;
}

.btn-primary {
	background: var(--highlight);
	color: var(--white);
	border-color: var(--highlight);
}

.btn-primary:hover {
	background: var(--highlight-hover);
	border-color: var(--highlight-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

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

.btn-outline-dark {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

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

.btn-dark {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.btn-dark:hover {
	background: var(--primary-light);
	border-color: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(10, 22, 40, 0.25);
}

.btn-sm {
	min-height: 40px;
	padding: 0 20px;
	font-size: 13px;
}

.btn-lg {
	min-height: 56px;
	padding: 0 36px;
	font-size: 16px;
}


/* --------------------------------------------------- Sections --------------------------------------------------- */
.section {
	padding: 20px 0;
}

.section-alt {
	background: var(--bg-alt);
}

.section-dark {
	background: var(--primary);
	color: var(--white);
}

.section-dark h2,
.section-dark h3 {
	color: var(--white);
}

.section-title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 12px;
}

.section-subtitle {
	font-size: 16px;
	color: var(--text-light);
	margin-bottom: 48px;
	max-width: 600px;
}

.section-dark .section-subtitle {
	color: var(--text-lighter);
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-header .section-subtitle {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent);
	margin-bottom: 12px;
}

.section-dark .section-label {
	color: var(--highlight);
}


/* --------------------------------------------------- Hero --------------------------------------------------- */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 40%, #1e3a5f 100%);
	overflow: hidden;
	padding-top: var(--header-height);
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="none"/><rect width="1" height="1" x="10" y="10" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
	background-size: 20px 20px;
	z-index: 1;
	pointer-events: none;
}

/* Background video — sits behind the gradient/dot-pattern overlay so the
   existing styling stays intact while the video plays underneath. Muted +
   loop + playsinline for autoplay on every device including iOS. */
.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
}

/* Dark overlay on top of the video to keep the white hero text readable.
   Slightly stronger gradient than the original section background since the
   video already adds visual noise. */
.hero-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.55) 50%, rgba(30,58,95,0.7) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 24px;
}

.hero-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--highlight);
	margin-bottom: 24px;
}

.hero-title {
	font-size: 56px;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 20px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 20px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 40px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounce 2s infinite;
}

.hero-scroll-indicator img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
	opacity: 0.5;
}

.hero-decoration {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
	top: 20%;
	right: -100px;
	z-index: 1;
}

.hero-decoration-2 {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
	bottom: 10%;
	left: -80px;
	z-index: 1;
}


/* --------------------------------------------------- Stats Bar --------------------------------------------------- */
.stats-bar {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: -60px;
	position: relative;
	z-index: 10;
	box-shadow: var(--shadow-lg);
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 40px;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-number span {
	color: var(--highlight);
}

.stat-label {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 500;
}


/* --------------------------------------------------- Cards --------------------------------------------------- */
.card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	transition: all var(--transition);
}

.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
	border-color: var(--accent-lighter);
}

.card-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	background: var(--bg-subtle);
}

.card-icon img {
	width: 28px;
	height: 28px;
}

.card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.card-text {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.6;
}


/* --------------------------------------------------- Product Cards --------------------------------------------------- */
.product-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	transition: all var(--transition);
	cursor: pointer;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 100%);
	z-index: 1;
	transition: all var(--transition);
}

.product-card:hover::before {
	background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.5) 100%);
}

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

.product-card-content {
	position: relative;
	z-index: 2;
}

.product-card-icon {
	width: 44px;
	height: 44px;
	margin-bottom: 16px;
	filter: brightness(0) invert(1);
	opacity: 0.8;
}

.product-card-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}

.product-card-count {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}

.product-card-arrow {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
}

.product-card:hover .product-card-arrow {
	background: var(--highlight);
}

.product-card-arrow img {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}


/* --------------------------------------------------- About Teaser (Homepage) --------------------------------------------------- */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 20px;
}

.about-text p {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 16px;
}

.about-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--border) 100%);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-lighter);
	font-size: 14px;
}


/* --------------------------------------------------- Why Choose Us --------------------------------------------------- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
}

.feature-card {
	text-align: center;
	padding: 36px 24px;
}

.feature-card .card-icon {
	margin: 0 auto 20px;
	background: var(--accent-lighter);
}


/* --------------------------------------------------- CTA Banner --------------------------------------------------- */
.cta-banner {
	padding: 60px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	text-align: center;
}

.cta-banner h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 12px;
}

.cta-banner p {
	font-size: 16px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 32px;
}

.cta-banner-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.cta-phone {
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
	justify-content: center;
}

.cta-phone img {
	width: 28px;
	height: 28px;
	filter: brightness(0) invert(1);
}


/* --------------------------------------------------- Configurator Teaser --------------------------------------------------- */
.configurator-teaser {
	background: linear-gradient(135deg, var(--accent-lighter) 0%, #eff6ff 100%);
	border: 1px solid var(--accent-lighter);
	border-radius: var(--radius-lg);
	padding: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.configurator-teaser h3 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 10px;
}

.configurator-teaser p {
	color: var(--text-light);
	font-size: 15px;
}

.configurator-badge {
	display: inline-block;
	padding: 4px 14px;
	background: var(--accent);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* --------------------------------------------------- Page Header --------------------------------------------------- */
.page-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	padding: 120px 0 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="none"/><rect width="1" height="1" x="10" y="10" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
	background-size: 20px 20px;
}

.page-header-content {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	font-size: 40px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 12px;
}

.page-header p {
	font-size: 16px;
	color: rgba(255,255,255,0.7);
	max-width: 600px;
	margin: 0 auto;
}


/* --------------------------------------------------- Breadcrumb --------------------------------------------------- */
.breadcrumb {
	padding: 16px 0;
	font-size: 13px;
	color: var(--text-lighter);
	border-bottom: 1px solid var(--border-light);
	margin-bottom: 40px;
}

.breadcrumb a {
	color: var(--text-light);
}

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

.breadcrumb span {
	margin: 0 8px;
	color: var(--text-lighter);
}


/* --------------------------------------------------- Content Blocks --------------------------------------------------- */
.content-block {
	margin-bottom: 48px;
}

.content-block h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
}

.content-block h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.content-block p {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 16px;
}

.content-block ul {
	margin-bottom: 16px;
}

.content-block ul li {
	padding: 8px 0 8px 28px;
	font-size: 15px;
	color: var(--text-light);
	position: relative;
}

.content-block ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
}

.content-block a {
	color: var(--accent);
	text-decoration: underline;
	text-decoration-color: rgba(37, 99, 235, 0.4);
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	font-weight: 500;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.content-block a:hover {
	color: var(--highlight);
	text-decoration-color: var(--highlight);
}


/* --------------------------------------------------- Product Hero v2 --------------------------------------------------- */
.product-hero-v2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
	margin: 32px 0 56px;
}

.product-hero-v2-intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-hero-v2-intro h1 {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 18px;
	color: var(--primary);
}

.product-hero-v2-intro p {
	font-size: 16px;
	line-height: 1.65;
	margin-bottom: 14px;
	color: var(--text);
}

.product-hero-v2-intro p:last-of-type {
	margin-bottom: 0;
}

.product-hero-v2-intro .btn {
	align-self: flex-start;
	margin-top: 28px;
}


/* --------------------------------------------------- Product Gallery --------------------------------------------------- */
.product-gallery {
	margin-bottom: 0;
	background: #fff;
	border-radius: 14px;
	padding: 18px;
	box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
	border: 1px solid rgba(10, 22, 40, 0.06);
	display: flex;
	flex-direction: column;
}

.product-gallery-main {
	position: relative;
	background: #f7f8fa;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	max-height: 360px;
	margin-bottom: 14px;
	flex: 1 1 auto;
}

.product-gallery-main-img {
	max-width: 100%;
	max-height: 360px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	transition: opacity 0.25s ease;
}

.product-gallery-main-img.is-fading {
	opacity: 0;
}

.product-gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.product-gallery-thumb {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	background: #f7f8fa;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.product-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-gallery-thumb:hover {
	border-color: rgba(37, 99, 235, 0.4);
	transform: translateY(-1px);
}

.product-gallery-thumb.is-active {
	border-color: var(--accent);
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.18);
}


/* --------------------------------------------------- Product Info Strip (bottom sidebox) --------------------------------------------------- */
.product-info-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
	margin-bottom: 16px;
}

.product-info-strip .aside-card {
	position: static;
	margin-bottom: 0;
	height: 100%;
}


@media (max-width: 960px) {
	.product-hero-v2 {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.product-hero-v2-intro h1 {
		font-size: 28px;
	}
}

@media (max-width: 720px) {
	.product-gallery {
		padding: 14px;
		border-radius: 12px;
	}
	.product-gallery-main {
		min-height: 200px;
		max-height: 300px;
	}
	.product-gallery-thumb {
		width: 56px;
		height: 56px;
	}
	.product-info-strip {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 40px;
	}
}


/* --------------------------------------------------- Specs Table --------------------------------------------------- */
.specs-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	overflow: hidden;
	font-size: 13px;
}

.specs-table thead th {
	background: var(--primary);
	color: var(--white);
	padding: 14px 16px;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
	font-size: 13px;
}

.specs-table tbody td {
	padding: 10px 16px;
	border-bottom: 1px solid var(--border-light);
	color: var(--text);
}

.specs-table tbody tr:last-child td {
	border-bottom: none;
}

.specs-table tbody tr:hover {
	background: var(--bg-alt);
}

.specs-table .text-right {
	text-align: right;
}

.specs-table .text-center {
	text-align: center;
}

.table-wrapper {
	overflow-x: auto;
	border-radius: var(--radius);
	margin-bottom: 32px;
}

.product-specs-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	overflow: hidden;
	font-size: 13px;
}

.product-specs-table thead th {
	background: var(--primary);
	color: var(--white);
	padding: 14px 16px;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
	font-size: 13px;
}

.product-specs-table tbody td {
	padding: 10px 16px;
	border-bottom: 1px solid var(--border-light);
	color: var(--text);
	white-space: nowrap;
}

.product-specs-table tbody tr:last-child td {
	border-bottom: none;
}

.product-specs-table tbody tr:hover {
	background: var(--bg-alt);
}

.product-specs-table .text-right {
	text-align: right;
}

.product-specs-table .text-center {
	text-align: center;
}


/* --------------------------------------------------- Product Page --------------------------------------------------- */
.product-hero {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 48px;
}

.product-hero-icon {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	background: var(--bg-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.product-hero-icon img {
	width: 40px;
	height: 40px;
}

.product-hero-text h1 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 8px;
}

.product-hero-text p {
	font-size: 15px;
	color: var(--text-light);
}

.product-sidebar {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}

.product-main {}

.product-aside {
	position: sticky;
	top: calc(var(--header-height) + 24px);
}

.aside-card {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 16px;
}

.aside-card h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 16px;
}

.aside-card ul li {
	padding: 8px 0;
	font-size: 14px;
	color: var(--text-light);
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--border-light);
}

.aside-card ul li:last-child {
	border-bottom: none;
}

.aside-card ul li img {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}


/* --------------------------------------------------- Category Grid --------------------------------------------------- */
.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.subcategory-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all var(--transition);
}

.subcategory-card:hover {
	border-color: var(--accent-lighter);
	box-shadow: var(--shadow-sm);
	transform: translateY(-2px);
}

.subcategory-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--bg-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.subcategory-card-icon img {
	width: 24px;
	height: 24px;
}

.subcategory-card-text h3 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
}

.subcategory-card-text p {
	font-size: 13px;
	color: var(--text-lighter);
}


/* --------------------------------------------------- Contact Form --------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 48px;
	align-items: start;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 6px;
}

.form-input,
.form-select {
	width: 100%;
	height: 48px;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0 16px;
	font-size: 15px;
	color: var(--text);
	transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: var(--accent);
	background: var(--white);
}

.form-textarea {
	width: 100%;
	min-height: 140px;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	font-size: 15px;
	color: var(--text);
	resize: vertical;
	transition: border-color var(--transition);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
}

.contact-info-card {
	background: var(--primary);
	color: var(--white);
	border-radius: var(--radius);
	padding: 32px;
}

.contact-info-card h3 {
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.contact-info-item img {
	width: 22px;
	height: 22px;
	filter: brightness(0) invert(1);
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-info-item strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
}

.contact-info-item span {
	font-size: 14px;
	opacity: 0.8;
}

.contact-info-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.15);
	margin: 24px 0;
}

.contact-social {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.contact-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
}

.contact-social a:hover {
	background: var(--highlight);
}

.contact-social a img {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}


/* --------------------------------------------------- Blog (Coming Soon) --------------------------------------------------- */
.coming-soon {
	text-align: center;
	padding: 80px 24px;
}

.coming-soon h2 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 16px;
}

.coming-soon p {
	font-size: 16px;
	color: var(--text-light);
	max-width: 500px;
	margin: 0 auto;
}


/* --------------------------------------------------- Legal Pages --------------------------------------------------- */
.legal-content {
	padding: 40px 0 80px;
}

.legal-content h2 {
	font-size: 24px;
	font-weight: 700;
	margin: 32px 0 16px;
}

.legal-content h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 24px 0 12px;
}

.legal-content p {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 16px;
}


/* --------------------------------------------------- Timeline --------------------------------------------------- */
.timeline {
	position: relative;
	padding-left: 40px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 14px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--border);
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -33px;
	top: 6px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--accent);
	border: 3px solid var(--white);
	box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}

.timeline-item p {
	font-size: 14px;
	color: var(--text-light);
}

.timeline-year {
	font-size: 12px;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}


/* --------------------------------------------------- Values Grid --------------------------------------------------- */
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.value-card {
	text-align: center;
	padding: 32px 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all var(--transition);
}

.value-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.value-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--accent-lighter);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.value-icon img {
	width: 28px;
	height: 28px;
}


/* --------------------------------------------------- Stats Page --------------------------------------------------- */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.stat-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	text-align: center;
}

.stat-card-number {
	font-size: 48px;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-card-number span {
	color: var(--highlight);
}

.stat-card-label {
	font-size: 14px;
	color: var(--text-light);
}


/* --------------------------------------------------- Footer --------------------------------------------------- */
.site-footer {
	position: relative;
	background: linear-gradient(180deg, #0c1a30 0%, #07101e 100%);
	color: rgba(255,255,255,0.72);
	padding: 76px 0 0;
	overflow: hidden;
}

/* brand accent line across the very top */
.site-footer::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 45%, var(--highlight) 100%);
}

/* subtle glow behind the top of the footer */
.site-footer::after {
	content: '';
	position: absolute;
	top: -120px; left: 50%;
	width: 1000px; height: 360px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(37,99,235,0.14) 0%, transparent 68%);
	pointer-events: none;
}

.site-footer .site-container { position: relative; z-index: 1; }

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
	gap: 48px;
	padding-bottom: 48px;
}

.footer-logo {
	margin-bottom: 18px;
}

.footer-logo img {
	height: 48px;
	width: auto;
}

.footer-desc {
	font-size: 14px;
	line-height: 1.75;
	color: rgba(255,255,255,0.6);
	margin-bottom: 24px;
	max-width: 320px;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.09);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-social a:hover {
	background: var(--highlight);
	border-color: var(--highlight);
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(249,115,22,0.32);
}

.footer-social a img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
	opacity: 0.85;
	transition: opacity var(--transition);
}

.footer-social a:hover img { opacity: 1; }

.footer-title {
	position: relative;
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 1.2px;
	padding-bottom: 14px;
	margin-bottom: 22px;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 30px; height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.footer-links a {
	position: relative;
	display: block;
	padding: 7px 0 7px 0;
	font-size: 14px;
	color: rgba(255,255,255,0.62);
	transition: color var(--transition), padding var(--transition);
}

.footer-links a::before {
	content: '\203A';
	position: absolute;
	left: 0;
	color: var(--highlight);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity var(--transition), transform var(--transition);
}

.footer-links a:hover {
	color: var(--white);
	padding-left: 16px;
}

.footer-links a:hover::before {
	opacity: 1;
	transform: translateX(0);
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 16px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	line-height: 1.5;
}

.footer-ic {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.09);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background var(--transition), border-color var(--transition);
}

.footer-ic img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
	opacity: 0.8;
}

a.footer-contact-link {
	transition: color var(--transition);
}

a.footer-contact-link:hover {
	color: var(--white);
}

a.footer-contact-link:hover .footer-ic {
	background: var(--highlight);
	border-color: var(--highlight);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom-text {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-links a {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	transition: color var(--transition);
}

.footer-bottom-links a:hover {
	color: var(--white);
}

.footer-affiliates {
	padding: 18px 0 26px;
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	letter-spacing: 0.2px;
}

.footer-affiliates a {
	color: rgba(255,255,255,0.6);
	transition: color var(--transition);
}

.footer-affiliates a:hover {
	color: var(--highlight);
}


/* --------------------------------------------------- Back to Top --------------------------------------------------- */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition);
	box-shadow: var(--shadow-md);
}

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

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

.back-to-top img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}


/* --------------------------------------------------- Infographic (Fapte si Cifre) --------------------------------------------------- */
.infographic-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	padding: 60px 40px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	border-radius: var(--radius-lg);
	margin-bottom: 48px;
	position: relative;
	overflow: hidden;
}

.infographic-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="none"/><rect width="1" height="1" x="10" y="10" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
	background-size: 20px 20px;
}

.infographic-hero-item {
	text-align: center;
	position: relative;
	z-index: 2;
}

.infographic-hero-icon {
	color: var(--highlight);
	margin-bottom: 16px;
}

.infographic-hero-icon svg {
	stroke: var(--highlight);
}

.infographic-hero-number {
	font-size: 64px;
	font-weight: 900;
	color: var(--white);
	line-height: 1;
	margin-bottom: 8px;
}

.infographic-hero-label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--highlight);
}

.infographic-hero-sub {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-top: 4px;
}

.infographic-hero-divider {
	width: 1px;
	height: 120px;
	background: rgba(255,255,255,0.15);
}

.infographic-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.infographic-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	position: relative;
	overflow: hidden;
}

.infographic-card .infographic-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 0;
	background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
	border-radius: 0 4px 0 0;
	transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.infographic-card.animated .infographic-bar {
	width: var(--bar-width);
}

.infographic-card-number {
	font-size: 36px;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
}

.infographic-card-unit {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.infographic-card-label {
	font-size: 14px;
	color: var(--text-light);
}


/* --------------------------------------------------- Domains Grid --------------------------------------------------- */
.domains-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.domain-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius);
	padding: 28px;
	transition: all var(--transition);
}

.domain-card:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.2);
	transform: translateY(-4px);
}

.domain-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: rgba(249, 115, 22, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.domain-icon svg {
	stroke: var(--highlight);
}

.domain-card h3 {
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
}

.domain-card ul {
	list-style: none;
}

.domain-card ul li {
	padding: 4px 0;
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}


/* --------------------------------------------------- Responsive --------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.header-nav { display: none; }
	.header-actions .btn { display: none; }
	.mobile-menu-trigger { display: flex; }
	.site-header { height: var(--header-height-mobile); }

	.hero-section { padding-top: var(--header-height-mobile); }
	.hero-title { font-size: 40px; }
	.hero-subtitle { font-size: 17px; }

	.page-header { padding: 100px 0 48px; }
	.page-header h1 { font-size: 32px; }

	.mega-menu { display: none !important; }

	.stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: -40px; padding: 28px; }
	.about-grid { grid-template-columns: 1fr; gap: 32px; }
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.category-grid { grid-template-columns: repeat(2, 1fr); }
	.product-sidebar { grid-template-columns: 1fr; }
	.product-aside { position: static; }
	.contact-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.configurator-teaser { flex-direction: column; text-align: center; }
	.infographic-grid { grid-template-columns: repeat(2, 1fr); }
	.domains-grid { grid-template-columns: repeat(2, 1fr); }
	.infographic-hero { gap: 40px; padding: 40px 28px; }
	.infographic-hero-number { font-size: 48px; }
}

@media screen and (max-width: 768px) {
	.section { padding: 60px 0; }
	.section-title { font-size: 28px; }

	.hero-title { font-size: 32px; }
	.hero-subtitle { font-size: 16px; }

	.stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
	.stat-number { font-size: 28px; }

	.features-grid { grid-template-columns: 1fr; }
	.category-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.grid-2, .grid-3 { grid-template-columns: 1fr; }
	.values-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr; }
	.infographic-grid { grid-template-columns: 1fr; }
	.infographic-hero { flex-direction: column; gap: 32px; }
	.infographic-hero-divider { width: 80px; height: 1px; }
	.infographic-hero-number { font-size: 40px; }
	.domains-grid { grid-template-columns: 1fr; }

	.product-hero { flex-direction: column; text-align: center; }
	.product-hero-text h1 { font-size: 26px; }

	.mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
}

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

	.hero-title { font-size: 28px; }
	.hero-buttons { flex-direction: column; width: 100%; }
	.hero-buttons .btn { width: 100%; }

	.stats-bar { grid-template-columns: 1fr 1fr; }

	.page-header h1 { font-size: 26px; }
	.section-title { font-size: 24px; }

	.footer-bottom { flex-direction: column; text-align: center; }
	.cta-phone { font-size: 20px; }
	.cart-panel { width: 100vw; }
}


/* --------------------------------------------------- Cart Panel --------------------------------------------------- */
.cart-panel-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 22, 40, 0.5);
	z-index: 2499;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-panel-overlay.active {
	opacity: 1;
	visibility: visible;
}

.cart-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: 420px;
	max-width: 90vw;
	height: 100vh;
	background: var(--white);
	z-index: 2500;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.cart-panel.open {
	transform: translateX(0);
}

.cart-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--border);
	flex-shrink: 0;
}

.cart-panel-header h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.cart-panel-badge {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cart-panel-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bg-subtle);
	border: none;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
	color: var(--text);
}

.cart-panel-close:hover {
	background: var(--error);
	color: var(--white);
}

.cart-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
	transition: flex 0.3s ease;
}

.cart-panel-body.hide-for-form {
	flex: 0;
	overflow: hidden;
	padding: 0 24px;
}

.cart-panel-footer {
	flex-shrink: 0;
	padding: 16px 24px 24px;
	border-top: 1px solid var(--border);
	overflow: hidden;
	transition: flex 0.3s ease;
}

.cart-panel-footer.form-open {
	flex: 1;
	overflow-y: auto;
}

.cart-panel-footer .cfg-finalize-form {
	margin-top: 16px;
}


/* --------------------------------------------------- Cart Items (Global) --------------------------------------------------- */
.cfg-cart-empty {
	text-align: center;
	padding: 40px 12px;
	font-size: 13px;
	color: var(--text-lighter);
	line-height: 1.6;
}

.cfg-cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-light);
}

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

.cfg-cart-item-info {
	flex: 1;
	min-width: 0;
}

.cfg-cart-item-info strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cfg-cart-item-info span {
	font-size: 12px;
	color: var(--text-lighter);
}

.cfg-cart-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 4px 0 2px;
}

.cfg-cart-mat {
	display: inline-block;
	padding: 1px 7px;
	border-radius: 4px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.cfg-cart-mat.is-otel {
	background: rgba(37, 99, 235, 0.10);
	color: var(--accent);
}

.cfg-cart-mat.is-zincat {
	background: rgba(13, 148, 136, 0.10);
	color: #0d9488;
}

.cfg-cart-cod {
	font-size: 11px;
	color: var(--text-lighter);
}

.cfg-cart-specs {
	display: block;
	font-size: 12px;
	color: var(--text-light);
	line-height: 1.5;
}

.cfg-cart-livrare {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	color: var(--text-lighter);
}

.cfg-cart-item-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.cfg-cart-qty {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.cfg-cart-qty-btn {
	width: 26px;
	height: 26px;
	background: var(--bg-subtle);
	border: none;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
	padding: 0;
	line-height: 1;
}

.cfg-cart-qty-btn:hover {
	background: var(--accent-lighter);
	color: var(--accent);
}

.cfg-cart-qty-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.cfg-cart-qty-value {
	font-size: 12px;
	font-weight: 600;
	color: var(--text);
	min-width: 36px;
	text-align: center;
	padding: 0 2px;
	white-space: nowrap;
}

.cfg-cart-remove {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: none;
	border: 1px solid var(--border);
	color: var(--text-lighter);
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all var(--transition);
}

.cfg-cart-remove:hover {
	background: var(--error);
	border-color: var(--error);
	color: var(--white);
}

.cfg-finalize-form {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	animation: cfgReveal 0.3s ease;
}

.cfg-finalize-form h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.cfg-finalize-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}


/* --------------------------------------------------- Product Spec Tables --------------------------------------------------- */
.product-table-wrapper {
	overflow-x: auto;
	margin: 32px 0;
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.product-specs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	white-space: nowrap;
}

.product-specs-table thead th {
	background: var(--primary);
	color: var(--white);
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 12px 14px;
	text-align: center;
	border-right: 1px solid var(--primary-light);
	position: sticky;
	top: 0;
}

.product-specs-table thead th:first-child {
	text-align: left;
	position: sticky;
	left: 0;
	z-index: 2;
	background: var(--primary);
}

.product-specs-table tbody td {
	padding: 10px 14px;
	text-align: center;
	border-bottom: 1px solid var(--border-light);
	border-right: 1px solid var(--border-light);
	color: var(--text);
}

.product-specs-table tbody td:first-child {
	font-weight: 600;
	text-align: left;
	background: var(--bg-alt);
	position: sticky;
	left: 0;
	z-index: 1;
}

.product-specs-table tbody tr:hover td {
	background: var(--accent-lighter);
}

.product-specs-table tbody tr:hover td:first-child {
	background: #c7d2fe;
}

.product-specs-table tbody tr:nth-child(even) td {
	background: var(--bg-alt);
}

.product-specs-table tbody tr:nth-child(even) td:first-child {
	background: #eef2f7;
}

.product-specs-table tbody tr:nth-child(even):hover td {
	background: var(--accent-lighter);
}

.product-specs-table tbody tr:nth-child(even):hover td:first-child {
	background: #c7d2fe;
}

/* Product detail page sections */
.product-detail-section {
	margin-bottom: 40px;
}

.product-detail-section h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--accent);
	display: inline-block;
}

.product-detail-section h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--primary);
	margin: 20px 0 10px;
}

.product-detail-section p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 12px;
}

.product-detail-section ul {
	list-style: none;
	padding: 0;
	margin: 12px 0;
}

.product-detail-section ul li {
	padding: 6px 0 6px 24px;
	position: relative;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text);
}

.product-detail-section ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
}

.product-standards {
	background: var(--bg-alt);
	border-radius: var(--radius);
	padding: 24px;
	margin: 24px 0;
	border-left: 4px solid var(--accent);
}

.product-standards h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--primary);
}

.product-standards p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 8px;
}

/* Stats grid for despre/fapte-cifre */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 40px 0;
}

.stat-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: center;
	transition: all var(--transition);
}

.stat-card:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.stat-card .stat-number {
	font-size: 40px;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-card .stat-label {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 500;
}

@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.stat-card .stat-number {
		font-size: 28px;
	}

	.product-specs-table {
		font-size: 11px;
	}

	.product-specs-table thead th,
	.product-specs-table tbody td {
		padding: 8px 10px;
	}
}