/* Page-specific extensions of the document skin */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 24px 26px;
}
.step-card .num {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold-dark);
  font-weight: 500;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step-card h4 {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 800px;
  margin: 0 auto;
}
.tier {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier.featured {
  background: #fff;
  border: 2px solid var(--gold);
}
.tier-badge {
  position: absolute;
  top: -11px;
  left: 28px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}
.tier-name {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: var(--ink);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.tier-price .amt {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}
.tier-price .unit {
  font-size: 13px;
  color: var(--muted);
}
.tier-blurb {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.tier-features {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: var(--space-4) 0 0;
  border-top: 1px solid var(--border);
  flex-grow: 1;
}
.tier-features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 10px;
}
.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.tier-features li strong {
  color: var(--ink);
  font-weight: 600;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 800px;
  margin: var(--space-8) auto 0;
}
.disclosure h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.disclosure p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.tag-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.tag-col-title.off { color: var(--muted); }

/* Guarantee card — navy slab with prominent gold seal */
.guarantee-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-9);
  align-items: center;
  background: var(--navy);
  color: #fff;
  padding: var(--space-9) var(--space-10);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(22, 41, 74, 0.18), 0 8px 16px rgba(22, 41, 74, 0.08);
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
}
.guarantee-seal {
  width: 160px;
  height: 160px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin: 0 auto;
}
.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 168, 75, 0.35);
  border-radius: 50%;
}
.guarantee-seal .seal-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.guarantee-seal .seal-big {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.guarantee-seal .seal-small {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.guarantee-body .guarantee-lab {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.guarantee-body .guarantee-headline {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 var(--space-3);
}
.guarantee-body .guarantee-text {
  color: #c8d0dc;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 720px) {
  .guarantee-card {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-8) var(--space-6);
    text-align: center;
  }
  .guarantee-seal { width: 140px; height: 140px; }
  .guarantee-seal .seal-big { font-size: 38px; }
  .guarantee-body .guarantee-headline { font-size: 21px; }
}

/* PDF "open in new tab" as a proper button */
.samples-pdf-foot .btn-ghost {
  font-size: 13px;
  padding: 10px 20px;
}
.samples-pdf-foot .btn-ghost::after {
  content: " ↗";
  display: inline-block;
}

/* Check / ex lists for Yes-No self-check */
.check-list, .ex-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li, .ex-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.check-list li::before,
.ex-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}
.check-list li { color: var(--body); }
.check-list li::before {
  content: "✓";
  color: var(--gold-dark);
}
.ex-list li { color: var(--muted); }
.ex-list li::before {
  content: "✗";
  color: var(--muted);
  font-weight: 500;
}

/* Modal */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 95, 0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.modal-backdrop.open { display: flex; }
body.modal-open { overflow: hidden; }
.modal {
  background: #fff;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.modal-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}
.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}
.modal-close {
  font-size: 24px;
  color: var(--muted);
  line-height: 1;
  padding: 0;
}
.modal-close:hover { color: var(--ink); }
.modal-body {
  padding: 24px 28px 28px;
}
.field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="tel"] {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s;
}
.modal-body input:focus {
  outline: none;
  border-color: var(--navy);
}
.field-row { margin-bottom: var(--space-5); }
.tier-options { display: flex; flex-direction: column; gap: 8px; }
.tier-option {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.tier-option:hover { border-color: var(--navy); }
.tier-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tier-option .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
}
.tier-option .meta { flex: 1; }
.tier-option .name {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.tier-option .desc {
  font-size: 12px;
  color: var(--muted);
}
.tier-option .amt {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}
.tier-option:has(input:checked) {
  border-color: var(--navy);
  background: var(--cream);
}

#orderError {
  display: none;
  background: var(--warning-bg);
  border-left: 3px solid var(--warning);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--body);
  font-size: 14px;
  padding: 12px 14px;
  margin-bottom: var(--space-4);
}
#orderError.show { display: block; }

.modal .btn-primary {
  width: 100%;
  text-align: center;
}
.modal .legal {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: var(--space-4);
  line-height: 1.6;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 860px;
  margin: 0 auto var(--space-7);
}
.sample-grid:last-of-type { margin-bottom: 0; }

