/* ============================================================
   Packagly — shared page chrome (hero, breadcrumb, placeholder,
   section heads, buttons, CTA band).  Used by inner pages.
   Depends on: common.css
   ============================================================ */

/* ---- dark centered hero (sits behind the sticky navbar) ---- */
.phead {
  position: relative;
  margin-top: -85px;
  padding: 125px 0 56px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, #0b2316 0%, #061a11 55%, #04130c 100%);
  overflow: hidden;
  isolation: isolate;
}
.pcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--white-50);
}
.pcrumb a {
  color: var(--white-70);
  transition: color 0.2s ease;
}
.pcrumb a:hover {
  color: var(--green);
}
.pcrumb .sep {
  opacity: 0.6;
}
.pcrumb .current {
  color: var(--green);
  font-weight: 600;
}
.phead-title {
  margin: 0 auto 12px;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #fff;
  max-width: 900px;
}
.phead-title .accent {
  color: var(--green);
}
.phead-sub {
  margin: 0 auto;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-70);
}

/* ---- image placeholder ---- */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e7eae5;
  border: 1px solid #dde2db;
  border-radius: 12px;
  color: #aab2a8;
  min-height: 180px;
}
.ph img {
  width: 38px;
  height: 38px;
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(74%) sepia(6%) saturate(250%) hue-rotate(60deg) brightness(95%);
}
.ph span {
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* ---- section scaffolding ---- */
.sec {
  padding: 64px 0;
}
.sec-light {
  background: #f4f6f4;
}
.sec-white {
  background: #fff;
}
.sec-dark {
  background: radial-gradient(ellipse at 50% 0%, #0b2316 0%, #061a11 60%, #04130c 100%);
  color: #fff;
}
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 38px;
}
.sec-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.sec-overline::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.sec-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.3px;
  color: #15241b;
}
.sec-dark .sec-title {
  color: #fff;
}
.sec-title .accent {
  color: var(--green);
}
.sec-sub {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #5d6b62;
}
.sec-dark .sec-sub {
  color: var(--white-70);
}

/* ---- buttons ---- */
.btn-g,
.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 10px;
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.btn-g {
  background: var(--green);
  color: #fff;
}
.btn-g:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #fff;
}
.btn-o {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-o:hover {
  background: #fff;
  color: #15241b;
  transform: translateY(-2px);
}

/* ---- bottom CTA band ---- */
.cta-band {
  background: radial-gradient(ellipse at 50% 0%, #0b2316 0%, #061a11 60%, #04130c 100%);
  padding: 48px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band-title {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.cta-band-title .accent {
  color: var(--green);
}
.cta-band-sub {
  margin: 0;
  font-size: 14px;
  color: var(--white-70);
  max-width: 380px;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- pill tag ---- */
.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--green);
  color: #fff;
}

@media (max-width: 767.98px) {
  .phead {
    padding: 110px 0 44px;
  }
  .sec {
    padding: 48px 0;
  }
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.btn-g img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
