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

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:#050505;
color:#ffffff;
line-height:1.6;
overflow-x:hidden;
}

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

a{
text-decoration:none;
}

.container{
width:92%;
max-width:1400px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;

z-index:999;

background:rgba(0,0,0,.88);

backdrop-filter:blur(12px);

border-bottom:1px solid rgba(255,255,255,.06);
}

.topbar{
background:#000000;

padding:12px 0;

border-bottom:1px solid rgba(255,255,255,.05);
}

.topbar-inner{
display:flex;
justify-content:space-between;
align-items:center;

gap:20px;

flex-wrap:wrap;

font-size:14px;
}

.topbar a{
color:#d9a62f;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;

padding:18px 0;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:14px;

color:#ffffff;
}

.logo img{
width:58px;
}

.logo h2{
font-size:28px;
font-weight:900;
line-height:1;
}

.logo span{
color:#d9a62f;
}

.logo p{
font-size:13px;

margin-top:4px;

color:rgba(255,255,255,.72);
}

/* NAVIGATION */

nav{
display:flex;
align-items:center;
gap:28px;
}

nav a{
position:relative;

color:#ffffff;

font-weight:700;

transition:.3s;
}

nav a:hover{
color:#d9a62f;
}

/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;

top:100%;
left:0;

min-width:250px;

background:#111111;

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

padding:10px 0;

opacity:0;
visibility:hidden;

transform:translateY(10px);

transition:.3s;

z-index:999;
}

.dropdown:hover .dropdown-menu{
opacity:1;
visibility:visible;

transform:translateY(0);
}

.dropdown-menu a{
display:block;

padding:12px 20px;
}

/* HERO */

.hero{
padding:190px 0 100px;

background:
linear-gradient(
90deg,
rgba(0,0,0,.92) 0%,
rgba(0,0,0,.76) 38%,
rgba(0,0,0,.30) 62%,
rgba(0,0,0,0) 100%
),
url('./hero.png');

background-size:56%;
background-position:right center;
background-repeat:no-repeat;
background-color:#050505;
}

.hero-content{
max-width:620px;

margin-bottom:70px;
}

.hero h1{
font-size:76px;
line-height:.92;

font-weight:900;

letter-spacing:-2px;

margin-bottom:24px;
}

.hero h1 span{
color:#d9a62f;
}

.hero p{
font-size:18px;
line-height:1.8;

margin-bottom:38px;

color:rgba(255,255,255,.84);
}

/* FEATURES */

.hero-features{
display:grid;
grid-template-columns:repeat(4,1fr);

max-width:1080px;

background:rgba(12,12,12,.92);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

overflow:hidden;

backdrop-filter:blur(12px);
}

.feature-card{
padding:28px 24px;

border-right:1px solid rgba(255,255,255,.06);
}

.feature-card:last-child{
border-right:none;
}

.feature-icon{
width:52px;
height:52px;

display:flex;
align-items:center;
justify-content:center;

background:rgba(217,166,47,.12);

border-radius:16px;

color:#d9a62f;

font-size:22px;

margin-bottom:16px;
}

/* GENERAL */

section{
padding:100px 0;
}

.section-title{
font-size:52px;
font-weight:900;

text-align:center;

margin-bottom:60px;
}

/* PRODUCTS */

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:28px;
}

.product-card{
background:#111111;

border-radius:24px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);
}

.product-card img{
width:100%;
height:340px;

object-fit:cover;
}

.product-content{
padding:28px;

text-align:center;
}

/* FORM */

.quote-grid{
display:grid;
grid-template-columns:1.2fr .8fr;

gap:40px;
}

.form-box{
background:linear-gradient(
180deg,
rgba(22,22,22,.96) 0%,
rgba(12,12,12,.96) 100%
);

padding:42px;

border-radius:28px;

border:1px solid rgba(255,255,255,.08);
}

.form-box h3{
font-size:32px;

margin-bottom:28px;
}

input,
select,
textarea{
width:100%;

padding:18px;

margin-bottom:16px;

background:#1a1a1a;

border:1px solid rgba(255,255,255,.06);

border-radius:16px;

color:#ffffff;
}

textarea{
min-height:160px;
resize:vertical;
}

button{
padding:18px 28px;

background:#d9a62f;

border:none;

border-radius:14px;

font-weight:800;

cursor:pointer;

color:#000000;
}

/* CONTACT */

.contact-box p{
margin-bottom:28px;
}

.contact-box a{
color:#d9a62f;
}

.contact-map{
margin-top:40px;

height:420px;

overflow:hidden;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);
}

.contact-map iframe{
width:100%;
height:100%;
border:0;
}

/* FOOTER */

footer{
background:#000000;

padding:80px 0;

border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
display:grid;
grid-template-columns:1.2fr 1fr 1fr;

gap:60px;
}

.footer-grid img{
width:72px;

margin-bottom:18px;
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
background-size:82%;
}

.hero h1{
font-size:58px;
}

.hero-features{
grid-template-columns:1fr 1fr;

max-width:720px;
}

.quote-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:18px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero{
padding-top:150px;

background-size:120%;
background-position:center bottom;
}

.hero h1{
font-size:42px;
}

.hero-features{
grid-template-columns:1fr;
}

.feature-card{
border-right:none;

border-bottom:1px solid rgba(255,255,255,.06);
}

.feature-card:last-child{
border-bottom:none;
}

.footer-grid{
grid-template-columns:1fr;
}

}

@media(max-width:520px){

.hero h1{
font-size:34px;
}

.section-title{
font-size:38px;
}

.hero{
background-size:140%;
}

/* =========================================
COOKIE BANNER
========================================= */

/* =========================================
COOKIE BAR
========================================= */

#cookie-bar{
position:fixed;

left:0;
right:0;
bottom:0;

z-index:99999;

background:rgba(8,8,8,.94);

backdrop-filter:blur(12px);

border-top:1px solid rgba(255,255,255,.08);
}

.cookie-bar-inner{
max-width:1400px;

margin:auto;

padding:14px 4%;

display:flex;
justify-content:space-between;
align-items:center;

gap:20px;
}

.cookie-bar-inner p{
font-size:13px;

color:rgba(255,255,255,.72);
}

/* ACTIONS */

.cookie-bar-actions{
display:flex;
align-items:center;

gap:12px;

flex-shrink:0;
}

/* BUTTON */

.cookie-bar-btn{
height:38px;

padding:0 18px;

border:none;

border-radius:10px;

font-size:13px;
font-weight:700;

cursor:pointer;

transition:.25s ease;
}

/* ACCEPT */

.cookie-bar-btn.accept{
background:#d9a62f;
color:#000000;
}

.cookie-bar-btn.accept:hover{
transform:translateY(-1px);
}

/* REJECT */

.cookie-bar-btn.reject{
background:#1a1a1a;

border:1px solid rgba(255,255,255,.08);

color:#ffffff;
}

.cookie-bar-btn.reject:hover{
border-color:#d9a62f;
}

/* LINK */

.cookie-bar-actions a{
font-size:13px;
font-weight:700;

color:#d9a62f;

white-space:nowrap;
}

/* MOBILE */

@media(max-width:768px){

.cookie-bar-inner{
flex-direction:column;
align-items:flex-start;
}

.cookie-bar-actions{
flex-wrap:wrap;
}

}
