/*
 * Signature365 billing / pricing UI
 * Shared styling for the price-calculation surfaces:
 *   - Buy now page              (Views/Buy/Index.cshtml,          _LandingPageLayout)
 *   - In-app Subscription page  (Views/Subscription/Index.cshtml, _Layout)
 * Brand palette: teal #50afb0 (hover #3d8f90, disabled #a9d6d7), ink #292b2c.
 */

/* Teal call-to-action button (Subscribe / Reactivate / Continue to payment). */
.btn-teal { background: #50afb0; border: 1px solid #50afb0; color: #fff; font-weight: 600; }
.btn-teal:hover,
.btn-teal:focus { background: #3d8f90; border-color: #3d8f90; color: #fff; }
.btn-teal:disabled { background: #a9d6d7; border-color: #a9d6d7; color: #fff; opacity: 1; }

/* Price summary card (price per seat + volume breakdown + total). */
.pricing-summary { background: #f8fafa; border: 1px solid #eef2f2; border-radius: 12px; padding: 1.1rem 1.25rem; }
.pricing-summary__line { display: flex; justify-content: space-between; align-items: center; }
.pricing-summary__label { color: #6c757d !important; font-size: .92rem; }
.pricing-summary__value { font-weight: 600; color: #292b2c !important; }
.pricing-summary__breakdown { color: #8a9196 !important; font-size: .82rem; }
.pricing-summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: .85rem; padding-top: .85rem; border-top: 1px solid #e3e9e9; }
.pricing-summary__amount { font-size: 1.85rem; font-weight: 700; color: #292b2c !important; line-height: 1; }
.pricing-summary__status { color: #8a9196 !important; font-size: .82rem; }

/* Subscription vs add-ons split within the price summary card. */
.pricing-summary__section + .pricing-summary__section { margin-top: .85rem; padding-top: .85rem; border-top: 1px dashed #e3e9e9; }
.pricing-summary__sublabel { color: #6c757d !important; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.pricing-summary__subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-top: .35rem; }
.pricing-summary__subscription-amount { font-size: 1.4rem; font-weight: 700; color: #2f7d7e !important; line-height: 1; }
.pricing-summary__addons-note { text-transform: none; font-weight: 400; color: #8a9196 !important; }
.pricing-summary__addon-line { display: flex; justify-content: space-between; font-size: .88rem; color: #292b2c !important; padding: .2rem 0; }
.pricing-summary__renewal-note { display: block; color: #2f7d7e !important; font-style: italic; font-size: .82rem; margin-top: .6rem; }

/* Secure-payment reassurance line under the CTA. */
.pricing-secure { color: #8a9196; }

/* Brand-tinted form controls for billing forms (opt in by adding .pricing-form). */
.pricing-form a { color: #2f7d7e; text-decoration: none; font-weight: 600; }
.pricing-form a:hover { color: #3d8f90; text-decoration: underline; }
.pricing-form .form-control:focus,
.pricing-form .form-check-input:focus { border-color: #50afb0; box-shadow: 0 0 0 .2rem rgba(80, 175, 176, .25); }
.pricing-form .form-check-input:checked { background-color: #50afb0; border-color: #50afb0; }
