/* -------- Base -------- */
:root{
  --bg:#f6f6f6;
  --card:#f6f6f6;
  --ink:#2c3e50;
  --muted:#5a6c7d;
  --brand:#1e66ff;
  --accent:#0066cc;
  --ring: rgba(102,217,237,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background: #f6f6f6;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

/* -------- Layout -------- */
.container{width:min(1100px,92%);margin-inline:auto}
.section{padding:72px 0}
.section.alt{background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0));}
.section-title{
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
  margin:0 0 8px;
  font-weight:800;
}
.section-subtitle{
  margin:0 0 24px;
  color:var(--muted);
}
.grid{display:grid;gap:20px}
.grid-2{grid-template-columns:repeat(1,1fr)}
.grid-3{grid-template-columns:repeat(1,1fr)}
@media(min-width:768px){
  .grid-2{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(3,1fr)}
}

/* -------- Header -------- */
.site-header{
  position:sticky;top:0;z-index:10;
  backdrop-filter:saturate(180%) blur(8px);
  background:#ececec;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{margin-left: -8px;}
.menu{display:flex;gap:18px;align-items:center}
.menu a{color:var(--ink);opacity:.9}
.menu .btn{opacity:1}
.menu .btn-primary{color:white}

/* -------- Hero -------- */
.hero{
  position:relative;
  padding:80px 0 24px;
}
.hero-inner{display:grid;gap:28px;grid-template-columns:1fr}
@media(min-width:900px){.hero-inner{grid-template-columns:1.3fr .7fr}}
.hero-copy h1{font-size: clamp(2rem, 1.2rem + 3vw, 3rem);margin:0 0 12px}
.hero-copy p{color:var(--muted);max-width:58ch;margin:0 0 20px}
.accent{background:linear-gradient(90deg,var(--brand),var(--accent));-webkit-background-clip:text;color:transparent}
.trust{display:flex;gap:16px;flex-wrap:wrap;padding:0;margin:14px 0 0;list-style:none;color:var(--muted)}
.hero-card{
  background:var(--card);
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  align-self:start;
  color: #0b1020;
}
.hero-card h3{margin:0 0 10px}
.hero-wave{position:absolute;left:0;bottom:0;width:100%;height:80px;fill:rgba(255,255,255,.04)}

/* -------- Cards & UI -------- */
.card{
  background:var(--card);
  border:1px solid rgba(255,255,255,.07);
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  color: #0b1020;
}
.card li {
  color: #0b1020;
}
.core-capabilities {
  margin-top: 40px;
}
.core-capabilities .list li {
  color: var(--muted);
  text-align: justify;
  margin-bottom: 12px;
}
.pill{
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:18px;
}
.list{margin:12px 0 0;color:var(--muted)}

/* -------- Buttons -------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 16px;border-radius:12px;border:1px solid transparent;
  font-weight:600;text-decoration:none;transition:transform .1s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(180deg,var(--brand),#1a4ed8);
  color:white;border-color:rgba(30,102,255,.7);
  box-shadow:0 10px 24px rgba(30,102,255,.35);
}
.btn-ghost{
  background:transparent;color:var(--ink);border-color:rgba(255,255,255,.16)
}

/* -------- About -------- */
.lead{color:var(--muted);max-width:110ch;text-align:justify}

/* -------- Contact -------- */
.form .form-row{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.form input,.form textarea{
  background:#ffffff;border:1px solid rgba(0,0,0,.15);
  color:var(--ink);padding:10px 12px;border-radius:10px;outline:none;
}
.form input:focus,.form textarea:focus{box-shadow:0 0 0 4px var(--ring);border-color:var(--accent)}
.form-note{color:var(--muted);font-size:.95rem}
.contact-card .contact-list{list-style:none;padding:0;margin:0 0 16px}
.contact-card .contact-list li{margin:6px 0}

/* -------- Footer -------- */
.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:#0a0f1f;padding:24px 0;margin-top:24px;color:var(--muted)
}
.footer-inner{display:flex;gap:16px;align-items:center;justify-content:space-between}
.footer-inner p{margin:0}
