/* =====================================================================
   Shared site chrome — nav (with Products mega-menu) + footer.
   Loaded after styles.css so it can override .nav rules from v1.
   ===================================================================== */

/* === TOP BAR === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.site-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: var(--ink);
}
.site-nav-brand img { height: 38px; display: block; }
.sn-sep { width: 1px; height: 28px; background: var(--line); }
.sn-agent {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  color: var(--ink);
  white-space: nowrap;
}
.sn-agent small {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--ink-3);
  margin-top: 2px;
  white-space: nowrap;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav-links > a,
.site-nav-links .dropdown-trigger {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.site-nav-links > a:hover,
.site-nav-links .dropdown-trigger:hover,
.has-dropdown.is-open .dropdown-trigger { color: var(--blue); background: rgba(0,133,255,.06); }
.site-nav-links a.is-active,
.has-dropdown[data-nav].is-active .dropdown-trigger { color: var(--blue); }

.site-nav-cta {
  flex: 0 0 auto;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: filter .15s ease, transform .15s ease;
}
.site-nav-cta:hover { filter: brightness(0.95); color: #fff; transform: translateY(-1px); }

/* Burger button — hidden on desktop */
.site-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.site-nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav-burger.is-open span:nth-child(2) { opacity: 0; }
.site-nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.caret {
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.has-dropdown.is-open .caret { transform: rotate(180deg); }

/* === MEGA MENU === */
.has-dropdown { position: relative; }
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 76px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -16px rgba(20,30,40,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 70;
}
.has-dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 32px 40px;
}
.mega-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.mega-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.1;
}
.mega-sub {
  font-size: 15px;
  color: var(--ink-3);
  margin-top: 6px;
}
.mega-visit {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}
.mega-visit:hover { color: var(--blue-700); }

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 36px;
}
.mega-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background-color .12s ease;
}
.mega-col a:hover { background: rgba(0,133,255,.06); }
.mega-ico {
  width: 28px;
  height: 28px;
  color: var(--ink-3);
  flex: 0 0 auto;
}
.mega-col a:hover .mega-ico { color: var(--blue); }
.mega-col span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.mega-col strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}
.mega-col em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}

.mega-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 50%, var(--blue) 100%);
  border-radius: 18px;
  padding: 28px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
}
.mega-cta-eyebrow {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
}
.mega-cta-body {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin: 0;
}
.mega-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.85);
  background: transparent;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background-color .15s ease;
}
.mega-cta-btn:hover { background: rgba(255,255,255,.16); color: #fff; }

/* === Mobile nav (≤ 1024px) — bulletproof: display toggle, no transform === */
@media (max-width: 1024px) {
  .site-nav-cta { display: none !important; }
  .site-nav-burger { display: flex !important; }

  /* Keep the brand from pushing the burger off-screen on phones:
     let it shrink/wrap, cap its width so it never touches the burger,
     and guarantee the burger stays put & tappable. */
  .site-nav-inner { gap: 16px; }
  .site-nav-brand { flex: 0 1 auto; min-width: 0; gap: 10px; max-width: calc(100% - 56px); }
  .sn-agent { font-size: 14px; line-height: 1.15; min-width: 0; }
  .sn-agent small { white-space: normal; }
  .site-nav-burger { flex: 0 0 auto !important; margin-left: auto; }

  .site-nav-links {
    /* Closed: completely hidden. Open: full-screen overlay below header. */
    display: none !important;
    position: fixed !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - 76px) !important;
    background: #fff !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 16px 20px 56px !important;
    gap: 2px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    margin: 0 !important;
    border-top: 1px solid var(--line) !important;
    z-index: 90 !important;
  }
  .site-nav-links.is-mobile-open {
    display: flex !important;
  }

  /* Force every direct child to be a full-width block-style row */
  .site-nav-links > * {
    width: 100% !important;
    display: block !important;
    flex: 0 0 auto;
  }
  .site-nav-links > a,
  .site-nav-links .dropdown-trigger {
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: center !important;
    font-size: 18px !important;
    padding: 16px 14px !important;
    border-bottom: 1px solid var(--bg-2);
    border-radius: 0 !important;
  }
  .has-dropdown {
    position: static !important;
    width: 100% !important;
  }
  .has-dropdown .dropdown-trigger {
    justify-content: space-between !important;
  }
  /* Mega menu becomes inline expanded list */
  .mega-menu {
    position: static !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    width: 100%;
  }
  .has-dropdown.is-open .mega-menu {
    display: block !important;
  }
  .mega-inner { padding: 8px 0 12px !important; }
  .mega-header {
    padding-bottom: 10px !important;
    margin-bottom: 12px !important;
  }
  .mega-title { font-size: 18px !important; }
  .mega-sub { font-size: 13px !important; }
  .mega-grid { grid-template-columns: 1fr !important; gap: 2px !important; }
  .mega-col a {
    padding: 12px 10px !important;
  }
  .mega-col strong { font-size: 15px !important; }
  .mega-cta {
    margin-top: 12px !important;
    padding: 20px 22px !important;
    min-height: auto !important;
  }
  .mega-cta-eyebrow { font-size: 18px !important; }
}

