:root{
--bg:#0b0b0c;
--glass:rgba(255,255,255,0.06);
--border:rgba(255,255,255,0.08);
--accent:#ff3c3c;
--text:#ffffff;
--text-soft:rgba(255,255,255,0.65);
}

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

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

.hero{
position:relative;
height:100vh;
min-height:700px;
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
background:
linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.85)),
url("bg.jpg") center/cover no-repeat;
background-attachment: fixed;
}

.container{
max-width:1200px;
width:100%;
}

.content{
max-width:720px;
}

.badge{
display:inline-block;
padding:8px 14px;
font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
background:var(--glass);
border:1px solid var(--border);
border-radius:30px;
margin-bottom:24px;
backdrop-filter:blur(10px);
}

h1{
font-size:clamp(32px,5vw,64px);
line-height:1.1;
font-weight:800;
margin-bottom:20px;
}

.highlight{
color:var(--accent);
}

.subtitle{
font-size:clamp(16px,2vw,20px);
color:var(--text-soft);
margin-bottom:40px;
}

.actions{
display:flex;
flex-wrap:wrap;
gap:16px;
}

.btn{
padding:16px 28px;
border-radius:14px;
font-weight:600;
font-size:16px;
text-decoration:none;
display:inline-flex;
align-items:center;
justify-content:center;
transition:all .3s ease;
}

.btn-primary{
background:var(--accent);
color:white;
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 10px 30px rgba(255,60,60,0.4);
}

.btn-glass{
background:var(--glass);
border:1px solid var(--border);
color:white;
backdrop-filter:blur(10px);
}

.btn-glass:hover{
background:rgba(255,255,255,0.1);
}

.phone{
margin-top:30px;
font-size:20px;
font-weight:600;
letter-spacing:1px;
}

.phone a{
color:white;
text-decoration:none;
}

.section{
padding:100px 20px;
background:#111;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.card{
background:var(--glass);
border:1px solid var(--border);
padding:30px;
border-radius:20px;
backdrop-filter:blur(12px);
transition:all .3s ease;
}

.card:hover{
transform:translateY(-6px);
background:rgba(255,255,255,0.08);
}

.card h3{
margin-bottom:15px;
font-size:20px;
}

.card p{
color:var(--text-soft);
font-size:15px;
line-height:1.6;
}

footer{
padding:40px 20px;
text-align:center;
color:var(--text-soft);
font-size:14px;
background:#0b0b0c;
}

@media (max-width:768px){
.hero{
min-height:100vh;
padding-top:80px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.85)), url(bg-mobile.jpg) center / cover no-repeat;
	background-attachment: fixed;
}
.actions{
flex-direction:column;
}
.btn{
width:100%;
}
}

.fade-up{
opacity:0;
transform:translateY(40px);
transition:all .8s cubic-bezier(.2,.8,.2,1);
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}
html{
scroll-behavior:smooth;
}

.btn-primary{
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(255,60,60,0.7);}
70%{box-shadow:0 0 0 15px rgba(255,60,60,0);}
100%{box-shadow:0 0 0 0 rgba(255,60,60,0);}
}

.popup-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,0.75);
backdrop-filter:blur(8px);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
visibility:hidden;
transition:all .4s ease;
z-index:1000;
padding:20px;
}

.popup-overlay.active{
opacity:1;
visibility:visible;
}

.popup{
background:#111;
border:1px solid var(--border);
border-radius:24px;
padding:40px;
max-width:480px;
width:100%;
position:relative;
transform:translateY(40px);
transition:all .4s cubic-bezier(.2,.8,.2,1);
}

.popup-overlay.active .popup{
transform:translateY(0);
}

.popup h2{
font-size:28px;
margin-bottom:15px;
}

.popup-subtitle{
color:var(--text-soft);
margin-bottom:30px;
line-height:1.5;
}

.popup-form{
display:flex;
flex-direction:column;
gap:15px;
}

.popup-form input,
.popup-form textarea{
background:rgba(255,255,255,0.05);
border:1px solid var(--border);
border-radius:14px;
padding:14px 16px;
color:white;
font-size:15px;
outline:none;
}

.popup-form textarea{
resize:none;
min-height:100px;
}

.popup-form input:focus,
.popup-form textarea:focus{
border-color:var(--accent);
}

.popup-agree{
font-size:12px;
color:var(--text-soft);
margin-top:10px;
line-height:1.4;
}

.popup-close{
position:absolute;
top:15px;
right:20px;
cursor:pointer;
font-size:18px;
color:var(--text-soft);
}

.popup-close:hover{
color:white;
}

@media(max-width:768px){
.popup{
padding:30px 20px;
}
}

.btn:hover {
	cursor: pointer;
}