/* Samples tabber (vertical tabs + preview) */
.samples-tabber {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-9);
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.samples-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--border);
}
.samples-tabs .tab-group {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: var(--space-4) var(--space-5) var(--space-2);
  margin-top: var(--space-2);
}
.samples-tabs .tab-group:first-child {
  padding-top: 0;
  margin-top: 0;
}
.samples-tabs .samples-tab {
  background: transparent;
  border: none;
  border-left: 2px solid transparent;
  padding: 12px var(--space-5);
  margin-left: -1px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  line-height: 1.25;
}
.samples-tabs .samples-tab:hover {
  color: var(--navy);
  background: var(--cream);
}
.samples-tabs .samples-tab.active {
  color: var(--navy);
  border-left-color: var(--gold);
  font-weight: 600;
}

/* PDF viewer */
.samples-preview {
  position: relative;
}
.samples-pdf {
  width: 100%;
  height: 600px;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(22, 41, 74, 0.10), 0 6px 14px rgba(22, 41, 74, 0.06);
  background: var(--cream);
}
.samples-pdf-foot {
  margin-top: var(--space-3);
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 820px) {
  .samples-tabber {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .samples-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
    gap: 0;
  }
  .samples-tabs .tab-group { display: none; }
  .samples-tabs .samples-tab {
    border-left: none;
    border-bottom: 2px solid transparent;
    margin-left: 0;
    padding: 10px 14px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .samples-tabs .samples-tab.active {
    border-bottom-color: var(--gold);
    border-left-color: transparent;
  }
  .sp-doc { padding: var(--space-6); }
  .sp-title { font-size: 20px; }
  .sp-facts { grid-template-columns: 1fr 1fr; }
}
.sample-group-label {
  max-width: 860px;
  margin: 0 auto var(--space-4);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.sample-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.1s;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.sample-card:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}
.sample-card .type {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.sample-card h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sample-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.sample-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-9);
  padding: var(--space-9) 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.step-row:last-child { border-bottom: none; }
.step-row .step-body .step-num-inline {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-right: 12px;
}
.step-row .step-body .step-duration-inline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-3);
  display: block;
}
.step-row .step-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.step-row .step-body p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}
.step-row .step-body p strong {
  color: var(--ink);
  font-weight: 600;
}
.step-row .step-body ul.doc-list {
  margin-top: var(--space-3);
}

/* Step mockup shells */
.step-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(22, 41, 74, 0.08), 0 4px 10px rgba(22, 41, 74, 0.05);
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.step-mockup .mu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.step-mockup .mu-brand {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}
.step-mockup .mu-brand .gold { color: var(--gold-dark); }
.step-mockup .mu-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Step 1 — payment confirmation */
.mu-paid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.mu-paid .mu-label {
  font-weight: 600;
  color: var(--ink);
}
.mu-paid .mu-value {
  color: var(--navy);
  font-weight: 600;
}
.mu-paid-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #10b981;
  margin-top: 4px;
}
.mu-paid-stamp::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 9px;
  line-height: 12px;
  text-align: center;
  display: inline-block;
}
.mu-line {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

/* Step 2 — upload card */
.mu-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 10px;
}
.mu-upload .mu-upload-icon {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 4px;
}
.mu-file {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
}
.mu-file .mu-file-icon {
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mu-file .mu-file-name {
  flex: 1;
  color: var(--ink);
  font-weight: 500;
}
.mu-file .mu-file-check {
  color: #10b981;
  font-weight: 700;
}

/* Step 3 — timeline */
.mu-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mu-timeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 12px;
  color: var(--muted);
}
.mu-timeline li .mu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}
.mu-timeline li.done .mu-dot {
  background: var(--gold);
  border-color: var(--gold);
}
.mu-timeline li.active .mu-dot {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.25);
  animation: muPulse 1.5s ease-in-out infinite;
}
.mu-timeline li.done { color: var(--ink); }
.mu-timeline li.active { color: var(--navy); font-weight: 600; }
@keyframes muPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.25); }
  50% { box-shadow: 0 0 0 5px rgba(212, 168, 75, 0.15); }
}

