:root{
    --bg:#ffffff;
    --surface:#f8f9fb;
    --border:#e5e7eb;
    --text:#111827;
    --muted:#6b7280;
    --shadow:0 10px 24px rgba(0,0,0,.06);
  }

  body{ margin:0; }

  .qc-wrap{
    background:var(--bg);
    color:var(--text);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
    padding:32px 16px;
    line-height:1.65;
  }

  .qc-hero, .qc-section, .qc-footer{
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
  }

  .qc-hero{ margin-bottom:22px; }
  h1{ font-size:36px; margin:0 0 6px 0; }
  h2{ font-size:20px; margin:0 0 10px 0; }
  .qc-muted{ color:var(--muted); margin:0; }

  /* ✅ Link styling (QC page only) */
  .qc-wrap a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
  }
  .qc-wrap a:hover{
    text-decoration:underline;
    opacity:.88;
  }

  /* ✅ Added styles for new trust lines */
  .qc-promise{
    margin:12px 0 0;
    font-size:14px;
    color:var(--text);
  }

  .qc-note{
    margin:6px 0 0;
    font-size:14px;
    color:var(--text);
  }

  .qc-section{ margin:36px auto; }

  .qc-video-block{ margin:16px 0 12px; }

  .qc-video-shell{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--border);
    background:#000;
    box-shadow:var(--shadow);
  }

  .ratio-16x9{ aspect-ratio:16/9; }
  .ratio-9x16{ aspect-ratio:9/16; max-width:360px; }

  video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .qc-caption{
    font-size:13px;
    color:var(--muted);
    margin-top:8px;
  }

  ul{ padding-left:18px; margin:10px 0 0; }
  li{ margin:6px 0; }

  /* Split layout */
  .qc-section-split{
    display:grid;
    grid-template-columns:1.35fr .65fr;
    gap:24px;
    align-items:start;
  }

  /* Readings grid */
  .qc-readings{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin-top:14px;
  }

  .qc-reading{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px;
    box-shadow:0 6px 16px rgba(0,0,0,.04);
  }

  .qc-reading-k{
    font-size:12px;
    color:var(--muted);
    text-transform:uppercase;
    letter-spacing:.3px;
    margin-bottom:6px;
  }

  .qc-reading-v{
    font-size:18px;
    margin-bottom:6px;
  }

  .qc-reading-d{
    font-size:13px;
    color:var(--muted);
  }

  /* ✅ Added style for amplitude follow-up sentence */
  .qc-reading-extra{
    margin-top:10px;
    padding:10px 12px;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:12px;
    font-size:13px;
    color:var(--muted);
    line-height:1.55;
  }

  .qc-summary{
    margin:12px 0 0;
    padding:10px 12px;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:12px;
    color:var(--muted);
    font-size:13px;
  }

  .qc-divider{
    height:1px;
    background:var(--border);
    margin:18px 0;
  }

  .qc-mini-title{
    font-size:14px;
    margin:0 0 6px 0;
    color:var(--text);
  }

  /* ✅ FAQ styles */
  .qc-faq{
    margin-top:14px;
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 6px 16px rgba(0,0,0,.04);
  }

  .qc-faq-item{
    border-bottom:1px solid var(--border);
    padding:12px 14px;
  }

  .qc-faq-item:last-child{
    border-bottom:none;
  }

  .qc-faq-item summary{
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    color:var(--text);
    list-style:none;
  }

  .qc-faq-item summary::-webkit-details-marker{
    display:none;
  }

  .qc-faq-content{
    margin-top:10px;
    font-size:13px;
    color:var(--muted);
    line-height:1.6;
  }

  .qc-footer{
    margin-top:48px;
    border-top:1px solid var(--border);
    padding-top:16px;
    font-size:13px;
    color:var(--muted);
  }

  @media(max-width:900px){
    .qc-section-split{ grid-template-columns:1fr; }
    .ratio-9x16{ max-width:100%; }
    .qc-readings{ grid-template-columns:1fr; }
  }