/* === Reset old .nav so it doesn't double-stick === */
header.nav { display: none !important; }

/* === SHARED FOOTER === */
.site-foot {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 24px;
}
.site-foot .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 800px) { .site-foot .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-foot .footer-grid { grid-template-columns: 1fr; } }
.site-foot .footer-brand img { height: 38px; margin-bottom: 14px; }
.site-foot .footer-brand .agent-name {
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}
.site-foot .footer-brand p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 340px;
}
.site-foot h5 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  margin: 0 0 14px;
}
.site-foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-foot a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14.5px;
}
.site-foot a:hover { color: #fff; }
.site-foot li { font-size: 14.5px; color: rgba(255,255,255,.7); }

/* === Randy's Process — Why · How · What (dark themed) === */
.why-how-what {
  position: relative;
  background: #14171a;
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}
.why-how-what::before {
  /* Square grid texture, like the screenshot */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.why-how-what > .wrap { position: relative; z-index: 1; }
.why-how-what .section-head { margin-bottom: 56px; }

.whw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .whw-grid { grid-template-columns: 1fr; } }
.whw-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 36px 32px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.whw-bgno {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}
.whw-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.whw-label.why  { color: var(--yellow); }
.whw-label.how  { color: var(--cyan); }
.whw-label.what { color: var(--green); }
.whw-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
  max-width: 26ch;
}
.whw-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0;
  position: relative;
  z-index: 1;
}
.page-hero {
  position: relative;
  padding: 88px 0 64px;
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(0,133,255,.10), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(59,238,173,.18), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; display: block; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.page-hero .lede {
  margin-top: 18px;
  max-width: 58ch;
}

.prod-overview { padding: 80px 0; background: #fff; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .prod-grid { grid-template-columns: 1fr; } }
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: var(--ink);
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(0,133,255,.4);
}
.prod-card .pc-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,133,255,.10);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.prod-card .pc-ico svg { width: 26px; height: 26px; }
.prod-card.green .pc-ico { background: rgba(59,238,173,.18); color: #0a6f4a; }
.prod-card.orange .pc-ico { background: rgba(255,157,0,.14); color: #b06a00; }
.prod-card.cyan .pc-ico { background: rgba(112,235,255,.22); color: #006d8e; }
.prod-card.yellow .pc-ico { background: rgba(255,233,49,.30); color: #8a6a00; }
.prod-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.prod-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.prod-card .pc-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.prod-card:hover .pc-link { gap: 10px; }

/* =====================================================================
   PRODUCT DETAIL PAGE — Buffer-style hero (full color, info cards)
   ===================================================================== */
.pd-hero {
  position: relative;
  padding: 96px 0 88px;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}

/* === Theme variants — each product gets a different brand color === */
.pd-hero.theme-blue   { background: var(--blue);   color: #fff; }
.pd-hero.theme-green  { background: var(--green);  color: var(--ink); }
.pd-hero.theme-cyan   { background: var(--cyan);   color: var(--ink); }
.pd-hero.theme-yellow { background: var(--yellow); color: var(--ink); }
.pd-hero.theme-orange { background: var(--orange); color: #fff; }
.pd-hero.theme-dark   { background: var(--ink);    color: #fff; }

/* Light-themed heroes use dark text and dark info cards */
.pd-hero.theme-green .pd-info-card,
.pd-hero.theme-cyan .pd-info-card,
.pd-hero.theme-yellow .pd-info-card {
  background: rgba(20,23,24,0.08);
  border-color: rgba(20,23,24,0.14);
  color: var(--ink);
}
.pd-hero.theme-green .pd-info-card .label,
.pd-hero.theme-cyan .pd-info-card .label,
.pd-hero.theme-yellow .pd-info-card .label { color: rgba(20,23,24,0.62); }
.pd-hero.theme-green .pd-info-card .value,
.pd-hero.theme-cyan .pd-info-card .value,
.pd-hero.theme-yellow .pd-info-card .value { color: var(--ink); }
.pd-hero.theme-green .pd-info-card .sub,
.pd-hero.theme-cyan .pd-info-card .sub,
.pd-hero.theme-yellow .pd-info-card .sub { color: rgba(20,23,24,0.72); }
.pd-hero.theme-green .crumb,
.pd-hero.theme-cyan .crumb,
.pd-hero.theme-yellow .crumb { color: rgba(20,23,24,0.55); }
.pd-hero.theme-green .crumb a,
.pd-hero.theme-cyan .crumb a,
.pd-hero.theme-yellow .crumb a { color: rgba(20,23,24,0.7); }
.pd-hero.theme-green .crumb a:hover,
.pd-hero.theme-cyan .crumb a:hover,
.pd-hero.theme-yellow .crumb a:hover { color: var(--ink); }
.pd-hero.theme-green h1,
.pd-hero.theme-cyan h1,
.pd-hero.theme-yellow h1 { color: var(--ink); }
.pd-hero.theme-green h1 em,
.pd-hero.theme-cyan h1 em,
.pd-hero.theme-yellow h1 em { color: var(--blue); }
.pd-hero.theme-green .lede,
.pd-hero.theme-cyan .lede,
.pd-hero.theme-yellow .lede { color: rgba(20,23,24,0.75); }

/* Buttons on light themes */
.pd-hero.theme-green .btn-primary,
.pd-hero.theme-cyan .btn-primary,
.pd-hero.theme-yellow .btn-primary {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.pd-hero.theme-green .btn-primary:hover,
.pd-hero.theme-cyan .btn-primary:hover,
.pd-hero.theme-yellow .btn-primary:hover {
  background: #000; border-color: #000; color: #fff;
}
.pd-hero.theme-green .btn-outline,
.pd-hero.theme-cyan .btn-outline,
.pd-hero.theme-yellow .btn-outline {
  color: var(--ink); border-color: rgba(20,23,24,0.35);
}
.pd-hero.theme-green .btn-outline:hover,
.pd-hero.theme-cyan .btn-outline:hover,
.pd-hero.theme-yellow .btn-outline:hover {
  border-color: var(--ink); background: rgba(20,23,24,0.06); color: var(--ink);
}

/* Headline accent color per theme */
.pd-hero.theme-blue   h1 em { color: var(--yellow); }
.pd-hero.theme-orange h1 em { color: var(--ink); }
.pd-hero.theme-dark   h1 em { color: var(--cyan); }
.pd-hero.theme-green  h1 em { color: var(--blue); }
.pd-hero.theme-cyan   h1 em { color: var(--blue); }
.pd-hero.theme-yellow h1 em { color: var(--blue); }
.pd-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'><path d='M27 17 H29 V27 H39 V29 H29 V39 H27 V29 H17 V27 H27 Z' fill='%23ffffff' fill-opacity='0.08'/></svg>");
  background-size: 56px 56px;
  pointer-events: none;
}
.pd-hero::after {
  /* Soft radial highlight upper-right for depth */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(1000px 600px at 100% -10%, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}
.pd-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .pd-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.pd-hero .crumb {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pd-hero .crumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.pd-hero .crumb a:hover { color: #fff; }
.pd-hero .crumb-sep { opacity: .5; }
.pd-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: #fff;
}
.pd-hero h1 em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}
.pd-hero .lede {
  font-size: clamp(16px, 1.15vw, 18px);
  color: rgba(255,255,255,.92);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
}
.pd-hero .cta-row {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pd-hero .btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.pd-hero .btn-primary:hover { background: #f7da00; border-color: #f7da00; color: var(--ink); }
.pd-hero .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.pd-hero .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* INFO CARDS column */
.pd-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pd-info-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 22px 26px 24px;
  backdrop-filter: blur(8px);
}
.pd-info-card .label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.pd-info-card .value {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 6px;
}
.pd-info-card .sub {
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 900px) {
  .pd-hero { padding: 64px 0 64px; }
  .pd-hero-cards { flex-direction: column; }
}

/* Sections */
.pd-section { padding: 80px 0; }
.pd-section.alt { background: var(--bg-2); }
.pd-section h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}
.pd-section .lede { max-width: 70ch; }

/* Benefits grid (3 cols) */
.pd-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pd-benefits { grid-template-columns: 1fr; } }
.pd-benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.pd-benefit .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,133,255,.10);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.pd-benefit .ico svg { width: 24px; height: 24px; }
.pd-benefit h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.25;
}
.pd-benefit p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }

/* Value list (split layout — h2 left, numbered list right) */
.pd-value {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
@media (max-width: 900px) { .pd-value { grid-template-columns: 1fr; gap: 32px; } }
.pd-value ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  counter-reset: vstep;
}
.pd-value ol li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  counter-increment: vstep;
}
.pd-value ol li::before {
  content: counter(vstep, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  color: var(--blue);
  flex: 0 0 auto;
  width: 44px;
}
.pd-value ol li strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}
.pd-value ol li p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0; }

/* Policy options table */
.pd-policies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 800px) { .pd-policies { grid-template-columns: 1fr; } }
.pd-policy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pd-policy .tag {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  color: var(--blue);
}
.pd-policy h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.pd-policy p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin: 0; }
.pd-policy ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-policy ul li {
  font-size: 14.5px;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pd-policy ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex: 0 0 auto;
}

