/* Charcoal / blue theme with centered footer and centered step numbers */
:root{
  --bg:#1c1f24;
  --panel:#20242a;
  --panel2:#2a2e35;
  --text:#eaeaea;
  --muted:#cfd5dd;
  --blue:#3ba6f7;
  --charcoal:#11151a;
}

*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:var(--text)}

.wrap{width:90%;max-width:1100px;margin:0 auto}

/* Header */
.site-header{background:var(--charcoal);padding:16px 0;border-bottom:2px solid #2563eb20}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:10px}
.brand-logo{height:40px}
.brand-name{font-weight:700;color:#fff}
.top-nav a{color:#eaeaea;margin-left:20px;text-decoration:none}
.top-nav a:hover{text-decoration:underline}

/* Hero */
.hero{padding:64px 0;text-align:center;background:var(--panel)}
.hero h1{margin:0 0 12px}
.lead{color:var(--muted);max-width:720px;margin:0 auto 18px}
.btn{background:var(--blue);color:#fff;padding:10px 16px;border-radius:6px;text-decoration:none;display:inline-block}

/* Cards */
.cards{padding:36px 0;background:var(--bg)}
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.card{background:var(--panel2);padding:18px;border-radius:8px}

/* Process */
.process{padding:36px 0;background:var(--panel)}
.process h2{text-align:center;margin:0 0 12px}
.steps{list-style:none;padding:0;max-width:720px;margin:0 auto}
.steps li{display:flex;align-items:center;background:var(--panel2);padding:12px;border-radius:8px;margin-bottom:10px}
.steps span{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:var(--blue);color:#fff;font-weight:700;margin-right:10px}

/* Industries */
.industries{padding:36px 0;background:var(--bg)}
.ibox{background:var(--panel2);padding:18px;border-radius:8px}

/* Contact */
.contact{padding:36px 0;background:var(--panel);text-align:center}
.contact-copy{color:var(--muted)}

/* Footer (centered) */
.site-footer{background:var(--charcoal);padding:28px 0;border-top:2px solid #2563eb20}
.footer-center{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px}
.footer-logo{width:36px;height:36px;object-fit:contain}
.site-footer address{font-style:normal;color:#9aa6b2}
.footer-email{color:#cfd5dd;text-decoration:none}
.footer-email:hover{text-decoration:underline}
.footer-links{display:flex;gap:12px;align-items:center;justify-content:center;margin-top:4px}
.footer-links a{color:#cfd5dd;text-decoration:none}
.footer-links a:hover{text-decoration:underline}
.copyright{color:#7f8a96;font-size:.9rem;margin-top:6px}

/* Legal pages */
.legal-page{background:var(--bg);color:var(--text)}
.legal-wrap{max-width:850px;margin:48px auto 72px}
.legal-wrap .btn{margin-top:12px}

/* Responsive */
@media (max-width:740px){
  .top-nav{display:none}
}
