
* { box-sizing: border-box; }
:root{
  --bg:#f5f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e2e8f0;
  --brand:#0f766e;
  --brand-2:#2563eb;
  --dark:#111827;
  --soft:#f8fafc;
  --success:#16a34a;
  --shadow:0 14px 40px rgba(15, 23, 42, .10);
}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#eef4ff 0%, var(--bg) 220px);
}
.wrap{
  max-width:1280px;
  margin:0 auto;
  padding:24px;
}
.hero{
  background:linear-gradient(135deg,#0f172a 0%, #1d4ed8 100%);
  color:#fff;
  border-radius:28px;
  padding:26px 24px;
  box-shadow:var(--shadow);
  margin-bottom:22px;
}
.hero .eyebrow{
  margin:0 0 8px 0;
  font-size:12px;
  letter-spacing:1.1px;
  opacity:.85;
  font-weight:700;
}
.hero h1{
  margin:0 0 10px 0;
  font-size:32px;
  line-height:1.1;
}
.hero p{
  margin:0;
  max-width:860px;
  color:#dbeafe;
  line-height:1.6;
  font-size:15px;
}
.steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.step{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  padding:14px;
}
.step strong{
  display:block;
  margin-bottom:6px;
}
.layout{
  display:grid;
  grid-template-columns:390px 1fr 360px;
  gap:20px;
  align-items:start;
}
.panel{
  background:var(--card);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:20px;
}
.panel h2{
  margin:0 0 14px 0;
  font-size:20px;
}
.sub{
  color:var(--muted);
  font-size:13px;
  margin:-4px 0 14px 0;
  line-height:1.5;
}
.group{
  margin-bottom:18px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.group:last-child{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}
.group h3{
  margin:0 0 10px 0;
  font-size:15px;
}
input, textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:11px 12px;
  margin-bottom:10px;
  font-size:14px;
  background:#fff;
}
textarea{
  min-height:84px;
  resize:vertical;
}
label{
  display:block;
  font-size:13px;
  font-weight:700;
  margin:8px 0 6px;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
button, .btn{
  border:none;
  border-radius:14px;
  padding:12px 14px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.btn-primary, button.primary{ background:var(--brand); color:#fff; }
.btn-blue, button.blue{ background:var(--brand-2); color:#fff; }
.btn-dark, button.dark{ background:var(--dark); color:#fff; }
.btn-soft, button.soft{ background:var(--soft); color:var(--text); border:1px solid var(--line); }
.flow{
  display:grid;
  gap:16px;
}
.flow-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
}
.flow-card h3{
  margin:0 0 8px 0;
  font-size:18px;
}
.flow-card p{
  margin:0 0 14px 0;
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}
.flow-buttons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.status{
  margin-top:14px;
  background:#eff6ff;
  border:1px solid #bfdbfe;
  color:#1e3a8a;
  border-radius:16px;
  padding:12px 14px;
  font-size:13px;
  line-height:1.55;
}
.phone{
  width:100%;
  max-width:380px;
  margin:0 auto;
  background:#0f172a;
  border-radius:34px;
  padding:14px;
  box-shadow:0 25px 50px rgba(15,23,42,.22);
}
.screen{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  min-height:720px;
}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background:#fff;
}
.pill{
  font-size:11px;
  background:#ecfeff;
  color:#0f766e;
  padding:7px 10px;
  border-radius:999px;
  font-weight:700;
  border:1px solid #a5f3fc;
}
.card{
  position:relative;
  background:#fff;
  margin:14px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,23,42,.14);
}
.bg{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(15,23,42,.12), rgba(15,23,42,.60));
  pointer-events:none;
}
.content{
  position:relative;
  z-index:1;
  margin-top:-58px;
  padding:0 18px 22px;
  text-align:center;
  color:#fff;
}
.avatar{
  width:112px;
  height:112px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #fff;
  background:#fff;
  display:block;
  margin:0 auto 12px;
}
.name{
  font-size:28px;
  font-weight:700;
  margin:0 0 6px;
}
.role,.company{
  margin:0 0 6px;
  opacity:.95;
}
.mini-contact{
  display:grid;
  gap:6px;
  margin:14px 0;
  font-size:13px;
  opacity:.96;
}
.business-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:var(--success);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  margin:8px 0 14px;
}
.qr{
  width:120px;
  height:120px;
  display:block;
  margin:0 auto 16px;
  background:#fff;
  padding:8px;
  border-radius:14px;
}
.socials{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  justify-items:center;
}
.socials a{
  display:none;
  width:62px;
  height:62px;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.95);
  border-radius:14px;
}
.socials img{
  width:38px;
  height:38px;
  object-fit:contain;
}
.summary-box{
  margin:14px;
  border:1px solid var(--line);
  background:#f8fafc;
  border-radius:18px;
  padding:14px;
}
.summary-box h4{
  margin:0 0 10px 0;
  font-size:14px;
}
.summary-box pre{
  margin:0;
  white-space:pre-wrap;
  word-break:break-word;
  font-size:12px;
  color:#334155;
  line-height:1.55;
}
.note{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
  background:#f8fafc;
  border:1px solid var(--line);
  padding:12px;
  border-radius:14px;
}
.small{
  font-size:12px;
  color:var(--muted);
}
@media (max-width: 1100px){
  .layout{ grid-template-columns:1fr; }
  .phone{ max-width:420px; }
}
@media (max-width: 700px){
  .steps, .flow-buttons, .actions, .grid-2{ grid-template-columns:1fr; }
  .hero h1{ font-size:27px; }
  .wrap{ padding:16px; }
}
