
:root{
--yellow:#F5B325;
--orange:#ff8a00;
--dark:#0b0b0b;
--card:rgba(24,24,24,0.65);
--text:#ffffff;
--muted:#bdbdbd;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#090909;
color:var(--text);
overflow-x:hidden;
position:relative;
}

.gradient-bg{
position:fixed;
inset:0;
background:
radial-gradient(circle at top left, rgba(245,179,37,0.18), transparent 35%),
radial-gradient(circle at bottom right, rgba(255,138,0,0.18), transparent 35%),
linear-gradient(135deg,#0d0d0d,#151515,#101010);
background-size:200% 200%;
animation:bgMove 12s ease infinite;
z-index:-3;
}

@keyframes bgMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.particles{
position:fixed;
inset:0;
background-image:
radial-gradient(rgba(245,179,37,0.12) 1px, transparent 1px);
background-size:40px 40px;
animation:particles 30s linear infinite;
z-index:-2;
opacity:0.5;
}

@keyframes particles{
0%{transform:translateY(0);}
100%{transform:translateY(40px);}
}

.header{
position:fixed;
top:0;
width:100%;
padding:24px 8%;
display:flex;
justify-content:space-between;
align-items:center;
backdrop-filter:blur(18px);
background:rgba(11,11,11,0.45);
border-bottom:1px solid rgba(255,255,255,0.05);
z-index:100;
}

.logo{
font-family:'Orbitron',sans-serif;
font-size:2rem;
font-weight:900;
color:var(--yellow);
text-shadow:0 0 18px rgba(245,179,37,0.35);
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:#ddd;
transition:0.3s;
}

nav a:hover{
color:var(--yellow);
}

.hero{
min-height:100vh;
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
padding:0 8%;
position:relative;
}

.tag{
display:inline-block;
padding:12px 18px;
border-radius:999px;
background:rgba(245,179,37,0.12);
border:1px solid rgba(245,179,37,0.18);
margin-bottom:30px;
color:var(--yellow);
backdrop-filter:blur(12px);
}

.hero h1{
font-family:'Orbitron',sans-serif;
font-size:5.5rem;
line-height:0.95;
margin-bottom:30px;
}

.hero h1 span{
display:block;
background:linear-gradient(90deg,var(--yellow),var(--orange));
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:1.15rem;
line-height:1.9;
max-width:720px;
color:#ddd;
}

.buttons{
display:flex;
gap:20px;
margin-top:40px;
}

.btn{
padding:18px 30px;
border-radius:16px;
text-decoration:none;
font-weight:700;
transition:0.4s;
}

.btn:hover{
transform:translateY(-5px) scale(1.02);
}

.primary{
background:linear-gradient(135deg,var(--yellow),var(--orange));
color:#111;
box-shadow:0 0 35px rgba(245,179,37,0.25);
}

.secondary{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
color:white;
backdrop-filter:blur(12px);
}

.hero-right{
display:flex;
justify-content:center;
}

.glass-panel{
width:420px;
padding:35px;
border-radius:30px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 0 40px rgba(0,0,0,0.35);
animation:float 6s ease-in-out infinite;
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-16px);}
}

.metric{
padding:25px;
border-radius:22px;
background:rgba(255,255,255,0.04);
margin-bottom:20px;
border:1px solid rgba(255,255,255,0.05);
}

.metric h2{
font-size:3rem;
margin-bottom:10px;
color:var(--yellow);
}

.about,.products,.contact{
padding:120px 8%;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title span{
color:var(--yellow);
letter-spacing:2px;
}

.section-title h2{
font-size:3.5rem;
margin-top:20px;
}

.about-grid,.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.about-card,.product-card,.info-box{
background:var(--card);
border-radius:28px;
border:1px solid rgba(255,255,255,0.06);
overflow:hidden;
transition:0.4s;
backdrop-filter:blur(16px);
}

.about-card:hover,.product-card:hover,.info-box:hover{
transform:translateY(-10px);
box-shadow:0 0 40px rgba(245,179,37,0.12);
border-color:rgba(245,179,37,0.25);
}

.about-card{
padding:40px;
}

.about-card h3{
margin-bottom:20px;
color:var(--yellow);
font-size:1.6rem;
}

.about-card p{
color:var(--muted);
line-height:1.8;
}

.product-card img{
width:100%;
height:260px;
object-fit:cover;
transition:0.5s;
}

.product-card:hover img{
transform:scale(1.08);
}

.content{
padding:30px;
}

.content h3{
margin-bottom:15px;
font-size:1.6rem;
color:var(--yellow);
}

.content p{
color:var(--muted);
line-height:1.8;
}

.contact-layout{
display:grid;
grid-template-columns:1fr 1.4fr;
gap:40px;
}

.contact-info{
display:flex;
flex-direction:column;
gap:25px;
}

.info-box{
padding:35px;
}

.info-box h3{
margin-bottom:15px;
color:var(--yellow);
}

.info-box p{
line-height:1.8;
color:var(--muted);
}

.map-box{
overflow:hidden;
border-radius:28px;
border:1px solid rgba(255,255,255,0.06);
min-height:520px;
box-shadow:0 0 35px rgba(0,0,0,0.25);
}

.map-box iframe{
width:100%;
height:100%;
border:none;
filter:contrast(1.05) saturate(0.9);
}

footer{
padding:40px;
text-align:center;
color:#999;
border-top:1px solid rgba(255,255,255,0.05);
background:rgba(0,0,0,0.3);
backdrop-filter:blur(10px);
}

@media(max-width:980px){

.hero{
grid-template-columns:1fr;
padding-top:140px;
padding-bottom:80px;
}

.hero h1{
font-size:3.6rem;
}

nav{
display:none;
}

.contact-layout{
grid-template-columns:1fr;
}

.section-title h2{
font-size:2.5rem;
}

.glass-panel{
width:100%;
}

}
