/* ==================================================
   Lazesoft DocFrame v1.0
   Shared article / documentation style
   ================================================== */

.wrap {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #111;
  background: #fff;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.wrap ul,
.wrap ol {
  padding-left: 22px;
}

.wrap header h1 {
  line-height: 1.2;
  margin: 0 0 10px;
}

.meta {
  color: #555;
  font-size: 14px;
  margin: 0 0 20px;
}

/* Callout box */
.callout {
  border: 1px solid #e6e6e6;
  border-left: 6px solid #2563eb;
  background: #f8fafc;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 18px 0;
}

/* Grid cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

/* Headings */
.wrap h2 { margin-top: 28px; }
.wrap h3 { margin-top: 18px; }

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}

.table th,
.table td {
  border: 1px solid #e6e6e6;
  padding: 10px;
  vertical-align: top;
}

.table th {
  background: #f3f4f6;
  text-align: left;
}

/* FAQ */
.faq details {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 10px 0;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

/* CTA */
.cta {
  margin: 26px 0;
  padding: 16px;
  border-radius: 14px;
  background: #0b1220;
  color: #fff;
}

.cta a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

.note {
  font-size: 13px;
  color: #555;
}

/* ================= Lazesoft Intro Strip ================= */

.intro {
  width: 100%;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 14px 0;
  overflow: hidden;
}

.intro .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.intro .left {
  float: left;
  max-width: 72%;
}

.intro .right {
  float: right;
  white-space: nowrap;
}

.intro a {
  color: #9cff00;
  text-decoration: none;
  font-weight: 600;
}

.intro a:hover {
  text-decoration: underline;
}

/* ================= Responsive Video ================= */

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  padding-bottom: 56.25%;
  height: 0;
  margin: 18px auto;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= Step Images ================= */

.step-img {
  text-align: center;
  margin: 18px 0 26px;
}

.step-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.step-img .caption {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
}


/* ==================================================
   Navigation helpers (moved from inline styles)
   ================================================== */
.breadcrumb {
  font-size: 13px;
  color: #555;
  margin: 0 0 10px;
}
.breadcrumb a {
  color: #555;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

.toplinks {
  font-size: 14px;
  margin: 0 0 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.toplinks a { text-decoration: none; }
.toplinks a:hover { text-decoration: underline; }

/* Status pills */
.pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #555;
  margin-right: 8px;
  vertical-align: middle;
}
.pill.ok {
  border-color: #cfe9cf;
  background: #f1fbf1;
  color: #0f7b0f;
}
.pill.warn {
  border-color: #ffe0b8;
  background: #fff7ea;
  color: #a15c00;
}
