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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#07121f;
color:#ffffff;
line-height:1.7;
overflow-x:hidden;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ======================
BACKGROUND
====================== */

.hero-bg{
position:relative;
background:
linear-gradient(
rgba(4,12,25,.75),
rgba(4,12,25,.75)
),
url('../images/satellite-bg.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.page-banner{
position:relative;
background:
linear-gradient(
rgba(4,12,25,.80),
rgba(4,12,25,.80)
),
url('../images/satellite-bg.jpg');
background-size:cover;
background-position:center;
padding:140px 0 90px;
text-align:center;
}

.page-banner h1{
font-size:52px;
font-weight:800;
margin-bottom:15px;
}

.page-banner p{
max-width:700px;
margin:auto;
color:#d8e5ff;
}

/* ======================
HEADER
====================== */

.site-header{
position:absolute;
top:0;
left:0;
width:100%;
z-index:999;
padding:20px 0;
}

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

.logo{
display:flex;
align-items:center;
gap:12px;
color:#fff;
}

.logo-icon{
font-size:34px;
}

.logo-text h2{
font-size:24px;
font-weight:700;
}

.logo-text span{
font-size:12px;
opacity:.8;
}

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

nav ul li a{
color:#fff;
font-weight:500;
transition:.3s;
position:relative;
}

nav ul li a:hover,
nav ul li a.active{
color:#4ca6ff;
}

nav ul li a.active::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:100%;
height:2px;
background:#4ca6ff;
}

/* ======================
HERO
====================== */

.hero{
padding:180px 0 140px;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:68px;
line-height:1.1;
font-weight:800;
margin-bottom:25px;
}

.hero p{
font-size:20px;
color:#d9e7ff;
margin-bottom:35px;
}

.btn{
display:inline-block;
background:#1d75ff;
padding:15px 35px;
border-radius:8px;
font-weight:600;
color:#fff;
transition:.3s;
}

.btn:hover{
transform:translateY(-2px);
background:#0f63e7;
}

/* ======================
SECTIONS
====================== */

.section{
padding:90px 0;
}

.section-light{
background:#ffffff;
color:#111;
}

.section-dark{
background:#07121f;
}

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

.section-title h2{
font-size:42px;
margin-bottom:15px;
}

.section-title p{
max-width:750px;
margin:auto;
opacity:.8;
}

/* ======================
CARDS
====================== */

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

.card{
background:#ffffff;
color:#111;
padding:35px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.10);
transition:.3s;
}

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

.card-icon{
font-size:48px;
margin-bottom:20px;
}

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

.card p{
color:#555;
}

/* ======================
CONTENT BLOCK
====================== */

.content-box{
background:#fff;
color:#111;
padding:45px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.content-box h2{
margin-bottom:20px;
font-size:36px;
}

.content-box p{
margin-bottom:18px;
color:#555;
}

/* ======================
FAQ
====================== */

.faq-item{
background:#fff;
color:#111;
padding:25px;
margin-bottom:20px;
border-radius:14px;
}

.faq-item h3{
margin-bottom:10px;
font-size:20px;
}

/* ======================
CONTACT FORM
====================== */

.contact-form{
background:#fff;
padding:40px;
border-radius:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
border:1px solid #d6dce5;
border-radius:8px;
margin-bottom:20px;
font-family:inherit;
}

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

.contact-form button{
border:none;
cursor:pointer;
}

/* ======================
FOOTER
====================== */

.footer{
background:#030c16;
padding:70px 0 25px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 2fr;
gap:40px;
margin-bottom:40px;
}

.footer h3,
.footer h4{
margin-bottom:15px;
}

.footer p{
color:#b7c6d8;
}

.footer ul li{
margin-bottom:10px;
}

.footer ul li a{
color:#b7c6d8;
}

.footer ul li a:hover{
color:#4ca6ff;
}

.copyright{
padding-top:25px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
color:#9ab1c9;
}

/* ======================
RESPONSIVE
====================== */

@media(max-width:991px){

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

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

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

nav ul{
gap:15px;
}

}

@media(max-width:768px){

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

.hero{
padding:170px 0 100px;
}

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

.page-banner h1{
font-size:36px;
}

.section-title h2{
font-size:32px;
}

.content-box{
padding:30px;
}

}