/* ============================================================
   Shared service / pricing / OS page layouts
   Extracted from duplicated inline <style> blocks during UI overhaul.
   Depends on css/styles.css design tokens.
   ============================================================ */

/* Map page-local token names onto the global design system */
.service-page,
.pricing-page,
.os-page {
  --navy: var(--color-ink, #0f172a);
  --blue: var(--color-brand, #0f5fbb);
  --soft-blue: var(--color-bg, #f8fafc);
  --hero-soft: #eef6ff;
  --text: var(--color-ink, #0f172a);
  --muted: var(--color-muted, #475569);
  --line: var(--color-border, #dbe4ef);
  --white: var(--color-surface, #ffffff);
  --accent: var(--color-brand, #0f5fbb);
  --max: var(--container, 1120px);
  --radius: var(--radius-md, 10px);
}

/* Do not style markus-nav / markus-footer links */
.service-page main a,
.pricing-page main a,
.os-page main a {
  color: inherit;
  text-decoration: none;
}

/* Scannable polish when ui-kit is loaded */
.service-page .device-card.ui-card,
.service-page .card.ui-card {
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.service-page .device-card details[open],
.service-page .worth-accordions details[open] {
  border-color: rgba(15, 95, 187, 0.4);
}
.service-page .hope-line {
  display: block;
  margin-top: 0.65rem;
  padding: 0.55rem 0.7rem;
  background: #eef6ff;
  border-radius: 8px;
  border-left: 3px solid var(--blue, #0f5fbb);
}
.pricing-page .ui-card h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}


/* ---------- Base service-page layout (from save-my-mac family) ---------- */


    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    }

    .hero {
      padding: clamp(2.6rem, 7vw, 4.8rem) 0 clamp(2rem, 5vw, 3.2rem);
      background: linear-gradient(180deg, #eef6ff 0%, #f8fafc 100%);
      text-align: center;
    }

    .eyebrow {
      color: var(--blue);
      font-weight: 650;
      font-size: 0.92rem;
      margin-bottom: 16px;
    }

    h1 {
      font-size: clamp(2.45rem, 5.5vw, 4.4rem);
      line-height: 0.98;
      letter-spacing: 0;
      margin: 0 0 1rem;
      color: var(--navy);
    }

    .hero p {
      max-width: 720px;
      margin: 0 auto 1.25rem;
      font-size: 0.98rem;
      color: var(--muted);
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
/* Buttons: .primary/.secondary aliases align with global brand system */
.btn.primary {
  background: var(--color-brand, #0f5fbb);
  color: #ffffff;
  border-color: var(--color-brand, #0f5fbb);
}
.btn.primary:hover {
  background: var(--color-brand-hover, #0b4f9f);
  border-color: var(--color-brand-hover, #0b4f9f);
  color: #ffffff;
}
.btn.secondary {
  background: var(--color-surface, #ffffff);
  color: var(--color-ink, #0f172a);
  border-color: var(--color-border, #dbe4ef);
}
.btn.secondary:hover {
  border-color: var(--color-brand, #0f5fbb);
  color: var(--color-brand, #0f5fbb);
}


    section {
      background: #ffffff;
      padding: clamp(1.7rem, 4vw, 2.7rem) 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 34px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      line-height: 1.08;
      letter-spacing: 0;
      margin: 0 0 0.75rem;
      color: var(--navy);
    }

    .lead {
      font-size: 0.98rem;
      color: var(--muted);
      margin: 0;
    }

    .grid {
      display: grid;
      gap: 20px;
    }

    .grid.three {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid.two {
      grid-template-columns: repeat(2, 1fr);
    }

    .card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.1rem;
      min-height: 0;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    .device-card {
      text-align: center;
    }

    .device-card details {
      text-align: left;
    }

    .device-card summary {
      cursor: pointer;
      list-style: none;
      text-align: center;
    }

    .device-card summary::-webkit-details-marker {
      display: none;
    }

    .device-card summary::after {
      content: "Tell me more +";
      display: inline-flex;
      margin-top: 0.9rem;
      color: var(--blue);
      font-size: 0.88rem;
      font-weight: 750;
    }

    .device-card details[open] summary::after {
      content: "Show less –";
    }

    .device-detail {
      border-top: 1px solid var(--line);
      margin-top: 1rem;
      padding-top: 1rem;
      text-align: left;
    }

    .device-detail ul {
      margin: 0.75rem 0;
      padding-left: 1.1rem;
      color: var(--muted);
    }

    .device-detail li {
      margin: 0.25rem 0;
    }

    .device-detail .mini-cta {
      color: var(--navy);
      display: inline-flex;
      font-weight: 750;
      margin-top: 0.35rem;
    }

    .hope-line {
      color: var(--blue);
      display: block;
      font-weight: 750;
      margin-top: 0.85rem;
    }

    .icon {
      font-size: 2.2rem;
      margin-bottom: 14px;
    }

    .card h3 {
      margin: 0 0 8px;
      font-size: 1rem;
      color: var(--navy);
      letter-spacing: 0;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .soft {
      background: var(--soft-blue);
    }

    .worth-section {
      background: #ffffff;
    }

    .worth-box {
      background: var(--soft-blue);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: clamp(1.25rem, 3vw, 1.8rem);
      color: var(--text);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: center;
    }

    .worth-box h3 {
      color: var(--navy);
      font-size: clamp(1.35rem, 2.5vw, 1.75rem);
      margin: 0 0 14px;
      letter-spacing: -0.04em;
    }

    .checks {
      display: grid;
      gap: 12px;
    }

    .check {
      padding: 14px 16px;
      border-radius: 8px;
      background: #f6f8fb;
      color: var(--navy);
      font-weight: 600;
    }

    .worth-accordions {
      display: grid;
      gap: 0.75rem;
    }

    .worth-accordions details {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
    }

    .worth-accordions summary {
      align-items: center;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      list-style: none;
      padding: 0.95rem 1rem;
      color: var(--navy);
      font-weight: 750;
    }

    .worth-accordions summary::-webkit-details-marker {
      display: none;
    }

    .worth-accordions summary::after {
      content: "+";
      color: var(--blue);
      font-size: 1.25rem;
      line-height: 1;
      font-weight: 750;
    }

    .worth-accordions details[open] summary::after {
      content: "–";
    }

    .worth-accordions details p {
      margin: 0;
      padding: 0 1rem 1rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .worth-accordions .mini-note {
      display: block;
      margin-top: 0.25rem;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 600;
    }

    .review-quote {
      border-left: 3px solid var(--blue);
      margin: 1rem 0 0;
      padding: 0.85rem 0 0.85rem 1rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .review-quote strong {
      color: var(--navy);
    }

    .price-list {
      display: grid;
      gap: 14px;
      max-width: 760px;
      margin: 0 auto;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      padding: 22px 24px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: white;
    }

    .price-row strong {
      color: var(--navy);
      font-size: 1.05rem;
    }

    .price {
      font-size: 1.2rem;
      font-weight: 750;
      color: var(--blue);
      white-space: nowrap;
    }

    .note {
      max-width: 720px;
      text-align: center;
      margin: 24px auto 0;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .guides a {
      display: block;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      color: var(--navy);
      font-weight: 600;
    }

    .guides a:hover {
      color: var(--blue);
    }

    .appraisal {
      background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
    }

    .appraisal .action-bar {
      max-width: 760px;
      padding: clamp(0.7rem, 1.6vw, 0.95rem);
    }

    .appraisal .badge {
      margin-bottom: 0.42rem;
      padding: 0.3rem 0.75rem;
    }

    .appraisal .action-bar h2 {
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      line-height: 1.08;
      margin-bottom: 0.12rem;
    }

    .appraisal .appraisal-intro {
      font-size: 0.98rem;
      line-height: 1.42;
      margin-bottom: 0.9rem;
    }

    .compact-form {
      margin-top: 0.42rem;
    }

    .compact-form-grid {
      display: grid;
      grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
      gap: 0.45rem 0.55rem;
      align-items: end;
    }

    .compact-field-issue {
      grid-column: 1 / -1;
    }

    .compact-field span {
      display: block;
      margin-bottom: 0.2rem;
      font-weight: 700;
      font-size: 0.78rem;
    }

    .compact-field input,
    .compact-field textarea {
      width: 100%;
      box-sizing: border-box;
      padding: 0.56rem 0.68rem;
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      font: inherit;
      font-size: 0.95rem;
      margin: 0;
      background: white;
    }

    .compact-field textarea {
      min-height: 48px;
      resize: vertical;
    }

    .compact-form .btn-appraisal {
      grid-column: 1 / -1;
      justify-self: center;
      width: min(420px, 100%);
      margin-top: 0;
      min-height: 44px;
      padding: 0.72rem 0.95rem;
      align-self: end;
      white-space: nowrap;
    }

    .compact-form .appraisal-honey {
      margin: 0;
    }

    .compact-form .compact-form-error {
      grid-column: 1 / -1;
      min-height: 0;
      margin: 0;
      font-size: 0.84rem;
    }

    .compact-form .compact-form-error:empty {
      display: none;
    }

    .compact-form .simple-form-note {
      margin: 0.45rem 0 0;
      text-align: center;
      font-size: 0.84rem;
      color: #475569;
      font-weight: 700;
    }

    form:not(.compact-form) {
      max-width: 720px;
      margin: 1.2rem auto 0;
      background: white;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: clamp(1rem, 2.5vw, 1.4rem);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    form:not(.compact-form) label {
      display: block;
      font-weight: 650;
      margin-bottom: 7px;
      color: var(--navy);
    }

    form:not(.compact-form) input,
    form:not(.compact-form) textarea,
    form:not(.compact-form) select {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid var(--line);
      border-radius: 8px;
      font: inherit;
      margin-bottom: 18px;
      background: white;
    }

    form:not(.compact-form) textarea {
      min-height: 120px;
      resize: vertical;
    }

    @media (max-width: 820px) {
      .grid.three,
      .grid.two,
      .worth-box {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 70px;
      }

      section {
        padding: 54px 0;
      }

      .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .compact-form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.42rem;
      }

      .compact-field,
      .compact-field input,
      .compact-field textarea,
      .compact-form .btn-appraisal {
        min-width: 0;
        max-width: 100%;
      }

      .compact-field-issue,
      .compact-form .btn-appraisal {
        grid-column: auto;
      }

      .compact-form .btn-appraisal { white-space: normal; }

      .compact-field input,
      .compact-field textarea {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
      }

      .compact-field textarea {
        min-height: 42px;
      }
    }
  

/* ---------- Pricing / OS extras (from mac-pricing + zorin families) ---------- */
    .promise-line {
      display: inline-block;
      margin: 0 0 1.15rem;
      padding: 0.72rem 0.95rem;
      background: #ffffff;
      border: 1px solid var(--line);
      border-left: 4px solid var(--green);
      border-radius: 8px;
      color: var(--navy);
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      align-items: center;
      border-radius: 8px;
      font-weight: 650;
      border: 1px solid var(--line);
      display: inline-flex;
      justify-content: center;
      min-height: 44px;
      padding: 0.72rem 1rem;
    }

    .btn.primary { background: var(--navy); color: white; border-color: var(--navy); }
    .btn.secondary { background: white; color: var(--navy); }

    section {
      background: #ffffff;
      padding: clamp(1.7rem, 4vw, 2.7rem) 0;
    }

    .soft { background: var(--soft-blue); }

    .section-head {
      max-width: 720px;
      margin-bottom: 34px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      line-height: 1.08;
      letter-spacing: 0;
      margin: 0 0 0.75rem;
      color: var(--navy);
    }

    .lead {
      font-size: 0.98rem;
      color: var(--muted);
      margin: 0;
    }

    .grid {
      display: grid;
      gap: 20px;
    }

    .grid.three { grid-template-columns: repeat(3, 1fr); }
    .grid.four { grid-template-columns: repeat(4, 1fr); }
    .grid.two { grid-template-columns: repeat(2, 1fr); }

    .card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.1rem;
      min-height: 0;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    .card h3 {
      margin: 0 0 8px;
      font-size: 1rem;
      color: var(--navy);
      letter-spacing: 0;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .icon {
      font-size: 2.2rem;
      margin-bottom: 14px;
    }

    .hope-line {
      color: var(--blue);
      display: block;
      font-weight: 750;
      margin-top: 0.85rem;
    }

    .plain-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .plain-list li {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 14px 16px;
      color: var(--navy);
      font-weight: 650;
    }

    .split-box {
      background: var(--soft-blue);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: clamp(1.25rem, 3vw, 1.8rem);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
      align-items: start;
    }

    .split-box h3 {
      color: var(--navy);
      font-size: clamp(1.35rem, 2.5vw, 1.75rem);
      margin: 0 0 14px;
      letter-spacing: -0.04em;
      line-height: 1.08;
    }

    .split-box p {
      color: var(--muted);
      margin: 0 0 0.9rem;
    }

    .good-bad {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .good-bad h3 {
      font-size: 1rem;
      margin: 0 0 0.8rem;
    }

    .good-bad ul {
      margin: 0;
      padding-left: 1.1rem;
      color: var(--muted);
    }

    .good-bad li { margin: 0.35rem 0; }

    .worth-accordions {
      display: grid;
      gap: 0.75rem;
    }

    .worth-accordions details {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
    }

    .worth-accordions summary {
      align-items: center;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      list-style: none;
      padding: 0.95rem 1rem;
      color: var(--navy);
      font-weight: 750;
    }

    .worth-accordions summary::-webkit-details-marker { display: none; }
    .worth-accordions summary::after {
      content: "+";
      color: var(--blue);
      font-size: 1.25rem;
      line-height: 1;
      font-weight: 750;
    }

    .worth-accordions details[open] summary::after { content: "–"; }

    .worth-accordions details p {
      margin: 0;
      padding: 0 1rem 1rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .mini-note {
      display: block;
      margin-top: 0.25rem;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 600;
    }

    .price-list {
      display: grid;
      gap: 14px;
      max-width: 760px;
      margin: 0 auto;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      padding: 22px 24px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: white;
    }

    .price-row strong {
      color: var(--navy);
      font-size: 1.05rem;
    }

    .price {
      font-size: 1.2rem;
      font-weight: 750;
      color: var(--blue);
      white-space: nowrap;
    }

    .note {
      max-width: 720px;
      text-align: center;
      margin: 24px auto 0;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .guides a {
      display: block;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      color: var(--navy);
      font-weight: 600;
    }

    .guides a:hover { color: var(--blue); }

    .appraisal {
      background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
    }

    .appraisal .action-bar {
      max-width: 760px;
      padding: clamp(0.7rem, 1.6vw, 0.95rem);
    }

    .appraisal .badge {
      margin-bottom: 0.42rem;
      padding: 0.3rem 0.75rem;
    }

    .appraisal .action-bar h2 {
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      line-height: 1.08;
      margin-bottom: 0.12rem;
    }

    .appraisal .appraisal-intro {
      font-size: 0.98rem;
      line-height: 1.42;
      margin-bottom: 0.9rem;
    }

    .compact-form { margin-top: 0.42rem; }

    .compact-form-grid {
      display: grid;
      grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
      gap: 0.45rem 0.55rem;
      align-items: end;
    }

    .compact-field-issue { grid-column: 1 / -1; }

    .compact-field span {
      display: block;
      margin-bottom: 0.2rem;
      font-weight: 700;
      font-size: 0.78rem;
    }

    .compact-field input,
    .compact-field textarea {
      width: 100%;
      box-sizing: border-box;
      padding: 0.56rem 0.68rem;
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      font: inherit;
      font-size: 0.95rem;
      margin: 0;
      background: white;
    }

    .compact-field textarea {
      min-height: 48px;
      resize: vertical;
    }

    .compact-form .btn-appraisal {
      grid-column: 1 / -1;
      justify-self: center;
      width: min(420px, 100%);
      margin-top: 0;
      min-height: 44px;
      padding: 0.72rem 0.95rem;
      align-self: end;
      white-space: nowrap;
    }

    .compact-form .compact-form-error {
      grid-column: 1 / -1;
      min-height: 0;
      margin: 0;
      font-size: 0.84rem;
    }

    .compact-form .compact-form-error:empty { display: none; }

    .compact-form .simple-form-note {
      margin: 0.45rem 0 0;
      text-align: center;
      font-size: 0.84rem;
      color: #475569;
      font-weight: 700;
    }

    @media (max-width: 820px) {
      .grid.three,
      .grid.four,
      .grid.two,
      .split-box,
      .good-bad {
        grid-template-columns: 1fr;
      }

      .hero { padding-top: 70px; }
      section { padding: 54px 0; }

      .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .compact-form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.42rem;
      }

      .compact-field-issue,
      .compact-form .btn-appraisal {
        grid-column: auto;
      }

      .compact-field input,
      .compact-field textarea {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
      }

      .compact-field textarea { min-height: 42px; }
    }

    /* --- Zorin vs ChromeOS Flex comparison table --- */
    .compare-table { width:100%; border-collapse:collapse; margin-top:24px; font-size:0.95rem; background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; }
    .compare-table th, .compare-table td { padding:14px 16px; text-align:left; border-top:1px solid var(--line); vertical-align:top; color:var(--navy); }
    .compare-table thead th { border-top:0; background:var(--soft-blue); font-size:0.92rem; }
    .compare-table thead .opt small { display:block; color:var(--muted); font-weight:400; font-size:0.8rem; margin-top:2px; }
    .compare-table .rowlabel { color:var(--muted); font-weight:600; width:32%; }
    .compare-table tr.best td { border-top:2px solid var(--line); font-weight:650; }
    .compare-table tr.best .zorin { color:var(--blue); }
    .cmp-ico { display:inline-block; vertical-align:-2px; margin-right:6px; }
    @media (max-width: 820px) {
      .compare-table, .compare-table thead, .compare-table tbody, .compare-table th, .compare-table td, .compare-table tr { display:block; }
      .compare-table thead { display:none; }
      .compare-table tr { border-top:1px solid var(--line); padding:6px 0; }
      .compare-table tbody tr:first-child { border-top:0; }
      .compare-table td { border:0; padding:5px 16px; }
      .compare-table td.rowlabel { color:var(--navy); font-weight:700; padding-top:14px; width:auto; }
      .compare-table td[data-opt]::before { content: attr(data-opt) ": "; color:var(--muted); font-weight:600; }
    }

    /* --- pricing tables + quote builder --- */
    .ptable { width:100%; border-collapse:collapse; margin-top:20px; font-size:0.95rem; background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; }
    .ptable th, .ptable td { padding:14px 16px; text-align:left; border-top:1px solid var(--line); vertical-align:top; color:var(--navy); }
    .ptable thead th { border-top:0; background:var(--soft-blue); font-size:0.9rem; }
    .ptable .svc { font-weight:650; }
    .ptable .desc { color:var(--muted); }
    .ptable .amt { color:var(--blue); font-weight:750; white-space:nowrap; text-align:right; }
    .ptable .save { color:var(--green); font-weight:750; white-space:nowrap; text-align:right; }
    .guideline-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
    .guideline-grid .card h3 { display:flex; align-items:center; gap:8px; }
    .qb { background:var(--soft-blue); border:1px solid var(--line); border-radius:10px; padding:clamp(1.1rem,3vw,1.6rem); }
    .qb-list { display:grid; grid-template-columns:1fr 1fr; gap:10px 22px; margin:0 0 1rem; }
    .qb-item { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius:8px; padding:12px 14px; color:var(--navy); font-weight:600; cursor:pointer; }
    .qb-item input { width:18px; height:18px; accent-color:var(--blue); flex:0 0 auto; }
    .qb-item .qb-price { margin-left:auto; color:var(--blue); font-weight:750; white-space:nowrap; }
    .qb-total-row { display:flex; align-items:baseline; justify-content:space-between; gap:12px; border-top:1px solid var(--line); padding-top:1rem; flex-wrap:wrap; }
    .qb-total-row .lbl { font-weight:700; color:var(--navy); }
    .qb-total-row .val { font-size:1.6rem; font-weight:800; color:var(--blue); }
    .qb-note { color:var(--muted); font-size:0.86rem; margin:0.5rem 0 0; }
    @media (max-width: 820px) {
      .guideline-grid { grid-template-columns:1fr; }
      .qb-list { grid-template-columns:1fr; }
      .ptable, .ptable thead, .ptable tbody, .ptable th, .ptable td, .ptable tr { display:block; }
      .ptable thead { display:none; }
      .ptable tr { border-top:1px solid var(--line); padding:8px 0; }
      .ptable tbody tr:first-child { border-top:0; }
      .ptable td { border:0; padding:5px 16px; text-align:left; }
      .ptable td.amt, .ptable td.save { text-align:left; }
      .ptable td[data-label]::before { content: attr(data-label) ": "; color:var(--muted); font-weight:600; }
    }
    .mactype { display:flex; gap:10px; flex-wrap:wrap; margin:0 0 1rem; }
    .mactype label { display:flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line); border-radius:8px; padding:10px 14px; font-weight:650; color:var(--navy); cursor:pointer; }
    .mactype input { width:18px; height:18px; accent-color:var(--blue); }
    .qb-item.disabled { opacity:0.5; }
    .bundle-cell .was { display:block; color:var(--muted); text-decoration:line-through; font-size:0.85rem; font-weight:600; }
    .bundle-cell .now { display:block; color:var(--blue); font-weight:800; font-size:1.15rem; line-height:1.25; }
    .bundle-cell .savepill { display:inline-block; margin-top:5px; background:#eaf7ef; color:#15803d; border:1px solid #bfe6cd; border-radius:20px; padding:2px 10px; font-size:0.8rem; font-weight:750; }
  

/* ---------- Zorin / ChromeOS extras if not already covered ---------- */
    .promise-line {
      display: inline-block;
      margin: 0 0 1.15rem;
      padding: 0.72rem 0.95rem;
      background: #ffffff;
      border: 1px solid var(--line);
      border-left: 4px solid var(--green);
      border-radius: 8px;
      color: var(--navy);
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      align-items: center;
      border-radius: 8px;
      font-weight: 650;
      border: 1px solid var(--line);
      display: inline-flex;
      justify-content: center;
      min-height: 44px;
      padding: 0.72rem 1rem;
    }

    .btn.primary { background: var(--navy); color: white; border-color: var(--navy); }
    .btn.secondary { background: white; color: var(--navy); }

    section {
      background: #ffffff;
      padding: clamp(1.7rem, 4vw, 2.7rem) 0;
    }

    .soft { background: var(--soft-blue); }

    .section-head {
      max-width: 720px;
      margin-bottom: 34px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      line-height: 1.08;
      letter-spacing: 0;
      margin: 0 0 0.75rem;
      color: var(--navy);
    }

    .lead {
      font-size: 0.98rem;
      color: var(--muted);
      margin: 0;
    }

    .grid {
      display: grid;
      gap: 20px;
    }

    .grid.three { grid-template-columns: repeat(3, 1fr); }
    .grid.four { grid-template-columns: repeat(4, 1fr); }
    .grid.two { grid-template-columns: repeat(2, 1fr); }

    .card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.1rem;
      min-height: 0;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    .card h3 {
      margin: 0 0 8px;
      font-size: 1rem;
      color: var(--navy);
      letter-spacing: 0;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .icon {
      font-size: 2.2rem;
      margin-bottom: 14px;
    }

    .hope-line {
      color: var(--blue);
      display: block;
      font-weight: 750;
      margin-top: 0.85rem;
    }

    .plain-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .plain-list li {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 14px 16px;
      color: var(--navy);
      font-weight: 650;
    }

    .split-box {
      background: var(--soft-blue);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: clamp(1.25rem, 3vw, 1.8rem);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
      align-items: start;
    }

    .split-box h3 {
      color: var(--navy);
      font-size: clamp(1.35rem, 2.5vw, 1.75rem);
      margin: 0 0 14px;
      letter-spacing: -0.04em;
      line-height: 1.08;
    }

    .split-box p {
      color: var(--muted);
      margin: 0 0 0.9rem;
    }

    .good-bad {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .good-bad h3 {
      font-size: 1rem;
      margin: 0 0 0.8rem;
    }

    .good-bad ul {
      margin: 0;
      padding-left: 1.1rem;
      color: var(--muted);
    }

    .good-bad li { margin: 0.35rem 0; }

    .worth-accordions {
      display: grid;
      gap: 0.75rem;
    }

    .worth-accordions details {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
    }

    .worth-accordions summary {
      align-items: center;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      list-style: none;
      padding: 0.95rem 1rem;
      color: var(--navy);
      font-weight: 750;
    }

    .worth-accordions summary::-webkit-details-marker { display: none; }
    .worth-accordions summary::after {
      content: "+";
      color: var(--blue);
      font-size: 1.25rem;
      line-height: 1;
      font-weight: 750;
    }

    .worth-accordions details[open] summary::after { content: "–"; }

    .worth-accordions details p {
      margin: 0;
      padding: 0 1rem 1rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .mini-note {
      display: block;
      margin-top: 0.25rem;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 600;
    }

    .price-list {
      display: grid;
      gap: 14px;
      max-width: 760px;
      margin: 0 auto;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      padding: 22px 24px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: white;
    }

    .price-row strong {
      color: var(--navy);
      font-size: 1.05rem;
    }

    .price {
      font-size: 1.2rem;
      font-weight: 750;
      color: var(--blue);
      white-space: nowrap;
    }

    .note {
      max-width: 720px;
      text-align: center;
      margin: 24px auto 0;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .guides a {
      display: block;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      color: var(--navy);
      font-weight: 600;
    }

    .guides a:hover { color: var(--blue); }

    .appraisal {
      background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
    }

    .appraisal .action-bar {
      max-width: 760px;
      padding: clamp(0.7rem, 1.6vw, 0.95rem);
    }

    .appraisal .badge {
      margin-bottom: 0.42rem;
      padding: 0.3rem 0.75rem;
    }

    .appraisal .action-bar h2 {
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      line-height: 1.08;
      margin-bottom: 0.12rem;
    }

    .appraisal .appraisal-intro {
      font-size: 0.98rem;
      line-height: 1.42;
      margin-bottom: 0.9rem;
    }

    .compact-form { margin-top: 0.42rem; }

    .compact-form-grid {
      display: grid;
      grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
      gap: 0.45rem 0.55rem;
      align-items: end;
    }

    .compact-field-issue { grid-column: 1 / -1; }

    .compact-field span {
      display: block;
      margin-bottom: 0.2rem;
      font-weight: 700;
      font-size: 0.78rem;
    }

    .compact-field input,
    .compact-field textarea {
      width: 100%;
      box-sizing: border-box;
      padding: 0.56rem 0.68rem;
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      font: inherit;
      font-size: 0.95rem;
      margin: 0;
      background: white;
    }

    .compact-field textarea {
      min-height: 48px;
      resize: vertical;
    }

    .compact-form .btn-appraisal {
      grid-column: 1 / -1;
      justify-self: center;
      width: min(420px, 100%);
      margin-top: 0;
      min-height: 44px;
      padding: 0.72rem 0.95rem;
      align-self: end;
      white-space: nowrap;
    }

    .compact-form .compact-form-error {
      grid-column: 1 / -1;
      min-height: 0;
      margin: 0;
      font-size: 0.84rem;
    }

    .compact-form .compact-form-error:empty { display: none; }

    .compact-form .simple-form-note {
      margin: 0.45rem 0 0;
      text-align: center;
      font-size: 0.84rem;
      color: #475569;
      font-weight: 700;
    }

    @media (max-width: 820px) {
      .grid.three,
      .grid.four,
      .grid.two,
      .split-box,
      .good-bad {
        grid-template-columns: 1fr;
      }

      .hero { padding-top: 70px; }
      section { padding: 54px 0; }

      .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .compact-form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.42rem;
      }

      .compact-field-issue,
      .compact-form .btn-appraisal {
        grid-column: auto;
      }

      .compact-field input,
      .compact-field textarea {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
      }

      .compact-field textarea { min-height: 42px; }
    }
  

/* Mobile safety net for 320px */
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max, 1120px));
  }
  .buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .buttons .btn {
    width: 100%;
  }
  .grid.three,
  .grid.two,
  .grid.four,
  .worth-box {
    grid-template-columns: 1fr !important;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Shared reassurance line used below service-page hero actions. */
.service-trust-line {
  color: var(--color-muted);
  font-size: 0.82rem !important;
  font-weight: 700;
  margin: 0.85rem auto 0 !important;
  max-width: 680px;
}
