/* MULTIPAGE-SMART START */
:root {
  --mp-bg: #f6f8fb;
  --mp-surface: #ffffff;
  --mp-text: #1c2430;
  --mp-muted: #5b6778;
  --mp-border: #dbe2ea;
  --mp-brand: #146c43;
  --mp-brand-dark: #0f5132;
  --mp-accent: #f5b83d;
  --mp-accent-hover: #ffc858;
  --mp-button-ink: #1b3034;
  --mp-button-outline: #346e73;
  --mp-button-outline-ink: #205c62;
  --mp-header-bg: #025781;
  --mp-shadow: 0 18px 48px rgba(18, 38, 63, 0.10);
  --mp-radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
p {
  line-height: 1.5 !important;
}
body.mp-site-page {
  margin: 0;
  color: var(--mp-text);
  background: var(--mp-bg);
  font-family: 'Jost', sans-serif;
  font-size: 19px;
  line-height: 1.82;
}
.mp-site-page h1, .mp-site-page h2, .mp-site-page h3, .mp-site-page h4, .mp-site-page h5, .mp-site-page h6 {
  font-family: 'Jost', sans-serif;
}
.mp-container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.mp-site-header {
  position: relative;
  z-index: 50;
  background: var(--mp-header-bg);
  border-bottom: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 3px 15px rgba(19, 40, 66, 0.10);
}
.mp-nav, .mp-nav-shell { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.mp-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.mp-menu, .mp-site-nav { display: flex; align-items: center; gap: 9px; margin-left: auto; }
.mp-menu a, .mp-site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 7px;
  border-radius: 9px;
}
.mp-menu a:hover, .mp-site-nav a:hover, .mp-nav-link.is-active { background: rgba(255,255,255,.14); color: #fff; }
.mp-menu .mp-order-nav, .mp-site-nav .mp-nav-order {
  background: var(--mp-accent);
  color: var(--mp-button-ink) !important;
  padding: 10px 16px;
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(245,184,61,.26);
}
.mp-menu .mp-order-nav:hover, .mp-site-nav .mp-nav-order:hover {
  background: var(--mp-accent-hover);
  color: #10262b !important;
}
.mp-menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 20px;
  cursor: pointer;
}
.mp-menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px 0; background: #fff; }
.mp-breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--mp-border); }
.mp-breadcrumb { margin: 0; padding: 14px 0; color: var(--mp-muted); font-size: 16px; line-height: 1.6; }
.mp-breadcrumb a { color: var(--mp-brand); text-decoration: none; font-weight: 700; }
.mp-breadcrumb span { padding: 0 8px; color: #98a3b1; }
.mp-page-hero { padding: 62px 0 46px; background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%); }
.mp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 48px; align-items: center; }
.mp-eyebrow {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--mp-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mp-page-hero h1 { margin: 0 0 20px; font-size: clamp(40px, 5vw, 62px); line-height: 1.14; letter-spacing: -0.025em; }
.mp-lead { margin: 0; max-width: 800px; color: var(--mp-muted); font-size: 21px; line-height: 1.82; }
.mp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.mp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mp-btn-primary {
  background: var(--mp-accent);
  color: var(--mp-button-ink) !important;
  box-shadow: 0 10px 24px rgba(217,149,17,.20);
}
.mp-btn-primary:hover {
  background: var(--mp-accent-hover);
  color: #10262b !important;
  box-shadow: 0 12px 27px rgba(217,149,17,.25);
  transform: translateY(-1px);
}
.mp-btn-secondary {
  border-color: var(--mp-button-outline);
  color: var(--mp-button-outline-ink) !important;
  background: #fff;
}
.mp-btn-secondary:hover {
  border-color: #205c62;
  color: #164b50 !important;
  background: #f5fbfa;
  transform: translateY(-1px);
}
.mp-hero-image { display: flex; align-items: center; justify-content: center; }
.mp-hero-image img { display: block; max-width: 100%; height: auto; max-height: 390px; object-fit: contain; }
.mp-main { padding: 46px 0 64px; }
.mp-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 36px; align-items: start; }
.mp-article { min-width: 0; }
.mp-content-section, .mp-faq, .mp-data-block, .mp-reviews-block {
  margin: 0 0 24px;
  padding: 30px;
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  box-shadow: 0 8px 28px rgba(18, 38, 63, 0.045);
}
.mp-content-section h2, .mp-faq h2, .mp-data-block h2, .mp-reviews-block h2 {
  margin: 56px 0 18px;
  font-size: 32px;
  line-height: 1.32;
}
.mp-content-section > h2:first-child,
.mp-faq > h2:first-child,
.mp-data-block > h2:first-child,
.mp-reviews-block > h2:first-child {
  margin-top: 0;
}
.mp-content-section h3, .mp-faq h3 { margin: 46px 0 15px; font-size: 25px; line-height: 1.38; }