/* Step 4 — email preview */
.mu-email {
  padding: 0;
}
.mu-email .mu-email-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.mu-email .mu-email-from {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 2px;
}
.mu-email .mu-email-from strong { color: var(--ink); font-weight: 600; }
.mu-email .mu-email-subject {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}
.mu-email-body {
  font-size: 11.5px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 10px;
}
.mu-attach {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.mu-attach .mu-pdf {
  width: 30px;
  height: 38px;
  background: var(--navy);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}
.mu-attach .mu-pdf::before {
  content: "PDF";
  position: absolute;
  inset: 0;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}
.mu-attach .mu-attach-meta {
  flex: 1;
  font-size: 11px;
}
.mu-attach .mu-attach-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.mu-attach .mu-attach-meta span {
  color: var(--muted);
}

.sample-download-link {
  display: block;
  background: var(--success-bg);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: var(--space-4);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}
.sample-download-link a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

/* ============ Nav CTA override — ghost style ============ */
header.nav .nav-cta {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
header.nav .nav-cta:hover {
  background: var(--navy);
  color: #fff;
}

/* ============ Hero override: two-column layout with mockup ============ */
body.document section.hero {
  padding: var(--space-11) var(--space-6) var(--space-13);
  overflow: hidden;
}
body.document section.hero .inner {
  max-width: 1140px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-11);
  align-items: center;
  text-align: left;
}
body.document section.hero .eyebrow {
  display: block;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 2px;
}
body.document section.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  text-align: left;
  margin-bottom: var(--space-6);
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.015em;
}
body.document section.hero h1 em {
  font-style: italic;
  color: var(--navy);
  position: relative;
  white-space: nowrap;
}
body.document section.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--gold);
  opacity: 0.55;
}
body.document section.hero p.hero-kicker {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.1vw, 26px);
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin: calc(-1 * var(--space-3)) 0 var(--space-6);
  max-width: 520px;
  text-align: left;
}
body.document section.hero p.lede {
  text-align: left;
  max-width: 520px;
  margin: 0 0 var(--space-8);
  font-size: 18px;
  color: var(--body);
  line-height: 1.7;
}
body.document section.hero .hero-cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero-mockup {
  position: relative;
  min-height: 420px;
  cursor: pointer;
}
.hero-mockup .doc-page {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-mockup:hover .doc-page {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 35px 60px rgba(22, 41, 74, 0.22), 0 15px 30px rgba(22, 41, 74, 0.12);
}
.hero-mockup .see-real {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.25s ease, bottom 0.25s ease;
  pointer-events: none;
  z-index: 6;
  white-space: nowrap;
}
.hero-mockup:hover .see-real {
  opacity: 1;
  bottom: -4px;
}
.hero-mockup .mockup-tag {
  position: absolute;
  top: -8px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: #fff;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(22, 41, 74, 0.08);
}
.hero-mockup .mockup-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.hero-mockup .doc-page {
  transform: rotate(-2deg);
  max-width: 420px;
  margin-left: auto;
  font-size: 10.5px;
}
.hero-mockup .doc-page-behind {
  width: 80%;
  height: 78%;
  top: 8%;
  right: -4%;
  transform: rotate(7deg);
}

@media (max-width: 900px) {
  body.document section.hero .inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  body.document section.hero { padding: var(--space-9) var(--space-5); }
  body.document section.hero h1 { font-size: clamp(28px, 6vw, 36px); }
  body.document section.hero p.pillars,
  body.document section.hero p.lede { text-align: left; }
  .hero-mockup { min-height: 280px; }
  .hero-mockup .doc-page { max-width: 340px; margin: 0 auto; }
}

/* ============ Document preview mockup (legacy .preview-stage) ============ */
.preview-stage {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-11) var(--space-6);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-9);
  align-items: center;
}
.preview-stage .caption .eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
  display: block;
}
.preview-stage .caption h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.preview-stage .caption p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}
.preview-stage .caption ul {
  list-style: none;
  margin-top: var(--space-5);
  padding: 0;
}
.preview-stage .caption ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0 6px 20px;
  position: relative;
}
.preview-stage .caption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.doc-mockup {
  position: relative;
  perspective: 1000px;
}
.doc-page {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(22, 41, 74, 0.15), 0 8px 20px rgba(22, 41, 74, 0.08);
  padding: 28px 28px 24px;
  font-size: 9px;
  line-height: 1.4;
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.doc-page::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--navy);
}
.doc-mockup:hover .doc-page {
  transform: rotate(0deg);
}
.doc-page .masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-top: 6px;
}
.doc-page .masthead .brand {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.doc-page .masthead .brand span { color: var(--gold-dark); }
.doc-page .masthead .meta {
  font-family: var(--font-sans);
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.doc-page h1.doc-title {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 4px;
}
.doc-page .doc-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 16px;
}
.fact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.fact-cell {
  background: var(--cream);
  padding: 8px 10px;
}
.fact-cell .k {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.fact-cell .v {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.doc-page .section-kicker {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}
.mask-lines .line {
  height: 6px;
  background: #e8e4d8;
  border-radius: 2px;
  margin-bottom: 5px;
}
.mask-lines .line.w90 { width: 92%; }
.mask-lines .line.w95 { width: 96%; }
.mask-lines .line.w85 { width: 86%; }
.mask-lines .line.w70 { width: 72%; }
.rec-box {
  background: var(--navy);
  color: #fff;
  padding: 11px 12px;
  margin-top: 14px;
  position: relative;
}
.rec-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.rec-box .rec-kicker {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
  margin-bottom: 4px;
}
.options-panel {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 14px;
}
.options-kicker {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.options-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.options-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-sans);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.options-list li:last-child { border-bottom: none; }
.opt-label {
  color: var(--ink);
  font-weight: 600;
}
.opt-meta {
  color: var(--muted);
}
.rec-box .rec-headline {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
/* Secondary page peek behind the main page */
.doc-page-behind {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(22,41,74,0.12);
  padding: 18px;
  width: 85%;
  height: 70%;
  top: 8%;
  right: -8%;
  transform: rotate(6deg);
  z-index: 1;
  overflow: hidden;
}
.doc-page-behind::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--gold);
}

/* ============ Visual: SVG step icons ============ */
.step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.step-icon rect, .step-icon path, .step-icon circle, .step-icon line {
  stroke: var(--navy);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-icon .accent {
  stroke: var(--gold-dark);
}
.step-icon .accent-fill {
  fill: var(--gold);
  stroke: none;
}

/* ============ Visual: Sample card icons ============ */
.sample-icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-3);
}
.sample-icon path, .sample-icon rect, .sample-icon circle, .sample-icon line, .sample-icon polyline {
  stroke: var(--navy);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sample-icon .accent { stroke: var(--gold-dark); }

/* ============ Visual: Comparison chart ============ */
.chart-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: var(--space-5);
}
.chart-card .chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.chart-card .chart-title {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}
.chart-card .chart-legend {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--muted);
}
.chart-card .chart-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}
.chart-card svg { width: 100%; height: 140px; display: block; }

