.elementor-215 .elementor-element.elementor-element-4a8c2b8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-215 .elementor-element.elementor-element-4a8c2b8{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-a2d3b25 *//* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1A1A1A;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #262C39 0%, #1a1d2e 50%, #2C4A52 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(231, 176, 34, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(231, 176, 34, 0.2);
    border: 2px solid rgba(231, 176, 34, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    color: #E7B022;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: 72px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight {
    background: linear-gradient(135deg, #E7B022 0%, #F4B942 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-alt {
    color: #E7B022;
    text-shadow: 0 0 30px rgba(231, 176, 34, 0.5);
}

.hero-subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-subheadline strong {
    color: #E7B022;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #E7B022;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
    font-size: 32px;
    margin-left: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #E7B022 0%, #F4B942 100%);
    color: #262C39;
    box-shadow: 0 10px 40px rgba(231, 176, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(231, 176, 34, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(231, 176, 34, 0.5);
}

.btn-secondary:hover {
    background: rgba(231, 176, 34, 0.2);
    border-color: #E7B022;
    transform: translateY(-5px);
}

.btn.large {
    padding: 22px 50px;
    font-size: 18px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(231, 176, 34, 0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #E7B022;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

.scroll-indicator p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

.section-header.light {
    color: #FFFFFF;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #E7B022;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-tag.light {
    color: #F4B942;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #262C39;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light {
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 18px;
    color: #4A4A4A;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 120px 20px;
    background: #F5F5F5;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.lead {
    font-size: 22px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-description {
    margin-bottom: 40px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.vm-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #E7B022;
    transition: all 0.3s ease;
}

.vm-card:hover {transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.vm-icon {
font-size: 40px;
margin-bottom: 15px;
}
.vm-card h3 {
font-size: 20px;
color: #262C39;
margin-bottom: 12px;
}
.vm-card p {
font-size: 15px;
color: #4A4A4A;
line-height: 1.6;
}
.values-section h3 {
font-size: 24px;
color: #262C39;
margin-bottom: 30px;
font-weight: 700;
}
.values-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 15px;
}
.value-card {
background: #FFFFFF;
padding: 25px 15px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.value-card:hover {
transform: translateY(-8px);
border-color: #E7B022;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.value-icon {
font-size: 32px;
margin-bottom: 12px;
}
.value-card h4 {
font-size: 14px;
color: #262C39;
font-weight: 700;
margin-bottom: 8px;
}
.value-card p {
font-size: 12px;
color: #4A4A4A;
line-height: 1.4;
}
.about-image,
.image-placeholder {
background: #E0E0E0;
border-radius: 15px;
padding: 100px 40px;
text-align: center;
color: #4A4A4A;
font-size: 18px;
font-weight: 600;
}
/* ========== TECHNOLOGY SECTION ========== */
.technology-section {
padding: 120px 20px;
background: linear-gradient(135deg, #262C39 0%, #2C4A52 100%);
color: #FFFFFF;
}
.tech-intro {
font-size: 18px;
color: rgba(255, 255, 255, 0.9);
max-width: 900px;
margin: 0 auto;
}
.tech-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
margin-top: 60px;
}
.tech-image {
position: relative;
}
.tech-badge {
position: absolute;
top: 30px;
right: 30px;
background: linear-gradient(135deg, #E7B022 0%, #F4B942 100%);
color: #262C39;
padding: 20px 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 10px 30px rgba(231, 176, 34, 0.4);
}
.tech-badge span {
display: block;
font-size: 12px;
font-weight: 600;
margin-bottom: 5px;
}
.tech-badge strong {
font-size: 20px;
font-weight: 900;
}
.tech-features {
display: grid;
gap: 25px;
}
.tech-feature {
display: flex;
gap: 20px;
align-items: flex-start;
background: rgba(255, 255, 255, 0.05);
padding: 25px;
border-radius: 12px;
border-left: 4px solid #E7B022;
transition: all 0.3s ease;
}
.tech-feature:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateX(10px);
}
.tech-feature-icon {
font-size: 32px;
}
.tech-feature h4 {
font-size: 18px;
margin-bottom: 8px;
color: #E7B022;
}
.tech-feature p {
font-size: 14px;
opacity: 0.8;
line-height: 1.6;
}
/* ========== PRODUCTS SECTION ========== */
.products-section {
padding: 120px 20px;
background: #FFFFFF;
}
.products-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.product-card {
background: #F5F5F5;
border-radius: 20px;
overflow: hidden;
transition: all 0.4s ease;
border: 2px solid transparent;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
border-color: #E7B022;
}
.product-card.featured {
grid-column: span 2;
}
.product-card.featured .product-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.product-image {
position: relative;
height: 300px;
}
.product-card.featured .product-image {
grid-column: span 2;
height: 400px;
}
.product-badge {
position: absolute;
top: 20px;
right: 20px;
background: #E7B022;
color: #262C39;
padding: 8px 20px;
border-radius: 50px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
}
.product-content {
padding: 35px;
}
.product-card.featured .product-content {
padding: 50px;
}
.product-content h3 {
font-size: 24px;
color: #262C39;
margin-bottom: 15px;
font-weight: 700;
}
.product-content p {
color: #4A4A4A;
line-height: 1.6;
margin-bottom: 20px;
}
.product-features,
.product-specs {
list-style: none;
margin-bottom: 25px;
}
.product-features li,
.product-specs li {
padding: 8px 0;
color: #4A4A4A;
font-size: 15px;
}
.product-link {
color: #E7B022;
font-weight: 700;
text-decoration: none;
transition: all 0.3s ease;
}
.product-link:hover {
color: #F4B942;
}
/* ========== SECTORS SECTION ========== */
.sectors-section {
padding: 120px 20px;
background: #968C6E;
}
.sectors-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.sector-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
overflow: hidden;
transition: all 0.4s ease;
cursor: pointer;
}
.sector-card:hover {
transform: translateY(-15px);
box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}
.sector-image {
height: 220px;
}
.sector-icon {
font-size: 48px;
text-align: center;
padding: 30px 0 15px;
}
.sector-card h3 {
font-size: 20px;
color: #262C39;
text-align: center;
padding: 0 25px 30px;
font-weight: 700;
}
/* ========== QUALITY SECTION ========== */
.quality-section {
padding: 120px 20px;
background: #F5F5F5;
}
.quality-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.certifications {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin: 40px 0;
}
.cert-badge {
background: #FFFFFF;
padding: 25px;
border-radius: 12px;
text-align: center;
border: 2px solid #E7B022;
transition: all 0.3s ease;
}
.cert-badge:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(231, 176, 34, 0.2);
}
.cert-badge strong {
display: block;
font-size: 24px;
color: #262C39;
margin-bottom: 8px;
font-weight: 900;
}
.cert-badge span {
font-size: 12px;
color: #4A4A4A;
text-transform: uppercase;
letter-spacing: 1px;
}
.quality-features {
display: flex;
flex-direction: column;
gap: 25px;
}
.quality-item {
display: flex;
gap: 20px;
align-items: flex-start;
}
.quality-icon {
font-size: 32px;
}
.quality-item h4 {
font-size: 18px;
color: #262C39;
margin-bottom: 8px;
font-weight: 700;
}
.quality-item p {
color: #4A4A4A;
line-height: 1.6;
font-size: 15px;
}
.quality-image {
position: relative;
}
.quality-stat {
position: absolute;
bottom: 40px;
right: 40px;
background: linear-gradient(135deg, #E7B022 0%, #F4B942 100%);
color: #262C39;
padding: 30px;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 30px rgba(231, 176, 34, 0.4);
}
.stat-big {
font-size: 56px;
font-weight: 900;
line-height: 1;
margin-bottom: 5px;
}
.quality-stat p {
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
}
/* ========== COLORS SECTION ========== */
.colors-section {
padding: 120px 20px;
background: #FFFFFF;
}
.color-showcase {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.color-image {
height: 500px;
}
.color-info h3 {
font-size: 28px;
color: #262C39;
margin-bottom: 20px;
font-weight: 700;
}
.color-info p {
font-size: 16px;
color: #4A4A4A;
line-height: 1.8;
margin-bottom: 30px;
}
.color-features {
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 40px;
}
.color-feature {
display: flex;
align-items: center;
gap: 15px;
}
.color-feature span {
font-size: 24px;
}
.color-feature p {
font-size: 16px;
color: #4A4A4A;
margin: 0;
}
/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(38, 44, 57, 0.95) 0%, rgba(44, 74, 82, 0.9) 100%);
}
.cta-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
}
.cta-content {
position: relative;
z-index: 2;
text-align: center;
color: #FFFFFF;
max-width: 900px;
padding: 40px 20px;
}
.cta-headline {
font-size: 56px;
font-weight: 900;
line-height: 1.2;
margin-bottom: 25px;
color: #ffff;
}
.cta-text {
font-size: 20px;
line-height: 1.8;
margin-bottom: 50px;
opacity: 0.9;
}
.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 60px;
flex-wrap: wrap;
}
.cta-trust-badges {
display: flex;
justify-content: center;
gap: 60px;
flex-wrap: wrap;
}
.trust-item {
text-align: center;
}
.trust-item strong {
display: block;
font-size: 36px;
color: #E7B022;
margin-bottom: 8px;
font-weight: 900;
}
.trust-item span {
font-size: 14px;
opacity: 0.8;
text-transform: uppercase;
letter-spacing: 1px;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
.hero-headline { font-size: 56px; }
.about-content,
.tech-content,
.quality-content,
.color-showcase { grid-template-columns: 1fr; }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.vision-mission { grid-template-columns: 1fr; }
.products-grid { grid-template-columns: 1fr; }
.product-card.featured { grid-column: span 1; }
.product-card.featured .product-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.hero-headline { font-size: 42px; }
.section-title { font-size: 36px; }
.hero-stats { gap: 30px; }
.stat-number { font-size: 36px; }
.values-grid { grid-template-columns: repeat(2, 1fr); }
.certifications { grid-template-columns: 1fr; }
.cta-headline { font-size: 36px; }
}
@media (max-width: 480px) {
.hero-headline { font-size: 32px; }
.section-title { font-size: 28px; }
.values-grid { grid-template-columns: 1fr; }
}
/* ========== SMOOTH SCROLL ========== */
html { scroll-behavior: smooth; }
/* ========== SELECTION COLOR ========== */
::selection {
background: #E7B022;
color: #262C39;
}
/* ===== GLOBAL IMAGE FIX ===== */
.product-image,
.sector-image,
.quality-image,
.color-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: #e0e0e0;
}

.product-image img,
.sector-image img,
.quality-image img,
.color-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Heights */
.product-image { height: 300px; }
.product-card.featured .product-image { height: 400px; }
.sector-image { height: 220px; }
.quality-image { height: 450px; }
.color-image { height: 500px; }/* End custom CSS */