body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  margin:0;
  line-height:1.5;
}
header{
  padding:28px 18px;
  background:#0b0f14;
  color:#fff;
}
nav a{
  color:#fff;
  text-decoration:none;
  margin-right:14px;
  opacity:.9;
}
nav a:hover{opacity:1}

main{
  max-width:1000px;
  margin:0 auto;
  padding:28px 18px;
}

.card{
  border:1px solid #e6e6e6;
  border-radius:14px;
  padding:18px;
  margin-top:14px;
}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background:#0b0f14;
  color:#fff;
  text-decoration:none;
  border:0;
  cursor:pointer;
}

label{display:block; font-weight:600; margin-top:12px}
input, textarea{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid #ccc;
  font:inherit;
}
textarea{min-height:140px}

footer{
  padding:22px 18px;
  color:#666;
}

.muted{color:#555}
/* ===== Landing page helpers (ACMSS) ===== */

:root{
  --bg: #f6f7f9;
  --card: #ffffff;
  --text: #0b0f14;
  --muted: rgba(11,15,20,.72);
  --border: #e6e6e6;
  --soft: #f0f2f5;
  --dark: #0b0f14;
}

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

main{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 44px;
}

.section{
  margin: 22px 0;
}

.section.soft{
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  margin: 18px 0;
}

.h2{
  font-size: 24px;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.h3{
  font-size: 16px;
  margin: 0 0 8px;
  opacity: .92;
}

.muted{
  color: var(--muted);
}

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

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

@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

.btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #0b0f14;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.16);
}

.btn-dark{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  background: #0b0f14;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(11,15,20,.18);
}

.link-light{
  color:#ffffff;
  opacity:.9;
  text-decoration: underline;
}

.small{
  font-size: 13px;
}

.hr{
  height:1px;
  background: var(--border);
  border:0;
  margin: 14px 0;
}
/* Full-width hero that still keeps content aligned */
.hero-fw{
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-inner{
  max-width: 1100px; /* match your main width vibe */
  margin: 0 auto;
  padding: 18px 0;
}
/* ===== Contrast upgrades (monochrome, senior) ===== */

body{
  background:#f4f6f8;
}

/* Keep main content readable */
main{
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px 50px;
}

/* Stronger card separation */
.card{
  background:#ffffff;
  border:1px solid #e3e7ee;
  border-radius:16px;
  box-shadow: 0 1px 0 rgba(11,15,20,.04);
}

/* Headings feel more deliberate */
.card h2{
  letter-spacing:-0.3px;
}

.card h3{
  letter-spacing:-0.15px;
}

/* Softer muted text */
.muted{
  color: rgba(11,15,20,.68);
}

/* Section band to break the page (we'll use it once) */
.band{
  background:#eef2f6;
  border:1px solid #e3e7ee;
  border-radius:18px;
  padding:18px;
  margin:18px 0;
}

/* Optional: highlight cards (still monochrome) */
.card.accent{
  border-left: 4px solid #0b0f14;
}
/* ===== Global contrast system ===== */

body{
  background:#f4f6f8;
  color:#0b0f14;
}

main{
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px 50px;
}

/* Global card look (applies everywhere) */
.card{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:18px;
  margin:18px 0;
  box-shadow: 0 1px 0 rgba(11,15,20,.04);
}

/* Better hierarchy */
.card h2{
  margin-top:0;
  letter-spacing:-0.35px;
}

.card h3{
  margin-top:0;
  letter-spacing:-0.2px;
}

/* Muted copy */
.muted{
  color: rgba(11,15,20,.68);
}

/* Accent for PRIMARY cards only */
.card.accent{
  border-left:4px solid #0b0f14;
}

/* Band sections (use sparingly) */
.band{
  background:#eef2f6;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:18px;
  margin:18px 0;
}
.card:hover{
  transform: translateY(-1px);
  transition: transform .12s ease;
}
 /* ===== Primary CTA emphasis ===== */

/* Used for main actions like Book a call */
.btn-primary{
  display:inline-block;
  padding:14px 20px;
  border-radius:12px;
  background:#0b0f14;
  color:#ffffff;
  font-weight:800;
  text-decoration:none;
  border:1px solid #0b0f14;
  box-shadow: 0 6px 18px rgba(11,15,20,.18);
}

/* Used for secondary but important actions like Go to Services */
.btn-outline{
  display:inline-block;
  padding:14px 20px;
  border-radius:12px;
  background:#ffffff;
  color:#0b0f14;
  font-weight:800;
  text-decoration:none;
  border:2px solid #0b0f14;
}

 
