
:root{
    --navy:#082b52;
    --navy-dark:#062342;
    --blue:#1769d2;
    --light-blue:#eef5ff;
    --text:#1f2937;
    --muted:#64748b;
    --border:#dfe7f1;
    --white:#ffffff;
    --bg:#f7f9fc;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1500px,96%);margin:0 auto}

/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid #edf1f5;
}
.header-inner{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}
.logo img{height:48px;width:auto}
nav{display:flex;gap:28px;align-items:center}
nav a{
    font-size:14px;
    font-weight:600;
    color:#24364d;
    padding:28px 0 23px;
    border-bottom:2px solid transparent;
}
nav a:hover,nav a.active{
    color:var(--blue);
    border-color:var(--blue);
}
.header-cta{
    background:var(--navy);
    color:#fff;
    padding:12px 18px;
    border-radius:6px;
    font-size:14px;
    font-weight:700;
}

/* BUTTONS */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 22px;
    border-radius:6px;
    font-weight:700;
    font-size:14px;
    transition:.2s ease;
}
.btn-primary{background:var(--blue);color:#fff}
.btn-primary:hover{background:#0f58b8;transform:translateY(-1px)}
.btn-outline{border:1px solid var(--navy);color:var(--navy);background:#fff}
.btn-outline:hover{background:var(--light-blue)}

/* HERO */
.hero{
    background:#fff;
}
.hero-inner{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    min-height:490px;
    align-items:stretch;
}
.hero-copy{
    padding:72px 54px 56px 1%;
    align-self:center;
}
.eyebrow{
    color:var(--blue);
    text-transform:uppercase;
    letter-spacing:.13em;
    font-weight:800;
    font-size:12px;
}
.hero-copy h1{
    margin:12px 0 18px;
    color:var(--navy-dark);
    font-size:52px;
    line-height:1.08;
    letter-spacing:-.03em;
}
.hero-copy p{
    max-width:520px;
    color:#475569;
    font-size:17px;
    margin-bottom:26px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-note{
    margin-top:18px;
    color:#475569;
    font-size:13px;
}
.hero-note i{color:var(--blue);margin-right:6px}
.hero-image{
    min-height:490px;
    overflow:hidden;
}
.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TRUST BAR */
.trust-strip{
    background:var(--navy);
    color:#fff;
}
.trust-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
}
.trust-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:22px 16px;
    border-right:1px solid rgba(255,255,255,.14);
}
.trust-item:last-child{border-right:0}
.trust-item i{font-size:21px;color:#fff;margin-top:2px}
.trust-item strong{display:block;font-size:13px}
.trust-item span{font-size:11px;color:#d6e4f3;line-height:1.35}

/* SECTION */
.section{padding:64px 0}
.section-light{background:var(--bg)}
.section-heading{max-width:680px;margin:0 auto 36px;text-align:center}
.section-heading.left{text-align:left;margin:0}
.section-heading h2{
    margin:8px 0 12px;
    color:var(--navy-dark);
    font-size:36px;
    line-height:1.18;
}
.section-heading p{color:var(--muted);font-size:16px}

/* SERVICES */
.services-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:24px;
    align-items:start;
}
.services-intro .btn{margin-top:18px}
.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}
.service-card{
    border:1px solid var(--border);
    background:#fff;
    padding:22px;
    min-height:240px;
    transition:.2s ease;
}
.service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(8,43,82,.10);
}
.service-icon{
    width:42px;height:42px;
    border-radius:50%;
    background:var(--light-blue);
    color:var(--blue);
    display:grid;
    place-items:center;
    margin-bottom:16px;
}
.service-card h3{
    color:var(--navy-dark);
    font-size:18px;
    margin-bottom:10px;
}
.service-card p{
    color:var(--muted);
    font-size:13px;
    line-height:1.55;
}
.text-link{
    display:inline-block;
    margin-top:16px;
    color:var(--blue);
    font-size:13px;
    font-weight:700;
}

/* PROCESS */
.process-layout{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:28px;
}
.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}
.process-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    padding:24px 20px;
}
.process-number{
    width:34px;height:34px;border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:700;
    font-size:12px;
    margin-bottom:16px;
}
.process-card i{font-size:25px;color:var(--navy);margin-bottom:14px}
.process-card h3{font-size:15px;color:var(--navy-dark);margin-bottom:8px}
.process-card p{font-size:12px;color:var(--muted)}

