.swqb-wrap,
.swqb-wrap *{
  box-sizing:border-box;
}

.swqb-wrap{
  --swqb-bg:#f6f8fb;
  --swqb-card:#ffffff;
  --swqb-primary:#0f766e;
  --swqb-primary-2:#14b8a6;
  --swqb-dark:#0f172a;
  --swqb-text:#475569;
  --swqb-line:#e2e8f0;
  --swqb-shadow:0 24px 64px rgba(2,8,23,.08);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--swqb-dark);
}

.swqb-shell{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:28px;
  align-items:stretch;
  max-width:1180px;
  margin:0 auto;
  background:linear-gradient(180deg,#fbfdff,#f3f7fb);
  border:1px solid var(--swqb-line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--swqb-shadow);
}

.swqb-side{
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(20,184,166,.18), transparent 35%),
    linear-gradient(145deg, #0f172a, #0f766e);
  color:#fff;
}

.swqb-kicker{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  font-size:12px;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.swqb-side h2{
  margin:18px 0 14px;
  font-size:clamp(30px,4.6vw,48px);
  line-height:1.06;
  color:#fff;
}

.swqb-subheading{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,.9);
}

.swqb-intro{
  margin:0 0 22px;
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.78);
}

.swqb-points{
  display:grid;
  gap:14px;
}

.swqb-point{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.swqb-point strong{
  font-size:15px;
}

.swqb-point span{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  font-size:14px;
}

.swqb-card{
  padding:34px;
  background:var(--swqb-card);
}

.swqb-form{
  display:grid;
  gap:22px;
}

.swqb-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.swqb-field{
  display:grid;
  gap:8px;
}

.swqb-field-full{
  grid-column:1 / -1;
}

.swqb-field label{
  font-size:13px;
  font-weight:700;
  color:var(--swqb-dark);
}

.swqb-field input,
.swqb-field select,
.swqb-field textarea{
  width:100%;
  border:1px solid var(--swqb-line);
  border-radius:16px;
  background:#fff;
  color:var(--swqb-dark);
  min-height:52px;
  padding:14px 16px;
  font-size:15px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.swqb-field textarea{
  min-height:auto;
  resize:vertical;
}

.swqb-field input:focus,
.swqb-field select:focus,
.swqb-field textarea:focus{
  border-color:rgba(15,118,110,.46);
  box-shadow:0 0 0 4px rgba(20,184,166,.12);
}

.swqb-preview-box{
  border:1px solid var(--swqb-line);
  background:#f8fbfc;
  border-radius:22px;
  padding:18px;
}

.swqb-preview-head{
  display:grid;
  gap:4px;
  margin-bottom:12px;
}

.swqb-preview-head strong{
  font-size:15px;
}

.swqb-preview-head span{
  font-size:13px;
  color:var(--swqb-text);
}

.swqb-preview{
  margin:0;
  background:#fff;
  border:1px dashed #cbd5e1;
  border-radius:16px;
  padding:16px;
  white-space:pre-wrap;
  font-family:inherit;
  font-size:14px;
  line-height:1.8;
  color:var(--swqb-dark);
}

.swqb-actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.swqb-btn{
  appearance:none;
  border:0;
  border-radius:18px;
  min-height:56px;
  padding:0 28px;
  background:linear-gradient(135deg, var(--swqb-primary), var(--swqb-primary-2));
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 20px 50px rgba(15,118,110,.24);
  transition:transform .2s ease, box-shadow .2s ease;
}

.swqb-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 26px 56px rgba(15,118,110,.28);
}

@media (max-width:900px){
  .swqb-shell{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .swqb-side,
  .swqb-card{
    padding:22px;
  }

  .swqb-grid{
    grid-template-columns:1fr;
  }
}
