
:root{
  --navy:#1b2547;
  --navy-deep:#0f1c37;
  --red:#e11d2e;
  --red-dark:#b81626;
  --text:#1b2547;
  --muted:#6b7280;
  --border:#e5e7eb;
  --soft:#f5f6f9;
  --bg:#ffffff;
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;color:var(--text);background:#fff;line-height:1.5;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{color:var(--navy);font-weight:700;letter-spacing:-.01em;line-height:1.2}
h1{font-size:clamp(1.85rem,5vw,3rem)}
h2{font-size:clamp(1.4rem,3.2vw,2rem)}
h3{font-size:1.15rem}
p{line-height:1.6}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:0;background:none}
input,select,textarea{font:inherit;color:var(--text)}
hr{border:0;border-top:1px solid var(--border)}

.container{max-width:1200px;margin:0 auto;padding:0 1rem}
@media(min-width:768px){.container{padding:0 1.5rem}}

/* Header */
.site-header{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.75rem 0}
.logo img{height:48px;width:auto}
@media(min-width:768px){.logo img{height:56px}}
.nav-desktop{display:none;align-items:center;gap:1.75rem}
@media(min-width:1024px){.nav-desktop{display:flex}}
.nav-desktop a{color:var(--navy);font-weight:600;font-size:.95rem;position:relative;padding:.25rem 0}
.nav-desktop a.active{color:var(--red)}
.nav-desktop a.active::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;background:var(--red)}
.call-btn{display:none;align-items:center;gap:.45rem;background:var(--navy);color:#fff;font-weight:600;padding:.7rem 1.1rem;border-radius:.45rem;font-size:.9rem}
@media(min-width:640px){.call-btn{display:inline-flex}}

/* Mobile menu */
.menu-toggle{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:.4rem;color:var(--navy);background:#f3f4f6}
@media(min-width:1024px){.menu-toggle{display:none}}
.menu-toggle svg{width:24px;height:24px}
.mobile-nav{position:fixed;inset:0;background:rgba(15,28,55,.55);opacity:0;visibility:hidden;transition:opacity .2s;z-index:100}
.mobile-nav.open{opacity:1;visibility:visible}
.mobile-nav-panel{position:absolute;right:0;top:0;bottom:0;width:min(82%,340px);background:#fff;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .25s ease;overflow-y:auto}
.mobile-nav.open .mobile-nav-panel{transform:translateX(0)}
.mobile-nav-head{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;border-bottom:1px solid var(--border)}
.mobile-nav-head img{height:40px}
.mobile-nav-close{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;color:var(--navy);border-radius:.4rem;background:#f3f4f6}
.mobile-nav ul{padding:.5rem 0;flex:1}
.mobile-nav li a{display:block;padding:.95rem 1.25rem;font-weight:600;color:var(--navy);font-size:1.05rem;border-bottom:1px solid #f1f2f5}
.mobile-nav li a.active{color:var(--red)}
.mobile-nav-foot{padding:1.25rem}
.mobile-nav-foot a{display:flex;align-items:center;justify-content:center;gap:.5rem;background:var(--red);color:#fff;font-weight:700;padding:.85rem;border-radius:.45rem}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font-weight:600;padding:.85rem 1.4rem;border-radius:.45rem;font-size:.95rem;transition:background .15s,transform .1s;text-align:center}
.btn-red{background:var(--red);color:#fff}
.btn-red:hover{background:var(--red-dark)}
.btn-navy{background:var(--navy);color:#fff}
.btn-outline{background:#fff;color:var(--navy);border:1px solid var(--border)}
.btn svg{width:16px;height:16px;flex-shrink:0}

/* Hero */
.hero-home{position:relative;background-size:cover;background-position:center;padding:3.5rem 0}
@media(min-width:768px){.hero-home{padding:5rem 0}}
.hero-home-grid{display:grid;gap:2rem;grid-template-columns:1fr;align-items:center}
@media(min-width:900px){.hero-home-grid{grid-template-columns:1.2fr 1fr}}
.hero-tag{color:var(--red);font-weight:700;font-size:1.15rem;margin-top:.85rem}
.hero-sub{margin-top:.85rem;color:#374151;max-width:32rem}
.hero-cta{margin-top:1.5rem;display:flex;flex-wrap:wrap;gap:.75rem}
.badge-card{background:#fff;border-radius:.85rem;box-shadow:0 10px 25px -10px rgba(0,0,0,.15);padding:1rem 1.25rem;display:flex;align-items:center;gap:1.25rem;justify-self:start}
@media(min-width:900px){.badge-card{justify-self:end}}
.badge-card img{height:54px;width:auto}
.badge-card .divider{width:1px;height:42px;background:var(--border)}

/* Page hero (other pages) */
.page-hero{color:#fff;background-size:cover;background-position:center;padding:3rem 0}
@media(min-width:768px){.page-hero{padding:4.5rem 0}}
.page-hero h1{color:#fff}
.crumbs{display:flex;flex-wrap:wrap;gap:.4rem;font-size:.85rem;color:rgba(255,255,255,.8);margin-bottom:1rem}
.crumbs a{color:rgba(255,255,255,.8)}
.crumbs span.sep{color:rgba(255,255,255,.6)}
.crumbs span.cur{color:#fff}

/* Service cards strip */
.services{display:grid;gap:1rem;grid-template-columns:1fr;margin-top:-2rem;position:relative;z-index:5}
@media(min-width:640px){.services{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.services{grid-template-columns:repeat(4,1fr);margin-top:-2.5rem}}
.svc-card{background:#fff;border:1px solid var(--border);border-radius:.85rem;padding:1.4rem;box-shadow:0 8px 20px -12px rgba(0,0,0,.15)}
.icon-navy{display:inline-flex;align-items:center;justify-content:center;width:3rem;height:3rem;border-radius:999px;background:var(--navy);color:#fff;margin-bottom:.85rem;flex-shrink:0}
.icon-navy svg{width:22px;height:22px}
.icon-red{display:inline-flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;border-radius:999px;background:var(--red);color:#fff;flex-shrink:0}
.icon-red svg{width:18px;height:18px}
.svc-card h3{margin-bottom:.25rem}
.svc-card p{color:var(--muted);font-size:.9rem}

/* Feature band */
.feature-band{background:var(--navy-deep);color:#fff;border-radius:.85rem;padding:1.6rem;display:grid;gap:1.2rem;grid-template-columns:1fr}
@media(min-width:600px){.feature-band{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.feature-band{grid-template-columns:repeat(6,1fr)}}
.feature-band .item{display:flex;gap:.75rem}
.feature-band .item svg{width:22px;height:22px;flex-shrink:0;margin-top:.15rem}
.feature-band .item .t{font-size:.88rem;font-weight:600}
.feature-band .item .d{font-size:.78rem;color:rgba(255,255,255,.75);margin-top:.2rem}

/* Map + form section */
.three-col{display:grid;gap:2rem;grid-template-columns:1fr;padding:3rem 0}
@media(min-width:900px){.three-col{grid-template-columns:repeat(3,1fr)}}
.three-col img{border-radius:.6rem;border:1px solid var(--border);width:100%;height:14rem;object-fit:cover}
.muted{color:var(--muted)}
.mt-3{margin-top:.85rem}.mt-4{margin-top:1.1rem}.mt-5{margin-top:1.4rem}.mt-6{margin-top:1.6rem}

/* Forms */
.form-grid{display:grid;gap:.85rem;margin-top:1rem}
.field-input{width:100%;padding:.75rem .9rem;border:1px solid var(--border);border-radius:.45rem;background:#fff;font-size:.95rem;outline:none;transition:border-color .15s}
.field-input:focus{border-color:var(--red)}
.field-label{display:block;font-size:.85rem;font-weight:600;color:var(--navy);margin-bottom:.4rem}
.req{color:var(--red)}
.input-icon{position:relative}
.input-icon svg{position:absolute;right:.85rem;top:50%;transform:translateY(-50%);width:16px;height:16px;color:var(--muted)}

/* Cards / panels */
.panel{background:#fff;border:1px solid var(--border);border-radius:.85rem;padding:1.4rem;box-shadow:0 4px 14px -10px rgba(0,0,0,.1)}
@media(min-width:768px){.panel{padding:2rem}}
.panel-soft{background:var(--soft);border-radius:.85rem;padding:1.4rem}
@media(min-width:768px){.panel-soft{padding:1.75rem}}
.panel-navy{background:var(--navy-deep);color:#fff;border-radius:.85rem;padding:1.5rem}
.panel-navy h3{color:#fff}

/* Generic grids */
.grid-2{display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:768px){.grid-2{grid-template-columns:1fr 1fr}}
.grid-3{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:768px){.grid-3{grid-template-columns:repeat(3,1fr)}}
.grid-form-3{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:768px){.grid-form-3{grid-template-columns:repeat(3,1fr)}}
.grid-form-2{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:640px){.grid-form-2{grid-template-columns:1fr 1fr}}
.col-span-all{grid-column:1/-1}

/* Lists */
.info-row{display:flex;gap:.85rem}
.info-row .body{font-size:.9rem}
.info-row .body .title{font-weight:700;color:var(--navy);margin-bottom:.25rem}
.bullet-list{display:grid;gap:.7rem;margin-top:1.2rem}
.bullet-list li{display:flex;gap:.55rem;align-items:flex-start;font-size:.92rem}
.check{display:inline-flex;width:1.25rem;height:1.25rem;border-radius:999px;background:var(--red);color:#fff;align-items:center;justify-content:center;flex-shrink:0;margin-top:.1rem}
.check svg{width:11px;height:11px}

/* Sections */
section{padding:0}
.section-pad{padding:3rem 0}
.section-pad-sm{padding:2rem 0}

/* Commercial hero overlay form */
.dark-input{position:relative}
.dark-input input,.dark-input select,.dark-input textarea{background:transparent;color:#fff;border-color:rgba(255,255,255,.25)}
.dark-input input::placeholder,.dark-input textarea::placeholder{color:rgba(255,255,255,.6)}
.dark-input svg{color:rgba(255,255,255,.6)}

/* Footer */
.site-footer{background:var(--navy-deep);color:#fff}
.footer-grid{display:grid;gap:2.25rem;grid-template-columns:1fr;padding:3rem 0}
@media(min-width:640px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.site-footer .logo-foot{height:54px;filter:brightness(0) invert(1)}
.site-footer h4{color:#fff;margin-bottom:1rem;font-size:1rem}
.site-footer ul li{margin-bottom:.55rem;font-size:.9rem;color:rgba(255,255,255,.8)}
.site-footer ul li a:hover{color:#fff}
.socials{display:flex;gap:.6rem;margin-top:1.1rem}
.socials a{width:38px;height:38px;border-radius:999px;background:rgba(255,255,255,.1);display:inline-flex;align-items:center;justify-content:center}
.socials a:hover{background:rgba(255,255,255,.2)}
.socials svg{width:16px;height:16px}
.members{background:#fff;border-radius:.55rem;padding:1rem;display:flex;flex-direction:column;align-items:center;gap:1rem}
.members img.cas{height:64px}.members img.jm{height:40px}
.copyright{border-top:1px solid rgba(255,255,255,.15)}
.copyright .row{padding:1rem 0;display:flex;flex-wrap:wrap;gap:.4rem 1.25rem;font-size:.78rem;color:rgba(255,255,255,.7)}

/* Utility */
.text-sm{font-size:.88rem}
.text-xs{font-size:.78rem}
.font-bold{font-weight:700}
.text-red{color:var(--red)}
.text-navy{color:var(--navy)}
.tel-link{color:var(--red);font-weight:700}
.flex-wrap{display:flex;flex-wrap:wrap;gap:.75rem}
.flex-between{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.85rem}
.full{width:100%}
.lock-note{font-size:.75rem;color:var(--muted);display:inline-flex;align-items:center;gap:.4rem}
.lock-note svg{width:13px;height:13px}