/* CTA band */
.pd-cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 60%, var(--blue) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pd-cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'><path d='M27 17 H29 V27 H39 V29 H29 V39 H27 V29 H17 V27 H27 Z' fill='%23ffffff' fill-opacity='0.32'/></svg>");
  background-size: 56px 56px;
  opacity: .6;
}
.pd-cta-band > .wrap { position: relative; z-index: 1; }
.pd-cta-band h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.pd-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,.92);
  max-width: 60ch;
  margin: 0 auto 28px;
}
.pd-cta-band .btn { backdrop-filter: blur(4px); }

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.about-section { padding: 96px 0; }
.about-section.alt { background: var(--bg-2); }
.about-section .eyebrow { margin-bottom: 14px; display: block; }
.about-section h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 22ch;
}
.about-section p { font-size: 17px; color: var(--ink-2); line-height: 1.65; margin: 0 0 16px; max-width: 65ch; }
.about-section h2 em { color: var(--blue); font-style: normal; }

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .about-process { grid-template-columns: 1fr; } }
.about-process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
}
.about-process-card .step-no {
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-process-card .step-word {
  font-family: var(--display);
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin: 6px 0 18px;
}
.about-process-card.why .step-word { color: var(--blue); }
.about-process-card.how .step-word { color: #0a6f4a; }
.about-process-card.what .step-word { color: var(--orange); }
.about-process-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.about-process-card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.mission-band {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.mission-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'><path d='M27 17 H29 V27 H39 V29 H29 V39 H27 V29 H17 V27 H27 Z' fill='%2370EBFF' fill-opacity='0.12'/></svg>");
  background-size: 56px 56px;
}
.mission-band > .wrap { position: relative; z-index: 1; }
.mission-band h2 { color: #fff; }
.mission-band h2 em { color: var(--cyan); }
.mission-band p { color: rgba(255,255,255,.85); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; gap: 40px; } }
.mission-charities {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mission-charity {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 24px 28px;
}
.mission-charity strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.mission-charity span {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.mission-stat {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
  margin: 0 0 8px;
}
.mission-stat-sub {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,.85);
}
