/* ---------- Theme (Direction A: Minimal Corporate) ---------- */
:root{
    --brand: #0B4A8B;
    --navy: #0A1F33;
    --surface: #F6F8FB;
    --text: #0F172A;
    --muted: #64748B;
    --accent: #FF5A1F;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(2, 8, 23, .08);
    --shadow-sm: 0 6px 16px rgba(2, 8, 23, .08);
}

/* Basics */
html, body { height: 100%; }
body{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a{ color: var(--brand); }
a:hover{ opacity: .9; }

.section{ padding: 64px 0; }
.section--tight{ padding: 40px 0; }
.bg-surface{ background: var(--surface); }

.small-muted{ color: var(--muted); font-size: 0.95rem; }

/* Top strip */
.top-strip{
    background: #fff;
    border-bottom: 1px solid rgba(15,23,42,.08);
    font-size: .9rem;
}
.top-strip .grid-container{ padding: 8px 0; }
.top-strip a{ color: var(--navy); }

/* Header / Topbar */
.brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    color: var(--navy);
    letter-spacing: .2px;
}
.brand-mark{
    width:34px; height:34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), #1B7BD6);
    display:inline-block;
}
.top-bar{
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15,23,42,.08);
}
.top-bar ul{ background: transparent; }
.top-bar .menu a{
    color: var(--navy);
    font-weight: 600;
    padding: 0.65rem 0.75rem;
}
.top-bar .menu a:hover{ color: var(--brand); }
.button.cta{
    background: var(--accent);
    border-radius: 999px;
    font-weight: 700;
    padding: .85rem 1.15rem;
}
.button.cta:hover{ filter: brightness(.97); }
.button.secondary-outline{
    background: transparent;
    border: 2px solid rgba(11,74,139,.25);
    color: var(--brand);
    border-radius: 999px;
    font-weight: 700;
    padding: .78rem 1.05rem;
}
.button.secondary-outline:hover{ border-color: rgba(11,74,139,.45); }

/* Hero */
.hero{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B4A8B 0%, #0A1F33 100%);
    color: #fff;
    padding: 56px 0;
}
.hero h1{
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: 12px;
}
.hero p{
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    margin-bottom: 22px;
}
.hero-card{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-image{
    min-height: 290px;
    background:
            linear-gradient(0deg, rgba(10,31,51,.45), rgba(10,31,51,.45)),
            radial-gradient(circle at 30% 30%, rgba(255,90,31,.35), transparent 45%),
            linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

/* Trust badges */
.badges{
    margin-top: 18px;
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
}
.badge{
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.9);
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 650;
    font-size: .92rem;
}

/* Cards */
.card{
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15,23,42,.06);
    overflow: hidden;
}
.card .card-body{ padding: 18px; }
.card .card-title{
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.card .card-meta{ color: var(--muted); margin-bottom: 0; }
.card .card-link{
    display:inline-flex;
    gap:8px;
    align-items:center;
    font-weight: 750;
    margin-top: 10px;
}

/* Service card thumb placeholder */
.thumb{
    height: 110px;
    background:
            linear-gradient(0deg, rgba(11,74,139,.12), rgba(11,74,139,.12)),
            linear-gradient(135deg, #e8eef7, #f7fafc);
}

/* Process */
.step{
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 16px;
    height: 100%;
}
.step-num{
    width: 44px; height: 44px;
    border-radius: 999px;
    background: rgba(11,74,139,.10);
    color: var(--brand);
    display:flex; align-items:center; justify-content:center;
    font-weight: 900;
    margin-bottom: 10px;
}

/* Reference strip */
.logo-strip{
    display:flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: .85;
}
.logo-pill{
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    font-weight: 750;
    color: var(--navy);
}

/* CTA band */
.cta-band{
    background: linear-gradient(135deg, #0B4A8B, #0A1F33);
    color: #fff;
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: 22px;
}
.cta-band h3{ margin: 0 0 10px 0; font-weight: 850; }
.cta-band label{ color: rgba(255,255,255,.85); }
.cta-band input, .cta-band select{
    border-radius: 12px;
}

/* Footer */
.site-footer{
    background: #0A1F33;
    color: rgba(255,255,255,.8);
    padding: 46px 0;
}
.site-footer a{ color: rgba(255,255,255,.92); }
.site-footer .footer-title{
    color: #fff;
    font-weight: 850;
    margin-bottom: 8px;
}

/* Contact map placeholder */
.map{
    height: 280px;
    border-radius: var(--radius);
    background:
            radial-gradient(circle at 55% 40%, rgba(255,90,31,.25), transparent 45%),
            linear-gradient(135deg, #e8eef7, #f7fafc);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: var(--shadow-sm);
}

/* Off-canvas + mobile sticky bar */
.mobile-cta{
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    display:flex;
    gap: 10px;
    z-index: 9999;
}
.mobile-cta .button{
    margin: 0;
    flex: 1;
    border-radius: 14px;
    font-weight: 800;
}
.button.call{
    background: var(--brand);
}
.button.call:hover{ filter: brightness(.97); }

/* Helpers */
.page-title{
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}
.page-hero{
    padding: 34px 0;
    background: var(--surface);
    border-bottom: 1px solid rgba(15,23,42,.06);
}
.kv{
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: var(--shadow-sm);
    padding: 16px;
}
.kv strong{ color: var(--navy); }

@media (max-width: 640px){
    .section{ padding: 44px 0; }
    .hero{ padding: 44px 0; }
}