/* Give every new article section clear breathing room above its heading. */
.mp-article > section:not(.mp-faq-block) {
  margin-top: 68px;
}
.mp-article > section:first-child {
  margin-top: 0;
}
.mp-article > section:not(.mp-faq-block) > h2:first-child {
  margin-top: 0;
  margin-bottom: 20px;
}
.mp-article > h2 {
  margin: 68px 0 20px;
}
.mp-article h3 {
  margin-top: 46px;
  margin-bottom: 15px;
}
.mp-content-section p, .mp-faq p, .mp-data-block p, .mp-reviews-block p { margin: 0 0 21px; font-size: 19px; line-height: 1.82; }
.mp-content-section ul, .mp-content-section ol, .mp-faq ul, .mp-faq ol { margin: 18px 0 22px; padding-left: 28px; font-size: 19px; line-height: 1.78; }
.mp-content-section li, .mp-faq li { margin-bottom: 11px; }

/* FAQ on MULTIPAGE internal pages */
.mp-faq-block {
  margin: 82px 0 10px;
  padding: 42px 0 0;
  border-top: 1px solid var(--mp-border);
}
.mp-faq-title {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.32;
  letter-spacing: -0.015em;
}
.mp-faq-list {
  display: grid;
  gap: 15px;
}
.mp-faq-item {
  margin: 0;
  overflow: hidden;
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 15px;
  box-shadow: 0 7px 24px rgba(18, 38, 63, 0.055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mp-faq-item:hover {
  border-color: #c4d8cd;
  box-shadow: 0 10px 28px rgba(18, 38, 63, 0.075);
}
.mp-faq-item[open] {
  border-color: #b8d5c5;
  box-shadow: 0 12px 30px rgba(18, 38, 63, 0.08);
}
.mp-faq-question {
  position: relative;
  display: block;
  margin: 0;
  padding: 21px 62px 21px 23px;
  color: var(--mp-text);
  background: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.48;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.mp-faq-question::-webkit-details-marker { display: none; }
.mp-faq-question::marker { display: none; content: ""; }
.mp-faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf7f2;
  color: var(--mp-brand);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
.mp-faq-item[open] > .mp-faq-question {
  background: #fbfdfc;
  border-bottom: 1px solid var(--mp-border);
}
.mp-faq-item[open] > .mp-faq-question::after {
  content: "−";
}
.mp-faq-answer {
  padding: 20px 23px 3px;
  background: #fff;
}
.mp-faq-answer p {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.82;
  color: var(--mp-text);
}
.mp-table-wrap { width: 100%; overflow-x: auto; }
.mp-table { width: 100%; border-collapse: collapse; min-width: 580px; background: #fff; }
.mp-table th, .mp-table td { padding: 13px 14px; border: 1px solid var(--mp-border); text-align: left; vertical-align: top; }
.mp-table th { background: #edf7f2; color: #23352d; font-size: 17px; line-height: 1.55; }
.mp-table td { font-size: 17px; line-height: 1.7; }
.mp-review-card { padding: 22px 0; border-top: 1px solid var(--mp-border); }
.mp-review-card:first-of-type { border-top: 0; padding-top: 0; }
.mp-review-card:last-child { padding-bottom: 0; }
.mp-review-card img { display: block; max-width: 180px; width: 100%; height: auto; border-radius: 12px; margin-bottom: 14px; }
.mp-review-name { margin: 0 0 7px; font-size: 21px; line-height: 1.4; font-weight: 800; }
.mp-review-meta { color: var(--mp-muted); font-size: 16px; line-height: 1.6; margin: 0 0 12px; }
.mp-stars { color: #b57900; letter-spacing: 2px; font-size: 20px; }
.mp-sidebar { position: sticky; top: 22px; }
.mp-side-card { padding: 24px; background: #fff; border: 1px solid var(--mp-border); border-radius: var(--mp-radius); box-shadow: var(--mp-shadow); }
.mp-side-card h2 { margin: 8px 0 12px; font-size: 27px; line-height: 1.35; }
.mp-side-card p { color: var(--mp-muted); margin: 0 0 20px; font-size: 18px; line-height: 1.75; }
.mp-side-card img { display: block; max-width: 100%; height: auto; max-height: 240px; object-fit: contain; margin: 0 auto 14px; }
.mp-side-card .mp-btn { width: 100%; }
.mp-related { padding: 0 0 64px; }
.mp-related h2 { margin: 0 0 20px; font-size: 31px; line-height: 1.35; }
.mp-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.mp-related-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 128px;
  padding: 22px;
  color: var(--mp-text);
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
}
.mp-related-link:hover { border-color: #9ec9b4; box-shadow: 0 8px 22px rgba(18, 38, 63, .07); }
.mp-related-link span { color: var(--mp-muted); font-size: 16px; line-height: 1.6; font-weight: 400; }
/* The source footer is preserved; only its typography is compacted on inner pages. */
body.mp-site-page footer,
body.mp-site-page section[class*="footer"] {
  font-size: 12px !important;
  line-height: 1.35 !important;
}
body.mp-site-page footer p,
body.mp-site-page section[class*="footer"] p {
  font-size: 12px !important;
  line-height: 1.35 !important;
  margin-bottom: 8px !important;
}
body.mp-site-page footer a,
body.mp-site-page footer li,
body.mp-site-page footer span,
body.mp-site-page section[class*="footer"] a,
body.mp-site-page section[class*="footer"] li,
body.mp-site-page section[class*="footer"] span {
  font-size: 12px !important;
  line-height: 1.35 !important;
}
body.mp-site-page footer h1,
body.mp-site-page footer h2,
body.mp-site-page footer h3,
body.mp-site-page footer h4,
body.mp-site-page section[class*="footer"] h1,
body.mp-site-page section[class*="footer"] h2,
body.mp-site-page section[class*="footer"] h3,
body.mp-site-page section[class*="footer"] h4 {
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.mp-site-footer { padding: 42px 0 28px; background: #15201b; color: #d8e2dd; }
.mp-footer-grid { display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 38px; }
.mp-footer-title { color: #fff; margin: 0 0 10px; font-size: 22px; font-weight: 800; }
.mp-footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px 18px; }
.mp-footer-links a { color: #e6efea; text-decoration: none; font-size: 14px; }
.mp-footer-links a:hover { text-decoration: underline; }
.mp-footer-trust { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
.mp-footer-trust-label { display: block; margin-bottom: 10px; color: #fff; font-size: 14px; font-weight: 800; }
.mp-footer-trust-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.mp-footer-trust-links a { color: #d8e2dd; text-decoration: none; font-size: 13px; }
.mp-footer-trust-links a:hover { text-decoration: underline; }
.mp-site-footer > .mp-container > p:not(.mp-copyright) { color: #aebcb5; font-size: 11px; line-height: 1.35 !important; }
.mp-disclosure { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); color: #aebcb5; font-size: 11px; line-height: 1.35 !important; }
.mp-copyright { margin: 12px 0 0; color: #c4d0ca; font-size: 11px; line-height: 1.35 !important; }
.mp-index-explore { margin: 38px auto; width: min(1160px, calc(100% - 36px)); padding: 26px; border: 1px solid var(--mp-border); border-radius: 18px; background: #fff; }
.mp-index-explore h2 { margin: 0 0 18px; font-size: 30px; line-height: 1.35; }
.mp-index-explore-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 11px; }
.mp-index-explore a { display: block; padding: 15px 16px; border: 1px solid var(--mp-border); border-radius: 11px; color: var(--mp-text); text-decoration: none; font-size: 17px; line-height: 1.55; font-weight: 700; }
.mp-index-explore a:hover { border-color: #9ec9b4; color: var(--mp-brand); }
/* Keep special-pricing text readable on dark/colored backgrounds. */
h1.mp-special-pricing, h2.mp-special-pricing, h3.mp-special-pricing, .mp-special-pricing { color: #fff !important; }
@media (max-width: 1050px) {
  .mp-menu-toggle { display: inline-flex; }
  .mp-menu, .mp-site-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 69px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 14px;
    background: var(--mp-header-bg);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    box-shadow: var(--mp-shadow);
  }
  .mp-menu.is-open, .mp-site-nav.is-open { display: flex; }
  .mp-menu a, .mp-site-nav a { padding: 10px 12px; }
  .mp-hero-grid { grid-template-columns: 1fr; }
  .mp-hero-image { max-width: 430px; margin: 0 auto; }
  .mp-content-layout { grid-template-columns: 1fr; }
  .mp-sidebar { position: static; }
  .mp-related-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mp-index-explore-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .mp-container { width: min(100% - 24px, 1160px); }
  .mp-nav, .mp-nav-shell { min-height: 66px; }
  .mp-brand { font-size: 19px; }
  .mp-menu, .mp-site-nav { top: 62px; left: 10px; right: 10px; }
  .mp-page-hero { padding: 40px 0 30px; }
  .mp-page-hero h1 { font-size: 38px; line-height: 1.18; }
  .mp-lead { font-size: 19px; line-height: 1.78; }
  .mp-main { padding-top: 32px; }
  body.mp-site-page { font-size: 18px; line-height: 1.8; }
  .mp-content-section p, .mp-faq p, .mp-data-block p, .mp-reviews-block p { font-size: 18px; line-height: 1.8; margin-bottom: 20px; }
  .mp-content-section ul, .mp-content-section ol, .mp-faq ul, .mp-faq ol { font-size: 18px; line-height: 1.76; }
  .mp-content-section h2, .mp-faq h2, .mp-data-block h2, .mp-reviews-block h2 { font-size: 29px; }
  .mp-content-section h3, .mp-faq h3 { font-size: 23px; }
  .mp-article > section:not(.mp-faq-block) { margin-top: 52px; }
  .mp-article > section:first-child { margin-top: 0; }
  .mp-article > h2 { margin-top: 52px; }
  .mp-article h3 { margin-top: 38px; }
  .mp-faq-block { margin-top: 64px; padding-top: 34px; }
  .mp-faq-title { margin-bottom: 22px; font-size: 29px; line-height: 1.34; }
  .mp-faq-list { gap: 12px; }
  .mp-faq-question { padding: 18px 54px 18px 18px; font-size: 18px; line-height: 1.5; }
  .mp-faq-question::after { right: 16px; width: 30px; height: 30px; font-size: 23px; }
  .mp-faq-answer { padding: 17px 18px 2px; }
  .mp-faq-answer p { font-size: 18px; line-height: 1.8; margin-bottom: 17px; }
  .mp-table th, .mp-table td { font-size: 16px; line-height: 1.65; }
  .mp-content-section, .mp-faq, .mp-data-block, .mp-reviews-block { padding: 22px 18px; border-radius: 14px; }
  .mp-related-grid, .mp-index-explore-grid, .mp-footer-grid, .mp-footer-links { grid-template-columns: 1fr; }
  .mp-site-footer { padding-top: 34px; }
}
/* MULTIPAGE-SMART END */
