/* White business theme */
:root{
  --max: 1120px;
  --pad: 22px;
  --bg: #ffffff;
  --border: #e5e7eb;
  --text: #0f172a;
  --muted: #475569;
  --accent: #2563eb;
  --accent2:#0ea5e9;
  --shadow: 0 10px 28px rgba(2,6,23,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}
.wrap{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{height:74px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:40px;width:auto;display:block}
nav{display:flex;flex-wrap:wrap;gap:10px}
nav a{color:var(--text);font-size:14px;padding:8px 10px;border-radius:10px}
nav a[aria-current="page"]{background:#f1f5f9;font-weight:600}
nav a:hover{background:#f8fafc;text-decoration:none}
.hero{padding:76px 0 52px;background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);border-bottom:1px solid var(--border)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:30px;align-items:center}
h1{margin:0 0 12px;font-size:44px;line-height:1.08;letter-spacing:-.6px}
.lead{margin:0 0 18px;color:var(--muted);max-width:62ch;font-size:16.5px}
.cta{display:flex;gap:10px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 16px;border-radius:12px;
  border:1px solid var(--border);
  background:#fff;color:var(--text);
  font-weight:700;font-size:14px;
  box-shadow:var(--shadow);
}
.btn.primary{background:linear-gradient(135deg,var(--accent),var(--accent2));color:#fff;border-color:rgba(37,99,235,.25)}
.btn:hover{transform:translateY(-1px);text-decoration:none}
.badge-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.badge{font-size:12px;border:1px solid var(--border);border-radius:999px;padding:6px 10px;background:#f8fafc}
.hero-card{border:1px solid var(--border);border-radius:18px;overflow:hidden;background:#fff;box-shadow:var(--shadow)}
.hero-img{width:100%;height:330px;object-fit:cover;display:block}
.hero-caption{padding:14px 16px}
.hero-caption h3{margin:0 0 6px;font-size:15px}
.hero-caption p{margin:0;color:var(--muted);font-size:13px}
section{padding:58px 0;border-bottom:1px solid var(--border)}
.section-title{display:flex;align-items:baseline;justify-content:space-between;gap:14px;flex-wrap:wrap}
h2{margin:0 0 12px;font-size:26px;letter-spacing:-.2px}
.sublead{margin:0;color:var(--muted);max-width:70ch}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}
.card{border:1px solid var(--border);border-radius:18px;background:#fff;padding:18px;box-shadow:var(--shadow)}
.card h3{margin:0 0 6px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:14px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px}
.list{margin:12px 0 0;padding-left:18px;color:var(--muted);font-size:14px}
.notice{font-size:13px;color:var(--muted);border:1px dashed #cbd5e1;padding:12px 14px;border-radius:18px;background:#f8fafc;margin-top:14px}
.icon{width:18px;height:18px}
.icon-lg{width:22px;height:22px}
.icon-bubble{width:38px;height:38px;border-radius:14px;display:grid;place-items:center;background:#f1f5f9;border:1px solid var(--border);margin-bottom:10px}
form{margin-top:14px;display:grid;gap:10px;max-width:560px}
input,textarea{width:100%;padding:11px 12px;border:1px solid var(--border);border-radius:12px;font:inherit;color:var(--text);background:#fff;outline:none}
input:focus,textarea:focus{border-color:rgba(37,99,235,.45);box-shadow:0 0 0 3px rgba(37,99,235,.12)}
textarea{min-height:130px;resize:vertical}
hr{border:none;border-top:1px solid var(--border);margin:16px 0}
footer{padding:30px 0;background:#fff}
.footer-row{display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;color:var(--muted);font-size:13px}
.small{font-size:12px;color:#64748b}
@media(max-width:980px){.hero-grid{grid-template-columns:1fr}h1{font-size:36px}.grid3{grid-template-columns:1fr}.split{grid-template-columns:1fr}}
