:root{
--bg:#070b18;
--bg2:#0c1330;
--panel:#111a3a;
--panel2:#161f47;
--orange:#ff6b00;
--orange2:#ff9d29;
--text:#ffffff;
--muted:#c7d0e0;
--border:rgba(255,255,255,.08);
}

*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#05070f;
color:var(--text);
line-height:1.6;
overflow-x:hidden;
}

.container{
width:min(1180px, calc(100% - 40px));
margin:auto;
}

.header{
position:sticky;
top:0;
z-index:999;
background:rgba(4,7,16,.88);
backdrop-filter:blur(12px);
border-bottom:1px solid var(--border);
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
min-height:92px;
}

.brand{
display:flex;
align-items:center;
gap:16px;
}

.brand img{
width:72px;
height:72px;
object-fit:contain;
border-radius:18px;
}

.brand h1{
margin:0;
font-size:40px;
line-height:1;
}

.brand p{
margin:6px 0 0;
color:var(--muted);
font-size:15px;
}

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

nav a{
color:#fff;
text-decoration:none;
font-weight:700;
font-size:15px;
}

.call,
.primary,
button{
background:linear-gradient(135deg,var(--orange),var(--orange2));
color:#fff;
text-decoration:none;
padding:14px 26px;
border-radius:999px;
font-weight:800;
border:none;
display:inline-flex;
align-items:center;
justify-content:center;
cursor:pointer;
box-shadow:0 12px 30px rgba(255,107,0,.22);
}

.hero{
padding:120px 0 90px;
background:
radial-gradient(circle at top right, rgba(255,107,0,.22), transparent 28%),
linear-gradient(180deg,var(--bg2),var(--bg));
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
}

.tag{
display:inline-flex;
padding:8px 16px;
border-radius:999px;
background:rgba(255,107,0,.12);
border:1px solid rgba(255,107,0,.35);
font-size:12px;
font-weight:900;
letter-spacing:.14em;
text-transform:uppercase;
color:#ffbb73;
}

.hero h2,
.section-head h3,
.coverage h3,
.contact h3{
font-size:clamp(42px,5vw,68px);
line-height:1.05;
margin:22px 0;
max-width:820px;
}

.lead,
.contact-copy{
font-size:20px;
color:var(--muted);
max-width:760px;
}

.buttons,
.chips,
.coverage-grid{
display:flex;
flex-wrap:wrap;
gap:14px;
margin-top:28px;
}

.secondary{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.12);
color:#fff;
text-decoration:none;
padding:14px 26px;
border-radius:999px;
font-weight:800;
}

.chips span,
.coverage-grid span{
padding:12px 18px;
border-radius:999px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
font-weight:700;
}

.hero-card{
background:linear-gradient(180deg,#18234f,#0b122d);
border:1px solid rgba(255,107,0,.18);
border-radius:36px;
padding:28px;
box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.hero-card img{
width:100%;
display:block;
border-radius:24px;
}

.services,
.coverage,
.contact{
padding:110px 0;
}

.section-head{
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.card{
background:linear-gradient(180deg,var(--panel),var(--panel2));
border:1px solid rgba(255,255,255,.08);
border-radius:28px;
padding:32px;
transition:transform .2s ease;
}

.card:hover{
transform:translateY(-4px);
}

.card.large{
grid-column:span 2;
background:linear-gradient(135deg,#18244d,#3b2409);
}

.card h4{
margin:0 0 14px;
font-size:28px;
line-height:1.2;
}

.card p{
margin:0;
color:var(--muted);
font-size:17px;
}

.coverage{
background:#0a1024;
}

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

.big-phone{
display:inline-block;
margin-top:24px;
font-size:48px;
font-weight:900;
color:#ff9d29;
text-decoration:none;
}

.form{
display:grid;
gap:16px;
background:linear-gradient(180deg,var(--panel),#0f1635);
padding:34px;
border-radius:30px;
border:1px solid rgba(255,255,255,.08);
}

.form input,
.form textarea{
width:100%;
padding:16px;
border-radius:16px;
border:1px solid rgba(255,255,255,.08);
background:#09101f;
color:#fff;
font:inherit;
}

.form textarea{
min-height:150px;
resize:vertical;
}

.footer{
padding:28px 0;
background:#05070f;
border-top:1px solid rgba(255,255,255,.06);
}

.foot{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
color:var(--muted);
}

@media(max-width:980px){

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

.card.large{
grid-column:auto;
}

nav{
display:none;
}

.hero{
padding-top:90px;
}

.hero h2,
.section-head h3,
.coverage h3,
.contact h3{
font-size:42px;
}

.big-phone{
font-size:34px;
}

.brand h1{
font-size:30px;
}
}
