/* =========================================================
   SHARED PAGE DESIGN SYSTEM
   Extracted directly from the existing home + about-us styles
   so every inner page matches them exactly.

   PALETTE — only two brand colours:
     var(--navy)   #0e1a33
     var(--green)  #7BC400
   Neutrals already defined in style.css:
     --white --black --text-dark --paragraph-gray --divider

   TYPE — Montserrat only (no Oswald anywhere):
     banner title   56px / 800 / lh 1.08 / ls -1.4px
     section head   32px / 800 / ls -.3px
     eyebrow        13px / 700 / ls 1.5px / uppercase / green
     body           14px / 400 / lh 1.75 / paragraph-gray
     card title     16px / 700
     small label    13px / 600 / text-dark

   ICONS — one size everywhere: 18px x 18px, green.
   ========================================================= */


/* ---------------------------------------------------------
   PAGE BANNER
   These rules previously lived ONLY in about.css, which the new
   pages don't load — so their inline SVGs rendered unsized and
   blew up to fill the whole hero. Ported here so every inner
   page gets the same banner as About Us.
   --------------------------------------------------------- */

.page-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 58vh;
}

.page-banner .hero-background {
  background-size: cover;
  background-position: center center;
}

.page-banner .hero-container {
  display: block;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.page-banner-inner {
  padding-bottom: 100px;
  max-width: 680px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.page-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-banner-eyebrow-icon {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.page-banner-eyebrow-line {
  width: 64px;
  height: 2px;
  background: var(--green);
}

.page-banner-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: var(--white);
  margin: 0 0 12px;
}

.page-banner-title .highlight { color: var(--green); }

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-nav a { color: var(--white); transition: color .2s ease; }
.breadcrumb-nav a:hover { color: var(--green); }

.breadcrumb-sep {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.breadcrumb-current { color: var(--green); }

/* ---------------------------------------------------------
   SAFETY NET — an inline <svg> with no width/height will
   stretch to fill its container. Every icon on these pages is
   18px unless a rule says otherwise, so nothing can blow up
   again if a class name is ever mistyped.
   --------------------------------------------------------- */

.pg-section svg,
.pg-trust svg,
.page-banner svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* explicit exceptions, kept in sync with the rules above */
.page-banner .page-banner-eyebrow-icon { width: 22px; height: 22px; }
.page-banner .breadcrumb-sep { width: 14px; height: 14px; }

/* ---------- layout ---------- */

.pg-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.pg-section { padding: 72px 0; }
.pg-section--tight { padding: 52px 0; }
.pg-section--light { background: #f6f8fa; }
.pg-section--navy { background: var(--navy); color: var(--white); }

/* ---------- headings ---------- */

.pg-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 6px;
}

.pg-heading {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: -.3px;
  color: var(--black);
  margin: 12px 0 14px;
}

.pg-heading--lg { font-size: 34px; }
.pg-heading--center { text-align: center; }

.pg-section--navy .pg-heading { color: var(--white); }

/* the site-wide accent span used inside headings */
.pg-heading .highlight,
.page-banner-title .highlight { color: var(--green); }

.pg-text {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--paragraph-gray);
  margin: 0 0 16px;
}

.pg-section--navy .pg-text { color: rgba(255, 255, 255, 0.65); }

.pg-section-head {
  max-width: 640px;
  margin: 0 0 34px;
}

.pg-section-head.pg-heading--center,
.pg-section-head--center {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}

.pg-empty {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--paragraph-gray);
  text-align: center;
  padding: 32px 0;
}

/* ---------- banner shared bits ---------- */

.page-banner-sub {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 0 4px;
}

.pg-banner-eyebrow {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 8px;
}

/* ---------- banner promise strip ---------- */

.pg-promise-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: var(--green);
  margin: 0;
}

.pg-promise-desc {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: var(--green);
  margin: 0;
}

/* the whole promise block reads green on the dark banner */
.pg-feature.rsp-promise .pg-feature-text span,
.pg-feature.loc-promise .pg-feature-text span,
.pg-feature.rsp-promise strong,
.pg-feature.loc-promise strong { color: var(--green); }

/* ---------- check list (identical spec to style.css) ---------- */

.pg-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pg-check-item,
.pg-check-list > li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* bare <li> children need the same type + icon treatment */
.pg-check-list > li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

.pg-check-list > li > .pg-check-icon { width: 18px; height: 18px; }

.pg-check-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* the safety-net svg rule must never shrink a check icon */
.pg-check-item .pg-check-icon { width: 18px; height: 18px; }

.pg-check-item span,
.pg-check-item a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
}

.pg-check-item a:hover { color: var(--green); }

.pg-section--navy .pg-check-item span,
.pg-section--navy .pg-check-item a { color: var(--white); }

/* ---------- icon tiles ---------- */

.pg-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.pg-icon-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
}

.pg-icon-badge svg { width: 18px; height: 18px; color: var(--green); }

.pg-icon-badge--light {
  background: rgba(123, 196, 0, .12);
}

.pg-icon-badge--light svg { color: var(--green); }

.pg-icon-badge--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ---------- feature row (icon + title + text) ---------- */

.pg-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pg-feature-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.pg-feature-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--black);
  margin: 0;
}

.pg-feature-desc {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.65;
  color: var(--paragraph-gray);
  margin: 0;
}

.pg-section--navy .pg-feature-title { color: var(--white); }
.pg-section--navy .pg-feature-desc { color: rgba(255, 255, 255, 0.65); }

/* ---------- cards ---------- */

.pg-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--green);
}

.pg-card-body { padding: 18px 20px 22px; }

.pg-card-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--black);
  margin: 0 0 8px;
}

.pg-card-text {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.65;
  color: var(--paragraph-gray);
  margin: 0;
}

/* ---------- media ---------- */

.pg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.pg-img--framed {
  border: 1px solid var(--divider);
  box-shadow: var(--card-shadow);
}

.pg-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: var(--card-shadow);
}

.pg-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- chips ---------- */

.pg-chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pg-chip {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  background: #f6f8fa;
  border: 1px solid var(--divider);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
}

.pg-chip:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ---------- trust strip (used on every inner page) ---------- */

.pg-trust { padding: 44px 0; }

.pg-trust-inner {
  display: grid;
  grid-template-columns: repeat(var(--pg-trust-cols, 4), 1fr);
  gap: 18px;
}

/* each item is now a real card rather than a bare row divided by a line */
.pg-trust-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 20px 18px;
  border: 1px solid var(--divider);
  border-radius: 12px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pg-trust-item:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 8px 22px rgba(14, 26, 51, .09);
}

/* on the navy band the cards go translucent instead of white */
.pg-section--navy .pg-trust-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.pg-section--navy .pg-trust-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--green);
  box-shadow: none;
}

/* cards carry their own full border now — no separator lines */

/* ---------- 2-column split ---------- */

.pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ---------- responsive ---------- */

@media (max-width: 1200px) {
  .pg-trust-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .pg-section { padding: 56px 0; }
  .pg-section--tight { padding: 42px 0; }
  .pg-split { grid-template-columns: 1fr; gap: 32px; }
  .pg-heading { font-size: 28px; }
  .pg-heading--lg { font-size: 30px; }
  .pg-trust-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pg-container { padding: 0 16px; }
  .pg-section { padding: 44px 0; }
  .pg-heading { font-size: 24px; }
  .pg-heading--lg { font-size: 26px; }
  .pg-trust-inner { grid-template-columns: 1fr; }
}
