/* Sales-script blocks (Hormozi stack / guarantee / FAQ) */
.inf-stack {
  margin-top: 48px;
  border: 1px solid var(--line-d);
}
.inf-stack__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line-d);
  background: var(--paper);
}
.inf-stack__row:last-child { border-bottom: none; }
.inf-stack__row--total {
  background: #111;
  color: #fff;
  border-bottom: none;
}
.inf-stack__row strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.inf-stack__row p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  max-width: 52ch;
  line-height: 1.5;
}
.inf-stack__row--total p { color: rgba(255,255,255,0.55); }
.inf-stack__val {
  font-family: var(--font-m);
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--mute);
  padding-top: 2px;
}
.inf-stack__row--total .inf-stack__val {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.inf-guarantee {
  margin-top: 40px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
}
.inf-guarantee h3 {
  font-family: var(--font-d);
  font-style: normal;
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.inf-guarantee p {
  color: rgba(255,255,255,0.58);
  max-width: 58ch;
  line-height: 1.6;
  margin-bottom: 12px;
}
.inf-guarantee p:last-child { margin-bottom: 0; }

.inf-faq {
  margin-top: 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-d);
}
.inf-faq details {
  border-bottom: 1px solid var(--line-d);
  padding: 20px 0;
}
.inf-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.inf-faq summary::-webkit-details-marker { display: none; }
.inf-faq summary::after {
  content: "+";
  font-family: var(--font-m);
  color: var(--mute);
  font-weight: 400;
}
.inf-faq details[open] summary::after { content: "–"; }
.inf-faq details p {
  margin-top: 12px;
  color: var(--mute);
  max-width: 62ch;
  line-height: 1.55;
}

.inf-price-note {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--mute);
  max-width: 56ch;
  line-height: 1.55;
}
.inf-section--ink .inf-price-note { color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .inf-stack__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
