:root {
--color-primary: #F7941D;
--color-red: #E30613;
--color-dark: #333333;
--color-text: #666666;
--color-light: #F5F5F5;
--color-white: #FFFFFF;
--color-gray: #999999;
--font-family: 'Poppins', 'Inter', Arial, sans-serif;
--transition-fast: 0.2s ease;
--transition-normal: 0.3s ease;
--transition-slow: 0.5s ease;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
--shadow-card: 0 2px 8px rgba(0,0,0,0.1);
--shadow-card-hover: 0 8px 24px rgba(0,0,0,0.15);
--navbar-height: 65px;
} *, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--font-family);
color: var(--color-dark);
line-height: 1.6;
background-color: var(--color-white);
overflow-x: hidden;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition-fast);
}
img {
max-width: 100%;
height: auto;
display: block;
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 24px;
font-size: 14px;
font-weight: 600;
text-transform: none;
border: none;
cursor: pointer;
transition: var(--transition-fast);
border-radius: 4px;
}
.btn-primary {
background-color: var(--color-primary);
color: var(--color-white);
}
.btn-primary:hover {
opacity: 0.9;
transform: translateY(-2px);
}
.btn-red {
background-color: var(--color-red);
color: var(--color-white);
}
.btn-red:hover {
opacity: 0.9;
transform: translateY(-2px);
}
.btn-outline {
background-color: transparent;
color: var(--color-primary);
border: 2px solid var(--color-primary);
}
.btn-outline:hover {
background-color: var(--color-primary);
color: var(--color-white);
}
.btn-small {
padding: 8px 16px;
font-size: 12px;
font-weight: 600;
}
.btn-large {
padding: 16px 32px;
font-size: 16px;
font-weight: 600;
}
.btn svg {
margin-right: 8px;
} .navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
padding-top: 10px;
background-color: var(--color-white);
z-index: 1000;
transition: var(--transition-normal);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
height: var(--navbar-height);
}
.navbar.scrolled {
box-shadow: var(--shadow-md);
}
.nav-content {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
}
.single-items main {
padding-top: 70px;
} .logo {
display: flex;
align-items: center;
gap: 12px;
}
.logos-container {
display: flex;      
justify-content: center;
align-items: center;    
gap: 20px; 
}
.logo-partner {
display: flex;
flex-direction: column;
padding-left: 12px;
margin-left: 12px;
border-left: 1px solid #ddd;
}
.partner-logo {
max-height: 40px;
width: auto;
} .nav-links {
display: flex;
align-items: center;
gap: 24px;
height: 100%;
}
.nav-links a {
font-size: 14px;
font-weight: 600;
color: var(--color-dark);
display: flex;
align-items: center;
gap: 4px;
height: 100%;
position: relative;
}
.nav-links a:hover {
color: var(--color-primary);
}
.nav-links .arrow {
font-size: 10px;
margin-left: 2px;
transition: transform 0.3s ease;
} .nav-buttons .btn {
padding: 10px 16px;
font-size: 13px;
color: white;
}
.nav-buttons .btn:hover {
color: white;
} .mobile-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
width: 40px;
height: 40px;
justify-content: center;
align-items: center;
}
.hamburger {
display: block;
width: 24px;
height: 2px;
background-color: var(--color-dark);
position: relative;
transition: var(--transition-fast);
}
.hamburger::before,
.hamburger::after {
content: '';
position: absolute;
width: 24px;
height: 2px;
background-color: var(--color-dark);
transition: var(--transition-fast);
}
.hamburger::before {
top: -7px;
}
.hamburger::after {
top: 7px;
}
.mobile-menu-btn.active .hamburger {
background-color: transparent;
}
.mobile-menu-btn.active .hamburger::before {
top: 0;
transform: rotate(45deg);
}
.mobile-menu-btn.active .hamburger::after {
top: 0;
transform: rotate(-45deg);
} .mobile-menu {
display: none;
background-color: var(--color-white);
border-top: 1px solid #eee;
padding: 20px 0;
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 1000;
max-height: calc(100vh - var(--navbar-height));
overflow-y: auto;
}
.mobile-menu.active {
display: block;
}
.mobile-menu a {
display: block;
padding: 12px 20px;
font-size: 15px;
font-weight: 600;
color: var(--color-dark);
border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a:hover {
color: var(--color-primary);
background-color: #f9f9f9;
} .mobile-mega-dropdown {
border-bottom: 1px solid #eee;
}
.mobile-mega-toggle {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background: none;
border: none;
font-size: 15px;
font-weight: 600;
color: var(--color-dark);
cursor: pointer;
text-align: left;
}
.mobile-mega-toggle .arrow {
font-size: 10px;
transition: transform 0.3s ease;
}
.mobile-mega-dropdown.active .mobile-mega-toggle .arrow {
transform: rotate(180deg);
}
.mobile-mega-content {
display: none;
padding: 0 0 15px 20px;
background: #f9f9f9;
}
.mobile-mega-dropdown.active .mobile-mega-content {
display: block;
}
.mobile-mega-section {
margin-bottom: 15px;
}
.mobile-mega-section h5 {
font-size: 13px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 8px;
padding: 10px 15px;
background: rgba(247, 148, 29, 0.1);
border-radius: 4px;
}
.mobile-mega-section a {
display: block;
padding: 8px 15px;
font-size: 13px;
color: var(--color-text);
border-bottom: 1px solid #f0f0f0;
}
.mobile-mega-section a:last-child {
border-bottom: none;
}
.mobile-mega-section a:hover {
color: var(--color-primary);
background: rgba(247, 148, 29, 0.05);
}
.mobile-buttons {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #eee;
}
.mobile-buttons .btn {
width: 100%;
text-align: center;
}  .mega-dropdown {
position: relative;
height: 100%;
display: flex;
align-items: center;
} .mega-dropdown .has-dropdown {
position: relative;
padding-right: 20px;
display: flex;
align-items: center;
height: 100%;
}
.mega-dropdown .has-dropdown .arrow {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 10px;
transition: transform 0.3s ease;
}
.mega-dropdown:hover .has-dropdown .arrow,
.mega-dropdown.active .has-dropdown .arrow {
transform: translateY(-50%) rotate(180deg);
} .mega-menu {
position: absolute;
top: 100%;
padding-top: 10px;
left: 50%;
transform: translateX(-50%) translateY(15px);
width: 850px;
max-width: 90vw;
background: var(--color-white);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border-radius: 12px;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 10;
border: 1px solid rgba(0, 0, 0, 0.08);
pointer-events: none;
overflow: hidden;
max-height: calc(100vh - 120px);
margin-top: 8px;
}
.mega-dropdown:hover .mega-menu,
.mega-menu.active {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(5px);
pointer-events: all;
} .mega-menu-inner {
display: grid;
grid-template-columns: 280px 1fr;
gap: 0;
max-height: calc(100vh - 180px);
overflow: hidden;
} .mega-left {
background: #f8f9fa;
border-right: 1px solid rgba(0, 0, 0, 0.05);
overflow-y: auto;
max-height: calc(100vh - 180px);
}
.category-list {
padding: 0;
}
.category-item {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
cursor: pointer;
transition: all 0.2s ease;
border-left: 4px solid transparent;
background: #f8f9fa;
}
.category-item:hover {
background: rgba(247, 148, 29, 0.05);
border-left-color: var(--color-primary);
}
.category-item.active {
background: var(--color-white);
border-left-color: var(--color-primary);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.category-icon {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-primary);
font-size: 12px;
font-weight: bold;
transition: transform 0.2s ease;
}
.category-item.active .category-icon {
transform: translateX(3px);
}
.category-text h4 {
font-size: 14px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 4px;
line-height: 1.3;
}
.category-text p {
font-size: 11px;
color: var(--color-text);
line-height: 1.3;
margin: 0;
} .mega-right {
padding: 24px;
overflow-y: auto;
max-height: calc(100vh - 180px);
}
.subcategory-section {
display: none;
animation: fadeIn 0.3s ease;
}
.subcategory-section.active {
display: block;
}
.section-title {
font-size: 18px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 20px;
padding-bottom: 12px;
border-bottom: 2px solid var(--color-primary);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.subcategory-section__title {
font-size: 18px;
font-weight: 700;
color: var(--color-dark);
margin: 0 0 20px;
padding-bottom: 12px;
border-bottom: 2px solid var(--color-primary);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.subcategory-group {
margin-bottom: 24px;
}
.subcategory-group__title {
font-size: 13px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 12px;
padding-bottom: 6px;
text-transform: uppercase;
} .subcategory-group > a {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 12px;
font-size: 13px;
color: var(--color-text);
background: #f9f9f9;
border-radius: 6px;
transition: all 0.2s ease;
border-left: 3px solid transparent;
text-decoration: none;
}
.subcategory-group > a:hover {
background: rgba(247, 148, 29, 0.1);
color: var(--color-dark);
}
.subcategory-group > a .subcategory-group__title {
margin: 0;
font-size: 13px;
font-weight: 700;
color: inherit;
}
.subcategory-group > a::after {
content: "→";
color: var(--color-primary);
font-size: 12px;
font-weight: bold;
opacity: 0.7;
transition: all 0.2s ease;
}
.subcategory-group > a:hover::after {
opacity: 1;
transform: translateX(2px);
}
.links-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 8px;
}
.links-grid.cols-2 {
grid-template-columns: repeat(2, 1fr);
}
.link-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 12px;
font-size: 13px;
color: var(--color-text);
background: #f9f9f9;
border-radius: 6px;
transition: all 0.2s ease;
border-left: 3px solid transparent;
}
.link-item:hover {
background: rgba(247, 148, 29, 0.1);
color: var(--color-dark);
}
.link-arrow {
color: var(--color-primary);
font-size: 12px;
font-weight: bold;
opacity: 0.7;
transition: all 0.2s ease;
}
.link-item:hover .link-arrow {
opacity: 1;
transform: translateX(2px);
} .mega-left::-webkit-scrollbar,
.mega-right::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.mega-left::-webkit-scrollbar-track,
.mega-right::-webkit-scrollbar-track,
.mobile-menu::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.mega-left::-webkit-scrollbar-thumb,
.mega-right::-webkit-scrollbar-thumb,
.mobile-menu::-webkit-scrollbar-thumb {
background: var(--color-primary);
border-radius: 3px;
}
.mega-left::-webkit-scrollbar-thumb:hover,
.mega-right::-webkit-scrollbar-thumb:hover,
.mobile-menu::-webkit-scrollbar-thumb:hover {
background: #e6830c;
} .hero {
position: relative;
min-height: 600px;
display: flex;
align-items: center;
overflow: hidden;
background-color: #1a1a1a;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
to right,
rgba(0, 0, 0, 0.85) 0%,
rgba(0, 0, 0, 0.7) 60%,
rgba(0, 0, 0, 0.4) 100%
);
}
.hero-content {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr auto;
gap: 80px;
align-items: center;
width: 100%;
padding: 60px 0;
padding-top: clamp(80px, 12vh, 12rem);
padding-top: 10rem;
}
.hero-text {
max-width: 650px;
}
.hero-title {
font-size: 48px;
font-weight: 800;
color: var(--color-white);
line-height: 1.2;
margin-bottom: 30px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.hero-title .highlight {
color: var(--color-primary);
}
.hero-description {
font-size: 18px;
color: rgba(255, 255, 255, 0.9);
line-height: 1.7;
margin-bottom: 40px;
max-width: 550px;
}
.hero-description > *:first-child {
margin-top: 0;
}
.hero-description > *:last-child {
margin-bottom: 0;
}
.hero-description p,
.hero-description ul,
.hero-description ol {
margin: 0 0 1em;
}
.hero-description li {
margin-bottom: 0.35em;
}
.hero-description a {
color: var(--color-primary);
text-decoration: underline;
}
.hero-description strong {
color: var(--color-primary);
font-weight: 700;
}
.hero-buttons {
display: flex;
gap: 20px;
}
.hero-buttons .btn {
padding: 16px 32px;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
min-width: 180px;
border-radius: 4px;
border: 2px solid transparent;
text-align: center;
}
.hero-buttons .btn-primary {
background-color: var(--color-primary);
border-color: var(--color-primary);
}
.hero-buttons .btn-red {
background-color: var(--color-red);
border-color: var(--color-red);
}
.hero-buttons .btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
} .yellow-banner {
background-color: var(--color-primary);
padding: 14px 0;
}
.yellow-banner p {
text-align: center;
font-size: 13px;
font-weight: 600;
color: var(--color-dark);
text-transform: uppercase;
letter-spacing: 0.5px;
line-height: 1.4;
margin: 0;
} .products {
padding: 60px 0;
background-color: var(--color-white);
}
.products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.product-card {
position: relative;
background-color: var(--color-white);
border: 1px solid #eee;
overflow: hidden;
cursor: pointer;
transition: var(--transition-normal);
box-shadow: var(--shadow-card);
}
.product-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-card-hover);
}
.card-image {
height: 180px;
overflow: hidden;
}
.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.product-card:hover .card-image img {
transform: scale(1.05);
}
.card-title {
background-color: var(--color-dark);
padding: 14px;
text-align: center;
}
.card-title h3 {
color: var(--color-white);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin: 0;
} .card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
color: var(--color-white);
padding: 20px;
opacity: 0;
visibility: hidden;
transition: all 0.4s ease;
transform: translateY(10px);
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.product-card:hover .card-overlay {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.overlay-content {
max-width: 100%;
height: 100%;
overflow-y: auto;
padding-right: 10px;
}
.overlay-content h4 {
color: var(--color-primary);
font-size: 14px;
font-weight: 700;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
border-bottom: 1px solid rgba(247, 148, 29, 0.3);
padding-bottom: 8px;
}
.overlay-content p {
font-size: 12px;
line-height: 1.6;
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.9);
}
.overlay-content .certificates {
font-size: 11px;
color: var(--color-primary);
line-height: 1.5;
padding: 10px;
background: rgba(247, 148, 29, 0.1);
border-left: 3px solid var(--color-primary);
margin-top: 15px;
}
.overlay-content .certificates strong {
color: var(--color-white);
font-weight: 600;
} .overlay-content::-webkit-scrollbar {
width: 4px;
}
.overlay-content::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
}
.overlay-content::-webkit-scrollbar-thumb {
background: var(--color-primary);
border-radius: 2px;
}
.overlay-content::-webkit-scrollbar-thumb:hover {
background: #ff9c32;
} .product-card:hover .card-image img {
transform: scale(1.08);
} .product-card:hover .card-title {
background-color: rgba(51, 51, 51, 0.9);
z-index: 3;
} .akcie-section {
padding: 80px 0;
background: #f8f9fa;
}
.akcie-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.akcia-card {
position: relative;
overflow: hidden;
transition: var(--transition-normal);
cursor: zoom-in;
}
.akcia-card:focus-visible {
outline: 3px solid rgba(183, 28, 28, 0.35);
outline-offset: 4px;
}
.akcia-card:hover {
transform: translateY(-5px);
}
.akcia-card img {
display: block;
width: 100%;
height: auto;
aspect-ratio: 5 / 7;
object-fit: cover;
}
@media (max-width: 1024px) {
.akcie-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.akcie-grid {
grid-template-columns: 1fr;
}
} .about {
padding: 80px 0;
background-color: var(--color-white);
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}
.about-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
}
.accent-bar {
width: 4px;
height: 50px;
background-color: var(--color-primary);
}
.about-header h2 {
font-size: 36px;
font-weight: 700;
color: var(--color-dark);
text-transform: uppercase;
letter-spacing: 1px;
margin: 0;
}
.about-text {
padding-left: 20px;
}
.about-text p {
font-size: 14px;
color: var(--color-text);
line-height: 1.8;
margin-bottom: 16px;
}
.about-text strong {
color: var(--color-dark);
font-weight: 600;
} .about-images {
padding-top: 20px;
}
.image-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 16px;
}
.image-tall {
grid-row: span 2;
}
.image-tall img,
.image-wide img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 4px;
min-height: 150px;
} .contact {
padding: 80px 0;
background-color: var(--color-light);
}
.section-header {
text-align: center;
margin-bottom: 50px;
}
.section-header h2 {
font-size: 32px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 12px;
}
.section-line {
width: 60px;
height: 3px;
background-color: var(--color-primary);
margin: 0 auto;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}
.contact-info h3 {
font-size: 20px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 12px;
}
.contact-intro {
font-size: 14px;
color: var(--color-text);
line-height: 1.7;
margin-bottom: 30px;
}
.contact-items {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 30px;
}
.contact-item {
display: flex;
align-items: center;
gap: 16px;
}
.icon {
width: 20px;
height: 20px;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
.contact-detail {
display: flex;
align-items: baseline;
gap: 8px;
}
.contact-detail .label {
font-size: 13px;
color: var(--color-text);
}
.contact-detail .value {
font-size: 15px;
font-weight: 600;
color: var(--color-dark);
}
.contact-detail .value:hover {
color: var(--color-primary);
}
.company-info {
padding-top: 20px;
border-top: 1px solid #ddd;
}
.company-info p {
font-size: 12px;
color: var(--color-text);
margin-bottom: 4px;
} .contact-map h3 {
font-size: 16px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 16px;
}
.map-container {
border-radius: 8px;
overflow: hidden;
margin-bottom: 16px;
box-shadow: var(--shadow-sm);
}
.map-container iframe {
display: block;
width: 100%;
height: 250px;
border: 0;
}
.address {
display: flex;
align-items: flex-start;
gap: 10px;
}
.address-icon {
width: 18px;
height: 18px;
color: var(--color-primary);
flex-shrink: 0;
margin-top: 2px;
}
.address p {
font-size: 14px;
color: var(--color-dark);
margin: 0;
} .sponsors-section {
background-color: var(--color-white);
padding: 40px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sponsors-title {
text-align: center;
margin-bottom: 30px;
}
.sponsors-title h4 {
color: var(--color-dark);
font-size: 20px;
font-weight: 600;
letter-spacing: 0.5px;
position: relative;
display: inline-block;
margin: 0;
}
.sponsors-title h4::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 2px;
background-color: var(--color-primary);
}
.sponsors-wrapper {
position: relative;
overflow: hidden;
width: 100%;
padding: 10px 0;
}
.sponsors-track {
display: flex;
align-items: center;
gap: 50px;
width: max-content;
animation: none;
transform: translate3d(0,0,0);
will-change: transform;
}
.sponsor-slide {
flex: 0 0 auto;
width: 180px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
padding: 15px 20px;
transition: all 0.3s ease;
}
.sponsor-slide:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-3px);
}
.sponsor-slide img {
max-width: 100%;
max-height: 100%;
filter: grayscale(100%) brightness(1.5);
transition: all 0.3s ease;
object-fit: contain;
}
.sponsor-slide:hover img {
filter: grayscale(0) brightness(1);
transform: scale(1.05);
} .sponsors-wrapper::before,
.sponsors-wrapper::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 100px;
z-index: 2;
pointer-events: none;
}
.sponsors-wrapper::before {
left: 0;
background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.sponsors-wrapper::after {
right: 0;
background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}  .orange-divider {
margin-top: 1rem;
height: 4px;
background-color: var(--color-primary);
width: 100%;
position: relative;
overflow: hidden;
}
.footer {
background-color: var(--color-dark);
color: var(--color-white);
padding: 60px 0 0;
}
.footer-grid {
display: grid;
grid-template-columns: 1.2fr 1fr 1fr 1fr;
gap: 40px;
}
.footer-col h4 {
font-size: 18px;
font-weight: 700;
margin-bottom: 20px;
}
.footer-desc {
font-size: 14px;
color: var(--color-gray);
line-height: 1.7;
margin-bottom: 24px;
} .social-links {
display: flex;
gap: 12px;
}
.social-link {
width: 40px;
height: 40px;
background-color: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition-fast);
}
.social-link:hover {
background-color: var(--color-primary);
transform: scale(1.1);
}
.social-link .icon {
width: 18px;
height: 18px;
background-size: contain;
}
.social-link img {
height: 20px;
width: auto;
} .footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
font-size: 14px;
color: var(--color-gray);
transition: var(--transition-fast);
}
.footer-links a:hover {
color: var(--color-white);
padding-left: 5px;
} .copyright {
margin-top: 50px;
padding: 20px 0;
border-top: 1px solid rgba(255,255,255,0.1);
}
.copyright p {
text-align: center;
font-size: 13px;
color: var(--color-gray);
margin: 0;
} @keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.6s ease forwards;
} body.mega-menu-open,
body.mobile-menu-open {
overflow: hidden;
} .icon-phone {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}
.icon-email {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.icon-facebook {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}
.icon-instagram {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073z'/%3E%3C/svg%3E");
}
.icon-youtube {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z'/%3E%3C/svg%3E");
}  @media (max-width: 1024px) {
.nav-links,
.nav-buttons {
display: none;
}
.mobile-menu-btn {
display: flex;
}
.mega-menu {
width: 700px;
max-width: 95vw;
max-height: calc(100vh - 140px);
}
.mega-menu-inner {
grid-template-columns: 240px 1fr;
max-height: calc(100vh - 200px);
}
.category-item {
padding: 14px 16px;
}
.category-text h4 {
font-size: 13px;
}
.category-text p {
font-size: 10px;
}
.mega-right {
padding: 20px;
}
.section-title {
font-size: 16px;
}
.links-grid {
grid-template-columns: 1fr;
}
.hero-content {
grid-template-columns: 1fr;
gap: 50px;
text-align: center;
}
.hero-text {
max-width: 100%;
margin: 0 auto;
}
.hero-buttons {
justify-content: center;
}
.products-grid {
grid-template-columns: repeat(2, 1fr);
}
.about-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
.sponsor-slide {
width: 160px;
height: 70px;
padding: 12px 18px;
}
} @media (max-width: 768px) and (orientation: landscape) {
:root {
--navbar-height: 70px;
}
.mega-menu {
position: fixed;
top: var(--navbar-height) !important;
left: 10px;
right: 10px;
transform: none;
max-height: calc(100vh - 90px);
border-radius: 8px;
margin-top: 0;
}
.mega-dropdown.active .mega-menu {
transform: none;
}
.mega-menu-inner {
grid-template-columns: 200px 1fr;
max-height: calc(100vh - 110px);
}
.mobile-menu.active {
max-height: calc(100vh - var(--navbar-height));
}
} @media (max-width: 768px) and (orientation: portrait) {
:root {
--navbar-height: 70px;
}
.navbar {
height: var(--navbar-height);
}
.logo-title {
font-size: 16px;
}
.logo-subtitle {
font-size: 10px;
}
.logo-partner {
display: none;
}
.mega-menu {
position: fixed;
top: var(--navbar-height) !important;
left: 0;
right: 0;
bottom: 0;
width: 100%;
max-width: 100%;
max-height: none;
height: calc(100vh - var(--navbar-height));
border-radius: 0;
transform: translateY(100%);
opacity: 1;
visibility: visible;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
margin-top: 0;
z-index: 10;
}
.mega-dropdown.active .mega-menu {
transform: translateY(0);
}
.mega-menu-inner {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
max-height: 100%;
}
.mega-left {
max-height: 180px;
border-right: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.category-list {
display: flex;
overflow-x: auto;
padding: 10px;
gap: 8px;
max-height: 180px;
}
.category-item {
flex-direction: column;
align-items: flex-start;
min-width: 160px;
border-left: none;
border-bottom: 3px solid transparent;
padding: 12px;
background: var(--color-white);
border-radius: 6px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.category-item.active {
border-bottom-color: var(--color-primary);
}
.category-icon {
margin-bottom: 8px;
}
.mega-right {
max-height: calc(100vh - 250px);
padding: 20px;
overflow-y: auto;
}
.section-title {
font-size: 16px;
text-align: center;
}
.subcategory-group {
margin-bottom: 20px;
}
.links-grid {
grid-template-columns: 1fr;
}
.mobile-menu.active {
max-height: calc(100vh - var(--navbar-height));
}
.hero {
min-height: 450px;
}
.hero-text {
padding: 40px 0;
}
.hero-title {
font-size: 28px;
}
.hero-buttons {
flex-direction: column;
}
.products-grid {
grid-template-columns: 1fr;
}
.about-header h2 {
font-size: 28px;
}
.image-grid {
grid-template-columns: 1fr;
}
.image-tall {
grid-row: span 1;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.sponsors-section {
padding: 25px 0;
}
.sponsors-title h4 {
font-size: 16px;
}
.sponsors-track {
gap: 30px;
}
.sponsor-slide {
width: 120px;
height: 55px;
padding: 8px 12px;
}
.sponsors-wrapper::before,
.sponsors-wrapper::after {
width: 60px;
}
} @media (max-width: 480px) {
:root {
--navbar-height: 60px;
}
.logo-title {
font-size: 14px;
}
.logo-subtitle {
font-size: 9px;
}
.container {
padding: 0 15px;
}
.mega-right {
max-height: calc(100vh - 240px);
padding: 16px;
}
.category-item {
min-width: 140px;
padding: 10px;
}
.category-text h4 {
font-size: 12px;
}
.category-text p {
font-size: 9px;
}
.section-title {
font-size: 15px;
}
.subcategory-section__title {
font-size: 15px;
}
.subcategory-group__title {
font-size: 12px;
}
.link-item {
font-size: 12px;
padding: 8px 10px;
}
.mobile-mega-toggle {
font-size: 14px;
padding: 12px 15px;
}
.mobile-mega-section h5 {
font-size: 12px;
padding: 8px 12px;
}
.mobile-mega-section a {
font-size: 12px;
padding: 6px 12px;
}
.mobile-menu a {
padding: 10px 15px;
font-size: 14px;
}
.logo-partner {
display: none;
}
.hero-title {
font-size: 24px;
}
.section-header h2 {
font-size: 24px;
}
.about-header h2 {
font-size: 24px;
}
.sponsors-section {
padding: 20px 0;
}
.sponsors-title h4 {
font-size: 14px;
}
.sponsors-track {
gap: 20px;
}
.sponsor-slide {
width: 100px;
height: 50px;
padding: 6px 10px;
}
.sponsors-wrapper::before,
.sponsors-wrapper::after {
width: 40px;
}
} .mega-dropdown.active .mega-menu {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(5px);
pointer-events: all;
} .mega-dropdown.active .has-dropdown .arrow {
transform: translateY(-50%) rotate(180deg);
} .config-figure { margin: 0; }
.config-item {
position: relative;
border-radius: 14px;
overflow: hidden;
cursor: pointer;
transition: transform .25s ease;
background: rgba(0,0,0,.04);
}
.config-item:hover { transform: translateY(-2px); }
.config-item--normal,
.config-item--square { aspect-ratio: 1 / 1; }
.config-figure--wide { grid-column: span 2; }
.config-item--wide { aspect-ratio: 5 / 1; }
.config-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.config-item__desc{
margin-top: 8px;
font-size: 13px;
line-height: 1.3;
text-align: center;
opacity: .85;
} .benefits-subsection { margin-top: 26px; }
.benefits-subheader { margin-bottom: 14px; }
.benefits-subheader h3 { margin: 0 0 6px; }
.benefits-subtitle { margin: 0; opacity: .8; }
.benefits-grid--media { margin-top: 10px; }
.benefit-card--media { display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: start; }
.benefit-media img { width: 200px; height: auto; border-radius: 8px; object-fit: cover; display: block; }
.benefit-kicker { font-size: 12px; letter-spacing: .02em; opacity: .8; margin-bottom: 4px; }
.benefit-body h4 { margin: 0 0 6px; }
.benefit-body p { margin: 0; opacity: .9; } .hero.hero--inner .hero-bg { min-height: 360px; }
.references-section{ padding: 60px 0; background: #fff; }
.references-list{ display: grid; gap: 50px; }
.reference-block{
border-radius: 8px;
padding: 26px;
background: #f8f9fa;
}
.reference-block__header{ margin-bottom: 18px; }
.reference-block__title{ margin: 0 0 6px; font-size: 26px; line-height: 1.2; }
.reference-block__meta{ margin: 0; font-weight: 600; color: var(--color-dark); opacity: 0.8; }
.reference-block__desc{ margin: 10px 0 0; color: var(--color-dark); opacity: 0.85; }
.reference-block__grid.gallery-grid{ grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.references-single{ padding: 60px 0; }
.references-single__top{ padding-top: 40px; }
.references-single__back{ display: inline-block; margin-bottom: 14px; font-weight: 600; }
.references-single__title{ margin: 0 0 6px; }
.references-single__meta{ margin: 0; opacity: 0.8; font-weight: 600; }
.references-single__desc{ margin: 10px 0 0; opacity: 0.85; }
@media (max-width: 768px){
.reference-block{ padding: 18px; }
.reference-block__title{ font-size: 22px; }
} .about-hero {
padding: 140px 0 60px;
background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
border-bottom: 1px solid #f0f0f0;
}
.about-hero h1 {
font-size: 48px;
font-weight: 800;
color: #222;
margin-bottom: 20px;
line-height: 1.2;
}
.about-hero .highlight {
color: #F7941D;
}
.about-hero .lead {
font-size: 18px;
color: #555;
max-width: 800px;
line-height: 1.7;
margin-bottom: 30px;
} .hero-nav{
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hero-nav__btn{
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 18px;
background: #F7941D;
color: #fff;
text-decoration: none;
font-weight: 700;
border-radius: 6px;
transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero-nav__btn:hover{
background: #d97f14;
transform: translateY(-1px);
box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.hero-nav__btn:focus-visible{
outline: 3px solid rgba(247, 148, 29, 0.35);
outline-offset: 2px;
}
.stats-row {
display: flex;
gap: 40px;
flex-wrap: wrap;
margin-top: 40px;
}
.stat-item {
display: flex;
flex-direction: column;
}
.stat-number {
font-size: 36px;
font-weight: 800;
color: #F7941D;
}
.stat-label {
display: block;
font-size: 14px;
color: #666;
} .profile-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
background: #fff;
border-radius: 24px;
padding: 48px;
margin: 40px 0;
box-shadow: 0 5px 30px rgba(0,0,0,0.03);
border: 1px solid #f0f0f0;
}
.profile-section h3 {
font-size: 24px;
font-weight: 700;
margin-bottom: 16px;
}
.profile-section p {
color: #555;
line-height: 1.7;
}
.expo-box {
background: #f8f9fa;
padding: 24px;
border-radius: 16px;
margin-top: 24px;
}
.expo-box h4 {
font-size: 16px;
font-weight: 700;
margin-bottom: 16px;
}
.expo-list {
list-style: none;
padding: 0;
margin: 20px 0 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.expo-list li {
font-size: 14px;
color: #555;
padding-left: 20px;
position: relative;
}
.expo-list li::before {
content: "—";
color: #F7941D;
position: absolute;
left: 0;
}
.service-pricing {
display: flex;
gap: 32px;
margin-top: 24px;
background: #f8f9fa;
padding: 20px;
border-radius: 16px;
}
.pricing-item {
display: flex;
flex-direction: column;
}
.pricing-price {
font-size: 28px;
font-weight: 800;
color: #F7941D;
}
.pricing-desc {
font-size: 13px;
color: #666;
}
.service-note {
margin-top: 20px;
font-size: 14px;
color: #777;
} .catalogue-section,
.techlist-section {
background: #f8f9fc;
border-radius: 24px;
padding: 48px;
margin: 60px 0;
}
.section-intro {
text-align: center;
margin-bottom: 40px;
}
.section-intro h2 {
font-size: 32px;
font-weight: 700;
color: #333;
margin-bottom: 16px;
}
.section-intro p {
color: #666;
}
.catalogue-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 30px;
}
.catalogue-category {
background: white;
padding: 28px;
border-radius: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.02);
border: 1px solid #edf0f5;
}
.catalogue-category h4 {
font-size: 18px;
font-weight: 700;
color: #333;
margin-bottom: 20px;
padding-bottom: 12px;
border-bottom: 2px solid #F7941D;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.product-list {
list-style: none;
padding: 0;
margin: 0;
}
.product-list li {
font-size: 14px;
color: #555;
padding: 8px 0 8px 20px;
position: relative;
border-bottom: 1px dashed #eee;
}
.product-list li::before {
content: "→";
color: #F7941D;
position: absolute;
left: 0;
font-weight: 600;
}
.product-list li:last-child {
border-bottom: none;
}
.product-list a {
color: #555;
text-decoration: none;
transition: color 0.2s, padding-left 0.2s;
display: inline-block;
}
.product-list a:hover {
color: #F7941D;
padding-left: 3px;
}
.catalogue-note {
text-align: right;
margin-top: 24px;
font-size: 14px;
color: #F7941D;
font-weight: 600;
} .certifications-section {
padding: 20px 0 60px;
}
.cert-banner {
background: #fff;
border: 1px solid #eaeaea;
border-radius: 20px;
padding: 40px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.cert-badge {
display: flex;
flex-direction: column;
}
.cert-badge span {
font-size: 26px;
font-weight: 800;
color: #333;
line-height: 1.2;
}
.cert-badge small {
display: block;
font-size: 12px;
color: #777;
}
.cert-list {
display: flex;
gap: 30px;
}
.cert-list span {
font-size: 14px;
color: #555;
}
.cert-description {
margin-top: 30px;
font-size: 14px;
color: #777;
text-align: center;
max-width: 800px;
margin-left: auto;
margin-right: auto;
} @media (max-width: 1024px) {
.catalogue-grid {
grid-template-columns: repeat(2, 1fr);
}
.profile-section {
grid-template-columns: 1fr;
}
.about-hero h1 {
font-size: 38px;
}
}
@media (max-width: 768px) {
.catalogue-grid {
grid-template-columns: 1fr;
}
.catalogue-section,
.techlist-section,
.profile-section {
padding: 28px;
}
.expo-list {
grid-template-columns: 1fr;
}
.about-hero {
padding: 120px 0 40px;
}
.about-hero h1 {
font-size: 32px;
}
.service-pricing {
flex-direction: column;
gap: 16px;
}
.cert-banner {
flex-direction: column;
gap: 20px;
text-align: center;
}
.cert-list {
flex-direction: column;
gap: 10px;
}
} .two-columns {
display: flex;
gap: 40px;
}
.two-columns .col {
flex: 1;
}
.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 30px;
}
.step {
padding: 20px;
background: #f5f5f5;
border-radius: 8px;
text-align: center;
font-weight: 600;
}
.cta-section {
text-align: center;
padding: 60px 0;
}
.cta-section .btn {
display: inline-block;
padding: 12px 30px;
background: #000;
color: #fff;
text-decoration: none;
border-radius: 5px;
}:root {
--navbar-height: 70px;
--navbar-height-mobile: 60px;
--color-primary: #F7941D;
--color-red: #E30613;
--color-dark: #333333;
--color-text: #666666;
--color-light: #f8f9fa;
--color-white: #FFFFFF;
--shadow-nav: 0 2px 10px rgba(0, 0, 0, 0.08);
--shadow-nav-scrolled: 0 4px 20px rgba(0, 0, 0, 0.12);
--transition-fast: 0.2s ease;
--transition-normal: 0.3s ease;
} .navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: var(--navbar-height);
background: var(--color-white);
z-index: 1000;
transition: all var(--transition-normal);
box-shadow: var(--shadow-nav);
}
.navbar.is-scrolled {
box-shadow: var(--shadow-nav-scrolled);
}
.navbar.is-hidden {
transform: translateY(-100%);
}
.nav-content {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .nav-logo {
display: flex;
align-items: center;
gap: 16px;
}
.logo {
display: flex;
align-items: center;
}
.logo__img {
height: 40px;
width: auto;
display: block;
}
.logo__img--partner {
height: 35px;
padding-left: 16px;
border-left: 1px solid #e0e0e0;
} .nav-menu {
display: block;
}
.nav-menu__list {
display: flex;
align-items: center;
gap: 8px;
list-style: none;
margin: 0;
padding: 0;
}
.nav-menu__item {
position: relative;
}
.nav-menu__link {
display: flex;
align-items: center;
gap: 6px;
padding: 10px 16px;
font-size: 14px;
font-weight: 600;
color: var(--color-dark);
text-decoration: none;
border-radius: 6px;
transition: all var(--transition-fast);
background: none;
border: none;
cursor: pointer;
font-family: inherit;
}
.nav-menu__link:hover {
color: var(--color-primary);
background: rgba(247, 148, 29, 0.05);
}
.nav-menu__arrow {
transition: transform var(--transition-normal);
}
.nav-menu__item--has-dropdown.is-open .nav-menu__arrow {
transform: rotate(180deg);
} .nav-menu__item--cta {
margin-left: 8px;
}
.nav-menu__item--cta .btn {
padding: 10px 20px;
font-size: 13px;
} .mega-menu {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(10px);
width: 850px;
max-width: 90vw;
background: var(--color-white);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border-radius: 12px;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 100;
overflow: hidden;
margin-top: 8px;
pointer-events: none;
}
.nav-menu__item--has-dropdown.is-open .mega-menu {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
pointer-events: auto;
}
.mega-menu__inner {
display: grid;
grid-template-columns: 280px 1fr;
min-height: 400px;
max-height: 80vh;
} .mega-menu__categories {
background: var(--color-light);
border-right: 1px solid #e0e0e0;
overflow-y: auto;
}
.category-list {
list-style: none;
margin: 0;
padding: 0;
}
.category-item {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
cursor: pointer;
transition: all var(--transition-fast);
border-left: 4px solid transparent;
background: transparent;
}
.category-item:hover,
.category-item.is-active {
background: var(--color-white);
border-left-color: var(--color-primary);
}
.category-item.is-active {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.category-item__icon {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-primary);
font-size: 12px;
font-weight: bold;
transition: transform var(--transition-fast);
}
.category-item.is-active .category-item__icon {
transform: translateX(3px);
}
.category-item__text {
display: flex;
flex-direction: column;
gap: 2px;
}
.category-item__text strong {
font-size: 13px;
font-weight: 700;
color: var(--color-dark);
line-height: 1.3;
}
.category-item__text span {
font-size: 11px;
color: var(--color-text);
line-height: 1.3;
} .mega-menu__content {
padding: 24px;
overflow-y: auto;
}
.subcategory-section {
display: none;
animation: fadeIn 0.3s ease;
}
.subcategory-section.is-active {
display: block;
}
.subcategory-section__title {
font-size: 16px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 20px;
padding-bottom: 12px;
border-bottom: 2px solid var(--color-primary);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.subcategory-section__desc {
font-size: 14px;
color: var(--color-text);
line-height: 1.6;
margin-bottom: 20px;
}
.subcategory-group {
margin-bottom: 24px;
}
.subcategory-group h5 {
font-size: 12px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 12px;
padding-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.links-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 8px;
list-style: none;
margin: 0;
padding: 0;
}
.link-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 12px;
font-size: 13px;
color: var(--color-text);
background: var(--color-light);
border-radius: 6px;
transition: all var(--transition-fast);
border-left: 3px solid transparent;
text-decoration: none;
}
.link-item:hover {
background: rgba(247, 148, 29, 0.1);
color: var(--color-dark);
}
.link-item::after {
content: "→";
color: var(--color-primary);
font-size: 11px;
opacity: 0.7;
transition: all var(--transition-fast);
}
.link-item:hover::after {
opacity: 1;
transform: translateX(2px);
}
.subcategory-list {
list-style: none;
margin: 0;
padding: 0;
}
.subcategory-list li {
margin-bottom: 8px;
}
.subcategory-link {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 12px;
font-size: 13px;
font-weight: 600;
color: var(--color-dark);
background: var(--color-light);
border-radius: 6px;
transition: all var(--transition-fast);
text-decoration: none;
}
.subcategory-link:hover {
background: rgba(247, 148, 29, 0.1);
color: var(--color-primary);
}
.subcategory-link::after {
content: "→";
color: var(--color-primary);
font-size: 11px;
} .mobile-menu-toggle {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
width: 44px;
height: 44px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
gap: 6px;
}
.mobile-menu-toggle__line {
display: block;
width: 24px;
height: 2px;
background: var(--color-dark);
transition: all var(--transition-normal);
transform-origin: center;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
} .mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--color-white);
z-index: 999;
transform: translateX(100%);
transition: transform var(--transition-normal);
}
.mobile-menu.is-open {
transform: translateX(0);
}
.mobile-menu__inner {
display: flex;
flex-direction: column;
height: 100%;
max-width: 400px;
margin-left: auto;
background: var(--color-white);
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
border-bottom: 1px solid #e0e0e0;
}
.mobile-menu__title {
font-size: 18px;
font-weight: 700;
color: var(--color-dark);
}
.mobile-menu__close {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: none;
border: none;
cursor: pointer;
color: var(--color-dark);
border-radius: 6px;
transition: all var(--transition-fast);
}
.mobile-menu__close:hover {
background: var(--color-light);
color: var(--color-primary);
}
.mobile-menu__nav {
flex: 1;
overflow-y: auto;
padding: 16px 0;
}
.mobile-menu__list {
list-style: none;
margin: 0;
padding: 0;
}
.mobile-menu__item {
border-bottom: 1px solid #f0f0f0;
}
.mobile-menu__item--cta {
padding: 20px;
border-bottom: none;
}
.mobile-menu__item--cta .btn {
width: 100%;
text-align: center;
}
.mobile-menu__link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
font-size: 15px;
font-weight: 600;
color: var(--color-dark);
text-decoration: none;
background: none;
border: none;
width: 100%;
text-align: left;
cursor: pointer;
font-family: inherit;
transition: all var(--transition-fast);
}
.mobile-menu__link:hover {
background: var(--color-light);
color: var(--color-primary);
}
.mobile-menu__arrow {
transition: transform var(--transition-normal);
}
.mobile-menu__item.is-open .mobile-menu__arrow {
transform: rotate(90deg);
} .mobile-submenu {
display: none;
list-style: none;
margin: 0;
padding: 0;
background: var(--color-light);
}
.mobile-menu__item.is-open .mobile-submenu {
display: block;
animation: slideDown 0.3s ease;
}
.mobile-submenu__item {
border-bottom: 1px solid #e8e8e8;
}
.mobile-submenu__item--title {
padding: 12px 20px 8px;
font-size: 11px;
font-weight: 700;
color: var(--color-primary);
text-transform: uppercase;
letter-spacing: 0.5px;
background: rgba(247, 148, 29, 0.05);
border-bottom: none;
}
.mobile-submenu__item--subline {
padding: 4px 20px 12px;
font-size: 10px;
font-weight: 400;
color: var(--color-text);
text-transform: none;
letter-spacing: 0.3px;
background: transparent;
border-bottom: none;
opacity: 0.8;
}
.mobile-submenu__link {
display: block;
padding: 12px 20px 12px 32px;
font-size: 14px;
color: var(--color-text);
text-decoration: none;
transition: all var(--transition-fast);
}
.mobile-submenu__link:hover {
color: var(--color-primary);
background: rgba(247, 148, 29, 0.05);
} @keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideDown {
from {
opacity: 0;
max-height: 0;
}
to {
opacity: 1;
max-height: 500px;
}
}  @media (max-width: 1024px) {
.nav-menu {
display: none;
}
.mobile-menu-toggle {
display: flex;
}
.mobile-menu {
display: block;
}
.nav-logo {
gap: 12px;
}
.logo__img {
height: 35px;
}
.logo__img--partner {
height: 30px;
padding-left: 12px;
}
} @media (max-width: 768px) {
:root {
--navbar-height: 60px;
}
.nav-content {
padding: 0 16px;
}
.logo__img--partner {
display: none;
}
.mobile-menu__inner {
max-width: 100%;
}
} @media (max-width: 480px) {
.logo__img {
height: 30px;
}
.mobile-menu-toggle {
width: 40px;
height: 40px;
}
} .mega-menu__categories::-webkit-scrollbar,
.mega-menu__content::-webkit-scrollbar,
.mobile-menu__nav::-webkit-scrollbar {
width: 6px;
}
.mega-menu__categories::-webkit-scrollbar-track,
.mega-menu__content::-webkit-scrollbar-track,
.mobile-menu__nav::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.mega-menu__categories::-webkit-scrollbar-thumb,
.mega-menu__content::-webkit-scrollbar-thumb,
.mobile-menu__nav::-webkit-scrollbar-thumb {
background: var(--color-primary);
border-radius: 3px;
} @media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
} .nav-menu__link:focus,
.mobile-menu__link:focus,
.mobile-menu__close:focus,
.mobile-menu-toggle:focus,
.link-item:focus,
.subcategory-link:focus {
outline: 2px solid var(--color-primary);
outline-offset: 2px;
} .skip-link {
position: absolute;
top: -40px;
left: 0;
background: var(--color-primary);
color: var(--color-dark);
padding: 8px 16px;
text-decoration: none;
font-weight: 600;
z-index: 10000;
transition: top var(--transition-fast);
}
.skip-link:focus {
top: 0;
} .nav-content{
justify-content: flex-start;
gap: 24px;
} .nav-menu{
flex: 1 1 auto;
min-width: 0;
} .nav-menu__list{
justify-content: center;
flex-wrap: nowrap;
gap: 6px;
} .nav-menu__item--cta:first-of-type{
margin-left: auto;
} .logo--partner{
padding-left: 16px;
border-left: 1px solid #e0e0e0;
}
.logo__img--partner{
padding-left: 0;
border-left: 0;
} @media (max-width: 1100px){
.nav-menu__link{ padding: 10px 12px; }
.nav-content{ gap: 16px; }
} @media (max-width: 980px){
.nav-menu__list{
justify-content: flex-start;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.nav-menu__list::-webkit-scrollbar{ display:none; }
.nav-menu__item--cta{ flex: 0 0 auto; }
}.product-hero {
position: relative;
padding: 140px 0 80px;
background-size: cover;
background-position: center;
color: var(--color-white);
text-align: center;
isolation: isolate;
}
.product-hero::before {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: -1;
}
.product-hero .container {
position: relative;
z-index: 1;
}
.product-hero__title {
font-size: 48px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.product-hero__subtitle {
font-size: 18px;
max-width: 600px;
margin: 0 auto;
opacity: 0.95;
text-shadow: 0 1px 2px rgba(0,0,0,0.3);
} .product-hero-text {
padding: 50px 0;
background: var(--color-white);
}
.product-hero-text__content {
max-width: 900px;
margin: 0 auto;
} .product-overview {
padding: 60px 0;
background: var(--color-white);
}
.overview-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: start;
} .overview-images {
position: sticky;
top: 100px;
}
.main-image {
position: relative;
border-radius: 12px;
overflow: hidden;
margin-bottom: 20px;
background: #f5f5f5;
box-shadow: var(--shadow-card);
}
.main-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease;
}
.main-image:hover img {
transform: scale(1.02);
}
.product-badge {
position: absolute;
top: 20px;
left: 20px;
background: var(--color-red);
color: white;
padding: 6px 14px;
border-radius: 30px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.thumbnail-list {
display: flex;
gap: 12px;
overflow-x: auto;
padding-bottom: 8px;
}
.thumbnail {
flex: 0 0 80px;
height: 80px;
border: 2px solid transparent;
border-radius: 8px;
overflow: hidden;
padding: 0;
cursor: pointer;
background: none;
transition: all 0.2s;
}
.thumbnail.active {
border-color: var(--color-primary);
}
.thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
} .overview-content h2 {
font-size: 32px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 20px;
position: relative;
padding-bottom: 15px;
}
.overview-content h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background: var(--color-primary);
}
.feature-list {
list-style: none;
padding: 0;
margin: 0 0 24px 0;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 12px;
}
.feature-list li {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: var(--color-text);
}
.feature-list .checkmark {
color: var(--color-primary);
font-weight: 700;
font-size: 16px;
}
.description {
margin-bottom: 30px;
font-size: 15px;
line-height: 1.8;
color: var(--color-text);
}
.tech-specs {
background: #f9f9f9;
border-radius: 12px;
padding: 24px;
margin-bottom: 30px;
}
.tech-specs h3 {
font-size: 18px;
font-weight: 600;
color: var(--color-dark);
margin-bottom: 16px;
}
.tech-specs dl {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 8px 16px;
margin: 0;
}
.tech-specs dt {
font-weight: 600;
color: var(--color-dark);
font-size: 14px;
}
.tech-specs dd {
font-size: 14px;
color: var(--color-text);
margin: 0;
} .benefits-section {
padding: 60px 0;
background: #f8f9fa;
}
.section-header {
text-align: center;
margin-bottom: 40px;
}
.section-header h2 {
font-size: 32px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 12px;
}
.section-subtitle {
font-size: 16px;
color: var(--color-text);
max-width: 600px;
margin: 0 auto 16px;
}
.section-line {
width: 60px;
height: 3px;
background: var(--color-primary);
margin: 0 auto;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.benefit-card {
background: var(--color-white);
border-radius: 16px;
padding: 30px 24px;
text-align: center;
box-shadow: var(--shadow-card);
transition: all 0.3s ease;
}
.benefit-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-card-hover);
}
.benefit-card h3 {
font-size: 18px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 12px;
}
.benefit-card p {
font-size: 14px;
color: var(--color-text);
line-height: 1.6;
margin: 0;
} .benefits-grid--media{
display:grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
}
@media (max-width: 1024px){
.benefits-grid--media{
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px){
.benefits-grid--media{
grid-template-columns: 1fr;
}
}
.benefit-card--media{
display:flex;
gap: 16px;
align-items:flex-start;
text-align:left;
padding: 24px;
}
.benefit-media{
flex: 0 0 120px;
max-width: 120px;
}
@media (max-width: 1024px){
.benefit-media{
flex-basis: 104px;
max-width: 104px;
}
}
.benefit-media img{
width: 100%;
height: auto;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 14px;
display:block;
}
.benefit-body h4{
font-size: 18px;
font-weight: 700;
color: var(--color-dark);
margin: 0 0 8px;
}
.benefit-kicker{
font-size: 12px;
font-weight: 700;
letter-spacing: .04em;
text-transform: uppercase;
color: var(--color-primary);
margin-bottom: 6px;
}
.benefit-body p{
margin: 0;
} .extra-section {
padding: 60px 0;
}
.extra-section:nth-child(even) {
background: #f8f9fa;
}
.extra-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}
.extra-section--reverse .extra-grid {
direction: rtl;
}
.extra-section--reverse .extra-content {
direction: ltr;
}
.extra-content h2 {
font-size: 28px;
font-weight: 700;
color: var(--color-dark);
margin-bottom: 20px;
position: relative;
padding-bottom: 15px;
}
.extra-content h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: var(--color-primary);
}
.extra-text {
font-size: 15px;
line-height: 1.8;
color: var(--color-text);
}
.extra-images {
display: flex;
gap: 16px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.extra-images img {
width: 100%;
max-width: 320px;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
.extra-images img { max-width: 100%; }
} .config-section {
padding: 60px 0;
background: var(--color-white);
}
.config-tabs {
margin-top: 40px;
}
.tab-nav {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
margin-bottom: 30px;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
}
.tab-btn {
padding: 12px 24px;
background: transparent;
border: none;
font-size: 14px;
font-weight: 600;
color: var(--color-text);
cursor: pointer;
transition: all 0.2s;
border-radius: 30px;
position: relative;
}
.tab-btn:hover {
color: var(--color-primary);
}
.tab-btn.active {
background: var(--color-primary);
color: white;
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}
.config-group__label{
font-size: 16px;
font-weight: 700;
margin: 18px 0 10px;
color: var(--color-dark);
}
.config-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 14px; #tab-8 .config-grid,
#tab-9 .config-grid,
#tab-10 .config-grid,
#tab-11 .config-grid {
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
} #tab-10 .config-item--wide,
#tab-11 .config-item--wide {
grid-column: span 1;
aspect-ratio: 1 / 3;
}
}
.config-item {
position: relative;
border-radius: 12px;
overflow: hidden;
cursor: pointer;
transition: all 0.3s;
background: #f5f5f5;
}
.config-item:hover {
transform: scale(1.02);
box-shadow: var(--shadow-card-hover);
}
.config-item--normal {
aspect-ratio: 1 / 1;
}
.config-item--wide {
grid-column: span 2;
aspect-ratio: 3 / 1;
max-height: 120px;
}
.config-item--tall{
aspect-ratio: 1 / 3;
} #tab-8 .config-item--wide,
#tab-9 .config-item--wide{
grid-column: span 1;
aspect-ratio: 1 / 2;
max-height: 220px;
}
.config-item img {
width: 100%;
height: 100%;
object-fit: cover;
} .config-grid--tall{
grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
}
.config-grid--squares{
grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
} .config-item--tall{
max-height: 240px;
}
.config-item__desc{
font-size:14px;
line-height:1.35;
text-align:center;
color:var(--color-dark);
font-weight:600;
} .gallery-section {
padding: 60px 0;
background: #f8f9fa;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 14px;
}
.gallery-item {
position: relative;
border-radius: 12px;
overflow: hidden;
cursor: pointer;
aspect-ratio: 4 / 3;
transition: all 0.3s;
background: #f5f5f5;
}
.gallery-item:hover {
transform: scale(1.02);
box-shadow: var(--shadow-card-hover);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s;
}
.gallery-item:hover img {
transform: scale(1.05);
} .lightbox {
display: none;
position: fixed;
z-index: 10000;
inset: 0;
background: rgba(0, 0, 0, 0.9);
justify-content: center;
align-items: center;
flex-direction: column;
padding: 40px;
}
.lightbox.active,
.lightbox.is-active {
display: flex;
}
.lightbox-content {
max-width: 90%;
max-height: 80vh;
object-fit: contain;
border-radius: 4px;
}
.lightbox-close {
position: absolute;
top: 20px;
right: 30px;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
transition: opacity 0.2s;
background: none;
border: none;
padding: 10px;
line-height: 1;
}
.lightbox-close:hover {
opacity: 0.7;
}
.lightbox-caption {
color: white;
text-align: center;
padding: 20px;
font-size: 16px;
max-width: 800px;
}
.lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.1);
border: none;
color: white;
font-size: 30px;
padding: 15px 20px;
cursor: pointer;
transition: background 0.2s;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}
.lightbox-nav:hover {
background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav--prev {
left: 20px;
}
.lightbox-nav--next {
right: 20px;
} @media (max-width: 1024px) {
.product-hero__title {
font-size: 38px;
}
.overview-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.overview-images {
position: static;
}
.tech-specs dl {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.product-hero {
padding: 120px 0 60px;
}
.product-hero__title {
font-size: 28px;
}
.product-hero__subtitle {
font-size: 16px;
}
.extra-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.extra-section--reverse .extra-grid {
direction: ltr;
}
.benefits-grid {
grid-template-columns: 1fr;
}
.tab-nav {
flex-wrap: nowrap;
overflow-x: auto;
justify-content: flex-start;
padding-bottom: 10px;
}
.tab-btn {
white-space: nowrap;
}
.config-grid {
grid-template-columns: 1fr;
}
.config-item--wide {
grid-column: span 1;
aspect-ratio: 1 / 1;
}
.gallery-grid {
grid-template-columns: 1fr;
}
.lightbox-nav {
width: 40px;
height: 40px;
font-size: 20px;
}
}
@media (max-width: 480px) {
.tech-specs dl {
grid-template-columns: 1fr;
}
.feature-list {
grid-template-columns: 1fr;
}
}
.config-figure { display: block; } .dc-carousel{
position: relative;
}
.dc-carousel__viewport{
overflow: hidden;
border-radius: 12px;
}
.dc-carousel__track{
display: flex;
transition: transform 300ms ease;
will-change: transform;
}
.dc-carousel__slide{
flex: 0 0 100%;
padding: 0;
}
.dc-carousel .gallery-item{
margin: 0;
width: 100%;
aspect-ratio: 4 / 3;
}
.dc-carousel__btn{
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 3;
width: 44px;
height: 44px;
border: 0;
border-radius: 999px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
line-height: 1;
background: rgba(0,0,0,0.55);
color: #fff;
}
.dc-carousel__btn--prev{ left: 10px; }
.dc-carousel__btn--next{ right: 10px; }
@media (min-width: 900px){
.dc-carousel__slide{
flex-basis: 50%;
}
}
.config-item--square{ aspect-ratio: 1 / 1; }