/* Pain-point callout */
.pain-alert { background: rgba(216,160,42,.1); border: 1px solid rgba(216,160,42,.3);
    border-radius: 14px; padding: 26px 28px; }
.pain-alert h3 { margin: 0 0 14px; font-size: 20px; }
.pain-point { background: var(--white); border-left: 4px solid var(--yellow);
    padding: 14px 16px; margin: 12px 0; border-radius: 0 8px 8px 0; }

/* Flow steps */
.flow-card { background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; margin-bottom: 24px; }
.flow-num { width: 48px; height: 48px; border-radius: 50%; background: var(--orange);
    color: #fff; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 20px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.flow-card h3 { text-align: center; font-size: 19px; margin-bottom: 18px; }
.flow-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px;
    align-items: center; text-align: center; }
.flow-row .ico-big { font-size: 40px; color: var(--orange); }
.flow-arrow { font-size: 28px; color: var(--text-2); }
.material-cost { font-family: "Space Grotesk", sans-serif; font-size: 20px;
    font-weight: 700; color: var(--orange); }
.gst-amount { font-family: "Space Grotesk", sans-serif; font-size: 18px;
    font-weight: 700; color: #C0392B; }
.final-price { font-family: "Space Grotesk", sans-serif; font-size: 21px;
    font-weight: 700; color: var(--green); }
.flow-note { margin-top: 16px; padding: 14px 16px; background: var(--sandstone);
    border: 1px solid var(--border); border-radius: 8px; font-size: 14px; }

/* Reconciliation tiles */
.recon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.recon-tile { border-radius: 10px; padding: 18px; text-align: center; }
.recon-tile h4 { margin: 0 0 6px; font-size: 15px; }
.recon-tile .recon-num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 26px; }
.recon-tile.recon-out { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2); }
.recon-tile.recon-out .recon-num { color: #C0392B; }
.recon-tile.recon-in { background: rgba(46,93,59,.08); border: 1px solid rgba(46,93,59,.2); }
.recon-tile.recon-in .recon-num { color: var(--green); }
.recon-net { margin-top: 16px; background: var(--black); color: #fff; border-radius: 10px;
    padding: 18px; text-align: center; }
.recon-net h4 { margin: 0 0 4px; color: #fff; font-size: 19px; }
.recon-net p { margin: 0; font-size: 14px; opacity: .8; }

/* Bottom-line banner */
.bottom-line { background: var(--green); color: #fff; border-radius: 14px;
    padding: 30px; text-align: center; }
.bottom-line h3 { color: #fff; margin: 0 0 12px; font-size: 22px; }
.bottom-line p { margin: 0; font-size: 17px; line-height: 1.6; }

/* Share modal — plain CSS overlay, no Bootstrap JS */
.share-modal { position: fixed; inset: 0; z-index: 1000;
    display: none; align-items: center; justify-content: center;
    background: rgba(26,26,26,.55); padding: 20px; }
.share-modal.is-open { display: flex; }
.share-modal__box { background: var(--white); border-radius: 14px;
    width: 100%; max-width: 460px; overflow: hidden; }
.share-modal__head { display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 1px solid var(--border); }
.share-modal__head h3 { margin: 0; font-size: 18px; }
.share-modal__close { background: none; border: none; font-size: 22px;
    cursor: pointer; color: var(--text-2); line-height: 1; }
.share-modal__body { padding: 22px; }
.share-link-row { display: flex; gap: 8px; margin: 12px 0 18px; }
.share-link-row input { flex: 1; font-family: inherit; font-size: 14px;
    padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px;
    background: var(--sandstone); }
.share-channels { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 880px) {
    .flow-row, .recon-grid { grid-template-columns: 1fr; }
    .flow-arrow { transform: rotate(90deg); }
}