*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

:root{
--navy:#062f6f;
--deep:#021b3f;
--blue:#0b65d8;
--sky:#2d8cff;
--light:#f5f8fc;
--line:#dce6f4;
--text:#172033;
--muted:#5d6a7c;
--white:#fff;
--shadow:0 16px 40px rgba(6,47,111,.14);
}

html{
scroll-behavior:smooth;
}

body{
background:var(--light);
color:var(--text);
}

a{
color:inherit;
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.topbar{
background:linear-gradient(90deg,var(--navy),var(--deep));
color:var(--white);
font-size:14px;
}

.topbar-inner{
width:92%;
max-width:1380px;
margin:auto;
display:flex;
align-items:center;
gap:28px;
min-height:36px;
}

.topbar-inner a{
margin-left:auto;
font-weight:600;
}

.container{
width:92%;
max-width:1380px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:28px;
}

header{
background:var(--white);
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 18px rgba(0,0,0,.08);
}

header .container{
min-height:104px;
}

.logo img{
height:86px;
object-fit:contain;
}

nav ul{
display:flex;
align-items:center;
gap:30px;
list-style:none;
}

nav li{
position:relative;
}

nav a{
display:block;
font-size:15px;
font-weight:600;
color:#0d1b2f;
padding:18px 0;
transition:.25s;
}

nav a.active,
nav a:hover{
color:var(--blue);
}

nav a.active::after,
nav ul li:hover>a::after{
width:100%;
}

nav ul li a::after{
content:"";
position:absolute;
left:0;
bottom:10px;
width:0;
height:3px;
background:var(--blue);
border-radius:6px;
transition:.25s;
}

.dropdown-menu{
position:absolute;
top:54px;
left:0;
width:280px;
display:none;
background:var(--white);
padding:10px 0;
border:1px solid var(--line);
border-radius:8px;
box-shadow:var(--shadow);
z-index:1001;
}

.dropdown:hover .dropdown-menu{
display:block;
}

.dropdown-menu li,
.dropdown-menu a{
width:100%;
}

.dropdown-menu a{
padding:12px 18px;
color:var(--navy);
}

.dropdown-menu a:hover{
background:#eef5ff;
}

.btn,
.primary-btn,
.secondary-btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:44px;
padding:12px 24px;
border-radius:6px;
font-weight:700;
border:0;
cursor:pointer;
transition:.25s;
}

