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

body{
background:#050505;
color:white;
font-family:'Inter',sans-serif;
overflow-x:hidden;
}

.hero{
min-height:100vh;
padding:40px 7%;
background:
radial-gradient(circle at top right, rgba(255,208,0,0.12), transparent 25%),
radial-gradient(circle at bottom left, rgba(255,208,0,0.08), transparent 20%),
#050505;
}

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

.logo,
.footer-logo{
font-size:34px;
font-weight:800;
}

.logo span,
.footer-logo span{
color:#e0be4f;
}

.nav-btn{
background:#e0be4f;
color:black;
padding:14px 26px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:80px;
align-items:center;
min-height:85vh;
}

.tag,
.mini-title{
color:#e0be4f;
font-weight:700;
margin-bottom:20px;
letter-spacing:1px;
}

.hero-left h1{
font-size:96px;
line-height:0.95;
font-weight:800;
margin-bottom:30px;
}

.hero-text,
.section-text{
color:#b8b8b8;
line-height:1.8;
font-size:20px;
max-width:700px;
}

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

.primary-btn,
.secondary-btn{
padding:18px 34px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

.primary-btn{
background:#e0be4f;
color:black;
}

.secondary-btn{
border:1px solid rgba(255,255,255,0.15);
color:white;
}

.glass-card{
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
border-radius:30px;
padding:40px;
}

.glass-card h3{
color:#e0be4f;
margin-bottom:35px;
font-size:28px;
}

.feature{
display:flex;
gap:18px;
margin-bottom:25px;
align-items:flex-start;
}

.feature span{
font-size:30px;
}

.feature p{
color:#a8a8a8;
}

.section{
padding:120px 7%;
}

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

.dark{
border-top:1px solid rgba(255,255,255,0.06);
border-bottom:1px solid rgba(255,255,255,0.06);
}

.section h2{
font-size:58px;
line-height:1.1;
max-width:1000px;
margin-bottom:30px;
}

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

.info-card{
background:#0d0d0d;
border:1px solid rgba(255,255,255,0.06);
border-radius:26px;
padding:40px;
transition:0.3s;
}

.info-card:hover{
transform:translateY(-8px);
border-color:#e0be4f;
}

.info-card h3{
color:#e0be4f;
margin-bottom:18px;
font-size:28px;
}

.info-card p{
color:#b5b5b5;
line-height:1.7;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
background:#0f0f0f;
border:1px solid rgba(255,255,255,0.08);
padding:20px;
border-radius:18px;
color:white;
font-size:16px;
}

.contact-form textarea{
min-height:180px;
resize:none;
}

.contact-form button{
background:#e0be4f;
color:black;
border:none;
padding:20px;
border-radius:18px;
font-weight:800;
cursor:pointer;
font-size:16px;
transition:0.3s;
}

.contact-form button:hover{
opacity:0.9;
transform:translateY(-2px);
}

footer{
padding:50px 7%;
border-top:1px solid rgba(255,255,255,0.06);
text-align:center;
}

footer p{
margin-top:15px;
color:#8f8f8f;
}

.success-popup{
position:fixed;
inset:0;
background:rgba(0,0,0,0.75);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
pointer-events:none;
transition:0.3s;
z-index:999;
}

.success-popup.active{
opacity:1;
pointer-events:auto;
}

.popup-box{
background:#0f0f0f;
border:1px solid rgba(255,255,255,0.08);
padding:50px;
border-radius:28px;
text-align:center;
max-width:420px;
width:90%;
}

.check{
width:80px;
height:80px;
background:#e0be4f;
color:black;
font-size:42px;
font-weight:800;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
margin:0 auto 25px;
}

.popup-box h3{
font-size:32px;
margin-bottom:14px;
}

.popup-box p{
color:#b8b8b8;
line-height:1.6;
margin-bottom:30px;
}

.popup-box button{
background:#e0be4f;
color:black;
border:none;
padding:16px 28px;
border-radius:16px;
font-weight:800;
cursor:pointer;
}

@media(max-width:1100px){

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

.hero-left h1{
font-size:64px;
}

.section h2{
font-size:42px;
}
}

@media(max-width:700px){

.hero-left h1{
font-size:48px;
}

.hero-buttons{
flex-direction:column;
}

.section h2{
font-size:34px;
}

.logo,
.footer-logo{
font-size:26px;
}
}