/* ABOUT BAND */
.about-band{
    display:grid;
    grid-template-columns:.42fr .58fr;
    background:var(--navy);
    color:#fff;
}
.about-band img{
    width:100%;
    height:100%;
    min-height:270px;
    object-fit:cover;
}
.about-band-copy{
    padding:46px 52px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.about-band-copy .eyebrow{color:#8fc0ff}
.about-band-copy h2{font-size:34px;margin:8px 0 12px}
.about-band-copy p{color:#d4e2f0;max-width:650px;margin-bottom:20px}
.about-band-copy .btn{background:#fff;color:var(--navy);width:max-content}

/* FAQ */
.faq-list{max-width:900px;margin:0 auto}
details{
    border:1px solid var(--border);
    background:#fff;
    padding:18px 20px;
    margin-bottom:12px;
}
summary{font-weight:700;color:var(--navy-dark);cursor:pointer}
details p{padding-top:12px;color:var(--muted)}

/* PAGE HERO */
.page-hero{
    padding:58px 0;
    background-size:cover;
    background-position:center;
    color:#fff;
}
.page-intro{max-width:760px}
.page-intro h1{font-size:46px;margin:8px 0 10px}
.page-intro p{color:#d8e4f1}
.about-page-hero{
    background-image:linear-gradient(rgba(8,43,82,.82),rgba(8,43,82,.82)),url('../assets/images/about-hero.jpg')
}
.services-page-hero{
    background-image:linear-gradient(rgba(8,43,82,.82),rgba(8,43,82,.82)),url('../assets/images/services-hero.jpg')
}
.contact-page-hero{
    background-image:linear-gradient(rgba(8,43,82,.82),rgba(8,43,82,.82)),url('../assets/images/contact-hero.jpg')
}

/* ABOUT PAGE */
.about-page-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}
.about-page-layout h2{font-size:36px;color:var(--navy-dark);margin:8px 0 18px}
.about-page-layout p{color:var(--muted);margin-bottom:14px}
.about-page-layout img{
    width:100%;
    height:330px;
    object-fit:cover;
}
.values-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
}
.value-card{
    text-align:center;
    padding:22px 14px;
}
.value-card i{color:var(--blue);font-size:23px;margin-bottom:12px}
.value-card h3{font-size:14px;color:var(--navy-dark);margin-bottom:7px}
.value-card p{font-size:11px;color:var(--muted)}

/* CONTACT PAGE */
.contact-layout{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:48px;
}
.contact-copy h2{font-size:36px;color:var(--navy-dark);margin:8px 0 16px}
.contact-copy>p{color:var(--muted);margin-bottom:24px}
.contact-list{display:grid;gap:17px}
.contact-row{display:flex;gap:12px}
.contact-row i{
    width:36px;height:36px;border-radius:50%;
    display:grid;place-items:center;
    color:var(--blue);background:var(--light-blue)
}
.contact-row strong{display:block;color:var(--navy-dark);font-size:14px}
.contact-row span{color:var(--muted);font-size:13px}
.contact-form{
    border:1px solid var(--border);
    padding:28px;
    background:#fff;
}
.contact-form h3{font-size:26px;color:var(--navy-dark);margin-bottom:6px}
.contact-form>p{color:var(--muted);margin-bottom:20px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-group{display:grid;gap:6px}
.form-group.full{grid-column:1/-1}
label{font-size:12px;font-weight:700;color:var(--navy-dark)}
input,textarea,select{
    width:100%;
    border:1px solid #cfd8e3;
    padding:12px 13px;
    font:inherit;
}
textarea{min-height:130px;resize:vertical}
button{border:0;cursor:pointer}

/* FOOTER */
.site-footer{
    background:var(--navy-dark);
    color:#fff;
    padding:48px 0 18px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1.2fr 1.2fr 1fr;
    gap:28px;
}
.footer-logo img{height:44px;margin-bottom:14px}
.footer-grid h4{font-size:14px;margin-bottom:12px}
.footer-grid p,.footer-grid a{font-size:12px;color:#cbd8e6}
.footer-links{display:grid;gap:7px}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:32px;
    padding-top:16px;
    color:#8ea7bf;
    text-align:center;
    font-size:11px;
}

/* RESPONSIVE */
@media(max-width:1050px){
    .trust-grid{grid-template-columns:repeat(3,1fr)}
    .trust-item:nth-child(3){border-right:0}
    .service-grid{grid-template-columns:repeat(2,1fr)}
    .values-grid{grid-template-columns:repeat(3,1fr)}
    .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:820px){
    .header-inner{flex-direction:column;padding:10px 0 14px}
    nav{gap:18px;flex-wrap:wrap;justify-content:center}
    nav a{padding:6px 0}
    .header-cta{display:none}
    .hero-inner{grid-template-columns:1fr}
    .hero-copy{padding:55px 0 35px;text-align:center}
    .hero-actions{justify-content:center}
    .hero-image{min-height:360px}
    .services-layout,.process-layout,.about-page-layout,.contact-layout{grid-template-columns:1fr}
    .process-grid{grid-template-columns:repeat(2,1fr)}
    .about-band{grid-template-columns:1fr}
    .about-band-copy{padding:38px 28px}
}
@media(max-width:600px){
    .hero-copy h1{font-size:40px}
    .trust-grid{grid-template-columns:1fr 1fr}
    .trust-item{border-bottom:1px solid rgba(255,255,255,.14)}
    .service-grid,.process-grid,.values-grid,.footer-grid,.form-grid{grid-template-columns:1fr}
    .form-group.full{grid-column:auto}
}


/* Full-width desktop refinement */
@media (min-width: 1200px) {
    .header-inner,
    .hero-inner,
    .trust-grid,
    .services-layout,
    .process-layout,
    .about-page-layout,
    .contact-layout,
    .footer-grid {
        width: min(1500px, 96%);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-inner {
        min-height: 520px;
    }

    .hero-copy {
        padding-left: 8px;
    }

    .hero-image {
        min-height: 520px;
    }

    .services-layout {
        grid-template-columns: 300px 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-card {
        min-height: 255px;
    }

    .about-band-copy {
        padding-right: 6%;
    }
}
