*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
background:#f7f9fc;
color:#1f2937;
line-height:1.6;
}

/* HEADER */

header{
background:white;
border-bottom:1px solid #e5e7eb;
position:sticky;
top:0;
z-index:10;
}

.header-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 24px;
}

.logo{
height:60px;
}

.logo-group{
display:flex;
align-items:center;
gap:15px;
}

.tagline{
font-size:11px;
letter-spacing:.15em;
text-transform:uppercase;
color:#6b7280;
}

/* NAVIGATION */

nav a{
margin-left:25px;
text-decoration:none;
color:#374151;
font-weight:600;
font-size:14px;
letter-spacing:.04em;
position:relative;
}

nav a:after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#2563eb;
transition:width .25s ease;
}

nav a:hover{
color:#1e3a8a;
}

nav a:hover:after{
width:100%;
}

/* HERO */

.hero{
background:
linear-gradient(135deg,#020617,#0f172a,#1e3a8a),
repeating-linear-gradient(
0deg,
rgba(255,255,255,0.03),
rgba(255,255,255,0.03) 1px,
transparent 1px,
transparent 40px
),
repeating-linear-gradient(
90deg,
rgba(255,255,255,0.03),
rgba(255,255,255,0.03) 1px,
transparent 1px,
transparent 40px
);

color:white;
padding:120px 20px;
position:relative;
overflow:hidden;
}

/* LARGE GRADIENT GLOW */

.hero::before{
content:"";
position:absolute;
width:700px;
height:700px;
background:radial-gradient(circle,#3b82f6,transparent 70%);
opacity:.25;
top:-200px;
right:-200px;
filter:blur(120px);
}

/* SECOND GLOW */

.hero::after{
content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,#6366f1,transparent 70%);
opacity:.18;
bottom:-200px;
left:-200px;
filter:blur(120px);
}

/* HERO LAYOUT */

.hero-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
position:relative;
z-index:2;
}

/* HERO TEXT */

.hero-text h1{
font-size:50px;
line-height:1.15;
font-weight:700;
letter-spacing:-.02em;
margin-bottom:20px;
}

.hero-accent{
color:#93c5fd;
font-weight:600;
}

.hero-text p{
font-size:18px;
color:#cbd5e1;
max-width:520px;
}

.eyebrow{
font-size:12px;
letter-spacing:.2em;
text-transform:uppercase;
margin-bottom:20px;
color:#94a3b8;
}

/* BUTTONS */

.hero-buttons{
margin-top:30px;
}

.btn-primary{
background:white;
color:#0f172a;
padding:14px 24px;
border-radius:10px;
font-weight:600;
text-decoration:none;
margin-right:12px;
}

.btn-outline{
border:1px solid rgba(255,255,255,.4);
padding:14px 24px;
border-radius:10px;
color:white;
text-decoration:none;
}

/* HERO LOGO PANEL */

.hero-logo{
display:flex;
justify-content:center;
align-items:center;
}

.hero-logo img{
max-width:300px;
padding:40px;
background:rgba(255,255,255,.07);
border-radius:16px;
border:1px solid rgba(255,255,255,.15);
box-shadow:0 30px 60px rgba(0,0,0,.35);
backdrop-filter:blur(8px);
}

/* SECTIONS */

.section{
padding:110px 20px;
border-top:1px solid #e5e7eb;
background:white;
}

.container{
max-width:1200px;
margin:auto;
padding:0 24px;
}

.section-header{
margin-bottom:50px;
}

.section-header h2{
font-size:36px;
margin-bottom:12px;
position:relative;
padding-bottom:14px;
}

.section-header h2:after{
content:"";
position:absolute;
left:0;
bottom:0;
width:60px;
height:3px;
background:#2563eb;
border-radius:2px;
}

.section-header p{
color:#6b7280;
}

/* SERVICES */

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:32px;
margin-top:40px;
}

.card{
background:white;
padding:34px;
border-radius:14px;
box-shadow:0 12px 30px rgba(0,0,0,.06);
transition:all .2s ease;
}

.card:hover{
transform:translateY(-4px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.card h3{
margin-top:0;
margin-bottom:10px;
}

/* ABOUT */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.focus-box{
background:#f1f5f9;
padding:34px;
border-radius:14px;
}

.focus-box ul{
padding-left:18px;
line-height:1.9;
}

/* WHO WE WORK WITH */

.who-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.who-card{
background:white;
padding:30px;
border-radius:12px;
text-align:center;
font-weight:600;
box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* TRUSTED ORGANIZATIONS */

.trusted{
background:#f1f5f9;
padding:90px 20px;
text-align:center;
border-top:1px solid #e5e7eb;
border-bottom:1px solid #e5e7eb;
}

.trusted h3{
font-size:14px;
letter-spacing:.18em;
text-transform:uppercase;
color:#64748b;
margin-bottom:35px;
}

.trusted-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:900px;
margin:auto;
}

.trusted-item{
font-weight:600;
color:#475569;
}

/* CONTACT */

.contact{
background:#020617;
color:white;
padding:100px 20px;
text-align:center;
}

.contact h2{
margin-bottom:20px;
}

.email{
font-size:20px;
font-weight:600;
margin-top:20px;
}

/* FOOTER */

footer{
background:#000;
color:white;
text-align:center;
padding:30px;
font-size:14px;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-container{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr 1fr;
}

.who-grid{
grid-template-columns:1fr 1fr;
}

.about-grid{
grid-template-columns:1fr;
}

.trusted-grid{
grid-template-columns:1fr 1fr;
}

.hero-text h1{
font-size:38px;
}

}

@media(max-width:500px){

.services-grid{
grid-template-columns:1fr;
}

.who-grid{
grid-template-columns:1fr;
}

.trusted-grid{
grid-template-columns:1fr;
}

}