@media (max-width: 720px) {
  .preview-stage {
    grid-template-columns: 1fr;
    padding: var(--space-8) var(--space-5);
  }
  .doc-page { font-size: 10px; }
  .doc-page-behind { display: none; }
}

.faq-q { cursor: pointer; position: relative; padding-right: 30px; }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 0.35s ease, padding-top 0.25s ease;
}
.faq-item.open .faq-a {
  max-height: 2000px;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .two-col, .three-col, .four-col, .tier-grid, .disclosure-grid, .sample-grid {
    grid-template-columns: 1fr;
  }
  .tier { padding: 28px 24px; }
  .step-row { grid-template-columns: 1fr; gap: var(--space-5); padding: var(--space-7) 0; }
  .step-row .step-mockup { max-width: 340px; margin: 0 auto; }
}

/* ==========================================================================
   Variant landing pages (/variants/*.html)
   Shared by fixed_annuity, term_life, whole_life. Do not inline these styles
   in the variant HTML — keep this file as the single source.
   ========================================================================== */

/* Step-row proof images: let the PDF-page image fill the mockup cleanly. */
.proof-mockup {
  padding: 0 !important;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  max-width: 260px;
  margin: 0 auto;
  justify-self: center;
}
.proof-mockup img { display: block; width: 100%; height: auto; }