.btn,
.primary-btn{
background:linear-gradient(135deg,var(--blue),#084190);
color:var(--white);
box-shadow:0 10px 22px rgba(11,101,216,.22);
}

.secondary-btn{
background:rgba(255,255,255,.08);
color:var(--white);
border:1px solid rgba(255,255,255,.82);
}

.btn:hover,
.primary-btn:hover{
transform:translateY(-2px);
box-shadow:0 16px 30px rgba(11,101,216,.28);
}

.secondary-btn:hover{
background:var(--white);
color:var(--navy);
}

.menu-toggle{
display:none;
background:var(--navy);
color:var(--white);
border:0;
border-radius:6px;
padding:10px 14px;
font-weight:700;
cursor:pointer;
}

.hero{
min-height:520px;
display:flex;
align-items:center;
background:
linear-gradient(90deg,rgba(2,20,46,.98) 0%,rgba(2,31,72,.92) 36%,rgba(2,51,113,.58) 68%,rgba(2,51,113,.28) 100%),
url('https://images.unsplash.com/photo-1579154341098-e4e158cc7f55?auto=format&fit=crop&w=1800&q=80');
background-size:cover;
background-position:center;
color:var(--white);
}

.hero-inner{
width:92%;
max-width:1380px;
margin:auto;
display:grid;
grid-template-columns:minmax(0,1fr) 360px;
gap:48px;
align-items:center;
padding:70px 0;
}

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

.eyebrow,
.section-heading p{
text-transform:uppercase;
letter-spacing:.08em;
font-size:13px;
font-weight:800;
color:var(--blue);
}

.hero .eyebrow{
color:#8fc2ff;
margin-bottom:18px;
}

.hero h1{
font-size:clamp(42px,5vw,68px);
line-height:1.16;
font-weight:800;
margin-bottom:24px;
}

.hero h1 span{
color:#2f8cff;
}

.hero-copy{
font-size:20px;
line-height:1.75;
max-width:740px;
margin-bottom:28px;
}

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

.hero-quote{
background:var(--white);
border-radius:12px;
overflow:hidden;
box-shadow:0 24px 70px rgba(0,0,0,.28);
color:var(--text);
}

.quote-head{
display:flex;
gap:14px;
align-items:center;
background:linear-gradient(135deg,var(--navy),#073f94);
color:var(--white);
padding:22px 24px;
}

.quote-icon{
width:42px;
height:42px;
display:grid;
place-items:center;
border:1px solid rgba(255,255,255,.55);
border-radius:8px;
font-weight:800;
font-size:13px;
}

.quote-head h2{
font-size:22px;
line-height:1.1;
}

.quote-head p{
font-size:13px;
margin-top:4px;
opacity:.92;
}

.hero-quote form{
padding:20px 24px 22px;
}

input,
select,
textarea{
width:100%;
margin-bottom:10px;
padding:12px 14px;
border:1px solid #cdd8e8;
border-radius:6px;
font:inherit;
color:var(--text);
background:var(--white);
}

input:focus,
select:focus,
textarea:focus{
outline:3px solid rgba(45,140,255,.18);
border-color:var(--sky);
}

.hero-quote .form-button{
width:100%;
margin-top:0;
}

.form-message{
min-height:20px;
margin-top:10px;
font-size:13px;
font-weight:700;
}

.form-message.success{
color:#177245;
}

.form-message.error{
color:#b42318;
}

.trust-strip{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:22px;
align-items:center;
padding:18px 6%;
background:var(--white);
border-bottom:1px solid var(--line);
box-shadow:0 4px 18px rgba(0,0,0,.04);
}

.trust-item{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
}

.trust-item span{
width:54px;
height:54px;
display:grid;
place-items:center;
flex:0 0 54px;
background:linear-gradient(135deg,var(--navy),#0b65d8);
color:var(--white);
border-radius:50%;
font-size:12px;
font-weight:800;
box-shadow:0 8px 18px rgba(6,47,111,.22);
}

.trust-item strong{
display:block;
font-size:14px;
}

.trust-item p{
font-size:13px;
color:var(--muted);
margin-top:3px;
}

.section-heading{
max-width:780px;
margin:0 auto 36px;
text-align:center;
}

.section-heading p{
display:inline-flex;
align-items:center;
gap:12px;
margin-bottom:6px;
}

.section-heading p::before,
.section-heading p::after{
content:"";
width:58px;
height:3px;
background:var(--blue);
border-radius:6px;
}

.section-heading h2{
font-size:clamp(30px,3.2vw,42px);
line-height:1.2;
color:#071327;
}

.section-heading span{
display:block;
margin-top:10px;
color:var(--muted);
line-height:1.7;
}

.services{
padding:56px 6% 38px;
background:var(--white);
}

.cards{
display:grid;
grid-template-columns:repeat(6,minmax(0,1fr));
gap:14px;
max-width:1380px;
margin:0 auto;
}

.card{
background:var(--white);
padding:22px 20px;
border:1px solid var(--line);
border-radius:8px;
box-shadow:0 8px 22px rgba(2,27,63,.07);
transition:.25s;
min-height:210px;
}

.card:hover{
transform:translateY(-6px);
box-shadow:var(--shadow);
border-color:#b9cce8;
}

.service-icon{
width:52px;
height:52px;
display:grid;
place-items:center;
margin-bottom:18px;
color:var(--navy);
border:2px solid #0d55b7;
border-radius:8px;
font-weight:800;
font-size:13px;
}

.card h3{
color:var(--navy);
font-size:17px;
line-height:1.25;
margin-bottom:10px;
}

.card p{
color:#2c3444;
font-size:13px;
line-height:1.65;
margin-bottom:16px;
}

.card a{
color:var(--blue);
font-weight:800;
font-size:13px;
}

.metrics{
display:grid;
grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);
gap:34px;
align-items:center;
padding:0 6% 58px;
background:var(--white);
}

.metric-panel{
display:grid;
grid-template-columns:repeat(4,1fr);
background:linear-gradient(135deg,var(--navy),#075bd0);
color:var(--white);
border-radius:0 16px 16px 0;
padding:34px 26px;
box-shadow:var(--shadow);
}

.metric-panel div{
padding:0 22px;
border-right:1px solid rgba(255,255,255,.45);
}

.metric-panel div:last-child{
border-right:0;
}

.metric-panel strong{
display:block;
font-size:31px;
line-height:1;
}

.metric-panel span{
display:block;
font-size:12px;
margin-top:8px;
opacity:.92;
}

.partner-panel h2{
font-size:20px;
font-weight:600;
text-align:center;
margin-bottom:18px;
}

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

.partner-grid span{
display:grid;
place-items:center;
min-height:66px;
background:var(--white);
border:1px solid var(--line);
border-radius:8px;
color:#a3a8b0;
font-size:20px;
font-weight:800;
text-align:center;
}

.why-us,
.industries,
.testimonials,
.faq,
.form-section{
padding:80px 6%;
}

.why-us,
.faq{
background:#eef5ff;
}

.industries,
.form-section{
background:var(--light);
}

.why-container,
.industry-grid,
.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:22px;
max-width:1180px;
margin:0 auto;
}

.why-card,
.industry-card,
.testimonial,
.form-panel,
.info-panel{
background:var(--white);
padding:28px;
border-radius:8px;
border:1px solid var(--line);
box-shadow:0 10px 25px rgba(2,27,63,.07);
}

.why-card h3,
.industry-card h3{
color:var(--navy);
margin-bottom:10px;
}

.why-card p,
.info-panel p{
color:var(--muted);
line-height:1.75;
}

.industry-card{
text-align:center;
background:linear-gradient(135deg,var(--navy),#0b65d8);
color:var(--white);
}

.industry-card h3{
color:var(--white);
margin:0;
}

.cta{
padding:82px 6%;
text-align:center;
background:linear-gradient(135deg,var(--navy),var(--blue));
color:var(--white);
}

.cta h2{
font-size:clamp(30px,3vw,44px);
margin-bottom:14px;
}

.cta p{
font-size:18px;
margin-bottom:28px;
}

.cta .primary-btn{
background:var(--white);
color:var(--navy);
box-shadow:none;
}

footer{
background:var(--deep);
color:var(--white);
padding:54px 6% 32px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:34px;
max-width:1180px;
margin:0 auto 34px;
}

footer img{
height:70px;
margin-bottom:18px;
}

footer h3{
margin-bottom:16px;
}

footer p{
line-height:1.8;
color:rgba(255,255,255,.82);
}

footer hr{
max-width:1180px;
margin:0 auto 24px;
border:0;
border-top:1px solid rgba(255,255,255,.18);
}

.copyright{
text-align:center;
font-size:14px;
}

.page-hero{
padding:130px 8% 90px;
background:
linear-gradient(rgba(0,45,110,.78),rgba(0,45,110,.78)),
url('https://images.unsplash.com/photo-1581093458791-9d09f04b5117?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
color:white;
text-align:center;
}

.subpage-hero{
min-height:420px;
display:flex;
align-items:center;
padding:80px 6%;
color:var(--white);
background:
linear-gradient(90deg,rgba(2,20,46,.96),rgba(6,47,111,.78)),
url('https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=1800&q=80');
background-size:cover;
background-position:center;
}

.services-hero{
background:
linear-gradient(90deg,rgba(2,20,46,.96),rgba(6,47,111,.76)),
url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=1800&q=80');
background-size:cover;
background-position:center;
}

.about-hero{
background:
linear-gradient(90deg,rgba(2,20,46,.96),rgba(6,47,111,.72)),
url('https://images.unsplash.com/photo-1579165466741-7f35e4755660?auto=format&fit=crop&w=1800&q=80');
background-size:cover;
background-position:center;
}

.subpage-hero>div{
max-width:860px;
}

.subpage-hero h1{
font-size:clamp(38px,5vw,62px);
line-height:1.12;
margin:14px 0 20px;
}

.subpage-hero p:not(.eyebrow){
font-size:19px;
line-height:1.75;
max-width:760px;
margin-bottom:26px;
}

.service-overview,
.deliverables,
.process-section,
.about-story,
.principles,
.compliance-band{
padding:80px 6%;
}

.service-overview,
.about-story,
.compliance-band{
background:var(--white);
}

.deliverables,
.principles,
.process-section{
background:var(--light);
}

.service-detail-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:24px;
max-width:1180px;
margin:0 auto;
}

.service-detail{
background:var(--white);
border:1px solid var(--line);
border-radius:8px;
box-shadow:0 10px 28px rgba(2,27,63,.08);
padding:30px;
}

.service-detail h3{
color:var(--navy);
font-size:24px;
margin-bottom:12px;
}

.service-detail p{
color:var(--muted);
line-height:1.75;
margin-bottom:18px;
}

.service-detail ul,
.about-card ul{
display:grid;
gap:10px;
padding-left:18px;
color:#2c3444;
line-height:1.6;
}

.deliverable-grid,
.process-grid,
.principle-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:22px;
max-width:1180px;
margin:0 auto;
}

.deliverable-grid div,
.process-grid div,
.principle-grid div,
.about-card{
background:var(--white);
border:1px solid var(--line);
border-radius:8px;
box-shadow:0 10px 25px rgba(2,27,63,.07);
padding:28px;
}

.deliverable-grid h3,
.process-grid h3,
.principle-grid h3,
.about-card h3{
color:var(--navy);
margin-bottom:10px;
}

.deliverable-grid p,
.process-grid p,
.principle-grid p{
color:var(--muted);
line-height:1.75;
}

.process-grid span,
.principle-grid span{
display:inline-grid;
place-items:center;
width:46px;
height:46px;
margin-bottom:16px;
border-radius:50%;
background:linear-gradient(135deg,var(--navy),var(--blue));
color:var(--white);
font-weight:800;
}

.about-story{
display:grid;
grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
gap:34px;
align-items:center;
}

.about-copy h2,
.compliance-band h2{
font-size:clamp(30px,3.2vw,44px);
line-height:1.2;
color:#071327;
margin:10px 0 18px;
}

.about-copy p:not(.eyebrow),
.compliance-band p:not(.eyebrow){
color:var(--muted);
line-height:1.85;
margin-bottom:16px;
}

.compliance-band{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(320px,.9fr);
gap:34px;
align-items:start;
}

.compliance-list{
display:grid;
gap:14px;
}

.compliance-list div{
background:#eef5ff;
border:1px solid #d3e3f8;
border-radius:8px;
padding:20px;
}

.compliance-list strong{
display:block;
color:var(--navy);
margin-bottom:6px;
}

.compliance-list span{
display:block;
color:var(--muted);
line-height:1.65;
}

.page-hero h1{
font-size:52px;
margin-bottom:18px;
}

.page-hero p{
font-size:20px;
max-width:760px;
margin:0 auto;
line-height:1.7;
}

.form-section{
display:grid;
grid-template-columns:minmax(0,1.4fr) minmax(280px,.8fr);
gap:30px;
align-items:start;
}

.form-panel.wide{
grid-column:1 / -1;
max-width:960px;
margin:0 auto;
width:100%;
}

.form-panel h2,
.info-panel h2{
color:var(--navy);
margin-bottom:24px;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:18px;
}

label{
display:block;
font-weight:600;
color:var(--navy);
margin-bottom:18px;
}

label input,
label select,
label textarea{
margin-top:8px;
margin-bottom:0;
}

.form-button{
font:inherit;
}

.portal-card{
padding:20px;
border:1px solid var(--line);
border-radius:8px;
margin-bottom:16px;
background:var(--light);
}

.portal-card h3{
color:var(--blue);
margin-bottom:10px;
}

.empty-state{
color:var(--muted);
line-height:1.7;
}

.faq h2,
.testimonials h2{
text-align:center;
font-size:clamp(30px,3vw,40px);
margin-bottom:34px;
}

.faq-item{
max-width:900px;
margin:0 auto 16px;
background:var(--white);
padding:24px;
border-radius:8px;
border-left:5px solid var(--blue);
box-shadow:0 8px 22px rgba(2,27,63,.07);
}

.faq-question{
width:100%;
background:none;
border:0;
color:var(--navy);
cursor:pointer;
font:inherit;
font-size:19px;
font-weight:700;
text-align:left;
}

.faq-question::after{
content:"+";
float:right;
font-size:24px;
line-height:1;
}

.faq-item.open .faq-question::after{
content:"-";
}

.faq-item p{
margin-top:16px;
line-height:1.7;
color:var(--muted);
}

.testimonial h4{
color:#f5a623;
font-size:20px;
margin:18px 0 8px;
}

header.sticky{
box-shadow:0 8px 28px rgba(0,0,0,.12);
}

@media(max-width:1180px){
.cards{
grid-template-columns:repeat(3,minmax(0,1fr));
}

.trust-strip{
grid-template-columns:repeat(3,1fr);
}

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

@media(max-width:900px){
.topbar-inner{
flex-wrap:wrap;
gap:10px 18px;
padding:8px 0;
}

.topbar-inner a{
margin-left:0;
}

header .container{
min-height:86px;
}

.logo img{
height:68px;
}

.menu-toggle{
display:inline-flex;
}

nav{
display:none;
position:absolute;
top:100%;
left:0;
right:0;
background:var(--white);
padding:16px 6%;
box-shadow:0 16px 30px rgba(0,0,0,.14);
}

nav.open{
display:block;
}

nav ul{
display:block;
}

nav a{
padding:12px 0;
}

nav ul li a::after{
display:none;
}

.dropdown-menu{
position:static;
display:block;
width:100%;
box-shadow:none;
border:0;
padding:4px 0 4px 16px;
}

.container>.btn{
display:none;
}

.hero-inner{
grid-template-columns:1fr;
padding:54px 0;
}

.hero-quote{
max-width:520px;
}

.trust-strip{
grid-template-columns:repeat(2,1fr);
}

.metrics{
padding-top:30px;
}

.metric-panel{
grid-template-columns:repeat(2,1fr);
border-radius:12px;
gap:20px;
}

.metric-panel div{
border-right:0;
padding:0;
}

.form-section{
grid-template-columns:1fr;
}

.service-detail-grid,
.about-story,
.compliance-band{
grid-template-columns:1fr;
}
}

@media(max-width:640px){
.hero{
min-height:auto;
}

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

.hero-copy{
font-size:17px;
}

.hero-buttons{
display:grid;
}

.trust-strip,
.cards,
.partner-grid,
.form-grid{
grid-template-columns:1fr;
}

.trust-item{
justify-content:flex-start;
}

.metric-panel{
grid-template-columns:1fr;
}

.section-heading p::before,
.section-heading p::after{
width:32px;
}

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

.subpage-hero{
padding:58px 6%;
}

.subpage-hero h1{
font-size:36px;
}

.service-overview,
.deliverables,
.process-section,
.about-story,
.principles,
.compliance-band{
padding:56px 6%;
}
}
