/* SwiftBizUSA - Minimal Corporate White Theme */
:root{
  --bg:#f7f8fb;
  --bg-soft:#ffffff;
  --card:#ffffff;
  --surface:#f0f2f6;
  --text:#0b1220;
  --muted:#64748b;
  --brand:#0f62fe;     /* IBM-ish blue */
  --brand-dark:#0b4bd6;
  --ok:#16a34a;
  --err:#dc2626;
  --radius:14px;
  --shadow:0 8px 22px rgba(15, 23, 42, .06);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}
.narrow{width:min(760px, 92vw)}

.site-header{
  position:sticky; top:0; z-index:10;
  background:#fff;
  border-bottom:1px solid rgba(2,6,23,.06);
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0}

.logo{font-weight:800; letter-spacing:.2px; font-size:20px}
.logo-mark{color:#0b1220}
.logo-us{color:var(--brand); margin-left:2px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{
  color:var(--muted); font-weight:600; padding:6px 8px; border-radius:8px;
}
.nav a:hover{color:var(--text)}
.nav a.active{color:var(--text)}
.hamburger{display:none; background:none; border:0; color:var(--text); font-size:22px}
.mobile-nav{
  display:none; flex-direction:column; gap:10px; padding:0 0 12px; background:#fff;
  border-bottom:1px solid rgba(2,6,23,.06);
}
.mobile-nav a{padding:10px 14px; color:var(--muted); font-weight:600}
.mobile-nav a.active{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--brand);
  color:white; font-weight:700; padding:11px 16px; border-radius:10px;
  box-shadow:none; border:1px solid var(--brand); cursor:pointer;
  transition:background .15s ease, border-color .15s ease, transform .05s ease;
}
.btn:hover{background:var(--brand-dark); border-color:var(--brand-dark)}
.btn:active{transform:translateY(1px)}
.btn-ghost{
  background:#fff; color:var(--brand); border:1px solid rgba(15,98,254,.25);
}
.btn-small{padding:7px 10px; font-size:14px; border-radius:8px}
.btn-block{width:100%}

.hero{padding:52px 0 18px}
.hero-grid{display:grid; grid-template-columns:1.15fr .85fr; gap:28px; align-items:start}

.eyebrow{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted);
  margin:0 0 10px;
}
h1{font-size:44px; line-height:1.15; margin:0 0 10px; letter-spacing:-.02em}
.subhead{color:var(--muted); font-size:18px; margin:0 0 14px}

.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0}
.trust-row{display:flex; gap:10px; margin-top:8px; flex-wrap:wrap}
.trust-item{
  background:var(--surface); padding:8px 10px; border-radius:10px; border:1px solid rgba(2,6,23,.05);
  min-width:110px;
}
.trust-number{font-weight:800}
.trust-label{color:var(--muted); font-size:12px}

.section{padding:46px 0}
.section.soft{background:var(--bg-soft); border-top:1px solid rgba(2,6,23,.05); border-bottom:1px solid rgba(2,6,23,.05)}
.section-head{display:flex; justify-content:space-between; align-items:end; gap:12px; margin-bottom:14px}
.section-head h2, .section-head h1{margin:0}
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.step{padding:16px}
.step-num{
  font-weight:800; font-size:12px; color:var(--brand); margin-bottom:6px;
}

.split{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start}
.bullets{padding-left:16px}
.bullets li{margin:6px 0}

.stat-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:10px}
.stat{padding:14px}
.stat-big{font-size:22px; font-weight:800}
.stat-small{color:var(--muted); font-size:13px}

.cta-banner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px}

.card{
  background:var(--card);
  border:1px solid rgba(2,6,23,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.price{display:flex; align-items:baseline; gap:8px; margin:8px 0 10px}
.price-amount{font-size:34px; font-weight:800}
.price-note{color:var(--muted); font-size:14px}

.checklist{list-style:none; padding:0; margin:10px 0 14px}
.checklist li{padding-left:22px; margin:7px 0; position:relative; color:#111827}
.checklist li::before{content:"✓"; position:absolute; left:0; top:0; color:var(--ok); font-weight:900}

.form{display:grid; gap:12px}
.form h3{margin:8px 0 0; font-size:16px}
label{display:grid; gap:6px; font-weight:600; color:#0f172a}
input, textarea{
  background:#fff; border:1px solid rgba(2,6,23,.12); color:var(--text);
  padding:11px 12px; border-radius:10px; font-size:15px; outline:none;
}
input:focus, textarea:focus{
  border-color:rgba(15,98,254,.55);
  box-shadow:0 0 0 3px rgba(15,98,254,.12);
}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.grid-3{display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px}

.success, .error{
  display:none; padding:10px 12px; border-radius:10px; font-weight:600;
  animation:fadeIn .5s ease both;
}
.success{background:rgba(22,163,74,.08); border:1px solid rgba(22,163,74,.25); color:#116b2e}
.error{background:rgba(220,38,38,.06); border:1px solid rgba(220,38,38,.25); color:#991b1b}
.fineprint{color:var(--muted); font-size:12px; margin-top:4px}

.site-footer{padding:26px 0; border-top:1px solid rgba(2,6,23,.06); margin-top:26px; background:#fff}
.footer-grid{display:grid; grid-template-columns:2fr 1fr 1fr; gap:12px; margin-bottom:10px}
.footer-grid a{display:block; color:var(--muted); margin-top:6px}
.footer-grid h4{margin:0 0 6px; font-size:14px}

.muted{color:var(--muted)}
.tiny{font-size:12px}

@keyframes fadeIn{from{opacity:0; transform:translateY(4px)} to{opacity:1; transform:translateY(0)}}

@media (max-width: 900px){
  .hero-grid,.steps,.split{grid-template-columns:1fr}
  h1{font-size:36px}
}
@media (max-width: 720px){
  .nav{display:none}
  .hamburger{display:block}
  .mobile-nav.is-open{display:flex}
  .grid-2,.grid-3{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .section-head{flex-direction:column; align-items:start}
}