/* Multi-page grid mockups (used when a single step represents 2+ pages). */
.proof-grid { display: grid; gap: 8px; }
.proof-grid-2 { grid-template-columns: 1fr 1fr; }
.proof-grid-3 { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.proof-grid-4 { grid-template-columns: 1fr 1fr; }
.proof-grid a {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.proof-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.10);
}
.proof-grid img { display: block; width: 100%; height: auto; }

/* Agitation "laundry list" — broadly-applicable things owners miss.
   Sits between hero and the product-proof section to do the A in PAS. */
.concern-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .concern-list { grid-template-columns: 1fr; }
}
.concern-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.concern-lead {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: var(--space-2);
  line-height: 1.25;
}
.concern-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}

/* "Full X-Ray" carousel — page screenshots with captions, prev/next,
   and a link to the full PDF. The viewport alone has the card chrome
   (border/shadow) so the image reads as a page; captions and controls
   sit below in plain air. */
.xray-carousel { /* transparent layout wrapper only */ }
.carousel-viewport {
  position: relative;
  aspect-ratio: 8.5 / 11;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.carousel-viewport img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.carousel-caption {
  font-size: 12px; color: var(--muted); text-align: center;
  margin-top: var(--space-3); font-style: italic;
  line-height: 1.4; min-height: 2.8em;
}
.carousel-controls {
  display: flex; justify-content: center; align-items: center;
  gap: var(--space-4); margin-top: var(--space-3);
}
.carousel-btn {
  background: var(--navy); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.carousel-btn:hover { background: var(--navy-dark); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }
.carousel-counter {
  font-size: 12px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 44px; text-align: center;
}
.carousel-pdf-btn {
  display: block; text-align: center; margin-top: var(--space-4);
}

/* Pricing — two tiers side by side. Full-analysis tier is featured.
   .tier-features bullets are handled earlier in this file — don't redefine. */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-tier.featured {
  border: 2px solid var(--gold);
  background: var(--cream);
}
.pricing-tier.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -10px;
  left: var(--space-6);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
}
.pricing-tier .tier-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
}
.pricing-tier .price {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.pricing-tier .price .unit {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
}
.pricing-tier p.desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: var(--space-5);
}
.pricing-tier .tier-cta { margin-top: auto; }

/* Guarantee-seal mockup used inside the final "how it works" step. */
.seal-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.seal-mockup .seal {
  width: 140px;
  height: 140px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.seal-mockup .seal .big {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
}
.seal-mockup .seal .lab {
  font-size: 10px;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

.sample-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-7);
}

/* xraymypolicy.css (above) redefines the document hero for its mockup-heavy
   layout. The variant pages want the plain getsure-design hero back. */
body.document section.hero {
  background: var(--cream);
  padding: var(--space-12) var(--space-6) var(--space-11);
  text-align: center;
  overflow: visible;
}
body.document section.hero .inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: block;
  grid-template-columns: none;
  gap: 0;
  text-align: center;
}
body.document section.hero .eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
body.document section.hero h1 {
  font-family: var(--font-sans);
  font-size: var(--text-2xl);
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: normal;
  text-align: center;
  margin: 0 auto var(--space-5);
  max-width: none;
}
body.document section.hero h1 em { font-style: italic; color: inherit; }
body.document section.hero h1 em::after { content: none; }
body.document section.hero p.lede {
  font-size: var(--text-md);
  color: var(--body);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  text-align: center;
  line-height: 1.7;
}

/* getsure.css's .reading adds its own 24px horizontal padding on top of the
   section's 24px, which reads as too much whitespace on a 390px viewport. */
@media (max-width: 720px) {
  section#about { padding: var(--space-8) var(--space-5); }
  section#about .reading { padding: 0; }
}
