
:root{
  /* =====================
     BRAND TOKENS — paste your exact hex codes here when ready
     Example: --brand: #E34121;  (Primary button/link color)
              --brand-contrast: #ffffff; (Text on brand background)
              --link: #E34121;
  ===================== */
  --brand: #E34121;           /* TODO: replace with site primary blue */
  --brand2: #14c38e;          /* Secondary accent (optional) */
  --link: #E34121;

  --bg:#ffffff; --muted:#f7f9fb; --ink:#0d1117; --card:#ffffff;
  --text:#1b2430; --sub:#5b6677; --brand: #E34121; --brand2:#14c38e; --accent:#ffb703;
  --ring: rgba(42,125,225,.25);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Open Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4,h5{
  font-family: 'Montserrat', Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing:.2px;
}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:1120px;margin-inline:auto;padding:24px}
header.nav{
  position:sticky;top:0;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);z-index:10
}
.nav-inner{display:flex;align-items:center;gap:16px;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px}
.brand-name{font-weight:800;letter-spacing:.3px;color:#111827}
nav ul{display:flex;gap:18px;list-style:none;margin:0;padding:0}
nav a{color:#0f172a;opacity:.92}
.btn{
  display:inline-flex;align-items:center;gap:8px;padding:12px 16px;border-radius:12px;border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg,#fff,#f8fafc);color:#0f172a;text-decoration:none
}
.btn:hover{box-shadow:0 6px 22px rgba(0,0,0,.08),0 0 0 3px var(--ring);text-decoration:none}
.btn.primary{background:linear-gradient(180deg,var(--brand),#E34121);border-color:rgba(0,0,0,.08);color:#ffffff;font-weight:700}
.btn.ghost{background:transparent}
.hero{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;padding:64px 24px 32px}
.hero h1{font-size:clamp(28px, 5vw, 56px);line-height:1.05;margin:0 0 6px;color:#0f172a}
.hero p{color:var(--sub);font-size:18px;margin:8px 0 22px}
.hero .badges{display:flex;gap:14px;flex-wrap:wrap;margin-top:8px}
.card{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:18px;padding:18px}
.grid{display:grid;gap:18px}
.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  .grid.cols-3, .grid.cols-4{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 640px){
  .grid.cols-2, .grid.cols-3, .grid.cols-4{grid-template-columns:1fr}
}
section{padding:34px 24px}
section h2{font-size:28px;margin:0 0 12px;color:#0f172a}
.lede{color:var(--sub);margin-top:0;margin-bottom:18px}
.kicker{display:inline-flex;gap:10px;align-items:center;padding:6px 10px;border-radius:12px;background:rgba(227,65,33,.08);color:#E34121;font-weight:700;letter-spacing:.2px}
.kicker small{font-weight:600}
.service{display:flex;gap:16px}
.service h3{margin:6px 0 8px;color:#0f172a}
.service ul{margin:8px 0 0 18px;color:var(--sub)}
.process{counter-reset: step}
.process .step{position:relative;padding-left:44px}
.process .step:before{counter-increment: step;content: counter(step);position:absolute;left:0;top:0;width:32px;height:32px;border-radius:50%;
  background:linear-gradient(180deg,var(--brand),#1d6ccc);color:#ffffff;display:grid;place-items:center;font-weight:800}
.gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.gallery img{width:100%;height:auto;border-radius:6px;border:1.5px solid #555;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,0.25)}
@media (max-width: 900px){.gallery{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 640px){.gallery{grid-template-columns:1fr}}
.faq details{background:#fff;border:1px solid rgba(0,0,0,.08);
  border-radius:14px;padding:14px}
.faq summary{cursor:pointer;font-weight:700}
.cta{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between}
footer{padding:32px 24px;color:var(--sub);border-top:1px solid rgba(0,0,0,.06);background:#fafafa}
footer .cols{display:grid;gap:16px;grid-template-columns:2fr 1fr 1fr}
@media (max-width: 900px){footer .cols{grid-template-columns:1fr}}
.notice{font-size:12px;color:#6b7280}
.mobile-toggle{display:none}
@media (max-width: 820px){ 
  nav ul{display:none}
  .mobile-toggle{display:inline-flex}
  nav.open ul{display:flex;flex-direction:column;gap:12px;position:absolute;right:24px;top:64px;background:#ffffff;
    border:1px solid rgba(0,0,0,.08);border-radius:14px;padding:12px 16px}
}
.visually-hidden{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}


/* === Brand footer to match current site === */
footer{background:#E34121; color:#ffffff; border-top:none}
footer a{color:#ffffff; text-decoration:underline}
footer .notice{color:rgba(255,255,255,.85)}
footer .brand-name{color:#ffffff}

.gallery figure{margin:0}
.gallery figcaption{font-size:14px;color:var(--sub);text-align:center;margin-top:6px}
