/*
Theme Name: Presspoint
Theme URI: https://presspointcrm.com
Author: Presspoint
Author URI: https://presspointcrm.com
Description: Custom standalone theme for Presspoint CRM. Full-width, block-editor compatible via theme.json. Designed for associations, nonprofits, and mission-driven organizations.
Version: 1.0.0
Requires at least: 6.3
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: presspoint
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --orange:      #ff6d3b;
  --orange-dark: #d94e1f;
  --orange-light:#fff0eb;
  --orange-mid:  #ffd5c4;
  --navy:        #0f1f3d;
  --navy-mid:    #1a3260;
  --yellow:      #f5d000;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-2:      #555555;
  --text-3:      #999999;
  --border:      #e5e5e5;
  --bg-2:        #f7f7f7;
  --r-sm:        6px;
  --r-md:        8px;
  --r-lg:        12px;
  --pad:         clamp(1.25rem, 4vw, 3rem);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.5;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

/* ============================================================
   LAYOUT SHELL — full width with controlled margins
   ============================================================ */
.site-wrapper {
  width: 100%;
  max-width: 100%;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container--narrow {
  max-width: 800px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.custom-logo-link {
       display: flex;
       align-items: center;
   }
   .custom-logo {
       height: 36px;
       width: auto;
       display: block;
   }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  width: 100%;
}
.nav-links a[aria-current="page"] {
  color: #fff;
}
.nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem var(--pad);
}
.nav-logo {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  margin-left: 1px;
  margin-bottom: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links .nav-account {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.nav-divider {
  width: .5px; height: 14px;
  background: rgba(255,255,255,.2);
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--orange);
  border-radius: var(--r-md);
  padding: 6px 14px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: all .2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 1rem var(--pad);
  gap: .75rem;
  border-top: .5px solid rgba(255,255,255,.1);
  list-style-type: none;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: .25rem 0;
}
.nav-mobile .nav-cta {
  display: inline-block;
  margin-top: .25rem;
  align-self: flex-start;
  padding: 6px 14px;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.s-navy  { background: var(--navy);  padding: 3.5rem var(--pad); }
.s-orange{ background: var(--orange);padding: 3.5rem var(--pad); }
.s-warm  { background: var(--orange-light); padding: 3.5rem var(--pad); border-top: .5px solid var(--orange-mid); border-bottom: .5px solid var(--orange-mid); }
.s-light { background: #fff; padding: 3.5rem var(--pad); border-bottom: .5px solid var(--border); }
.s-light:last-of-type { border-bottom: none; }
.s-grey  { background: var(--bg-2); padding: 3.5rem var(--pad); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pp-ba-card-people rect,
.pp-ba-card-revenue rect,
.pp-ba-card-engagement rect,
.pp-ba-card-visibility rect {
  transition: opacity .15s;
}
a:hover .pp-ba-card-people rect,
a:hover .pp-ba-card-revenue rect,
a:hover .pp-ba-card-engagement rect,
a:hover .pp-ba-card-visibility rect {
  opacity: .75;
}

/* ============================================================
   LABELS & TYPE
   ============================================================ */
.lbl       { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; }
.lbl-light { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.lbl-navy  { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); opacity: .6; margin-bottom: 1.25rem; }
.body-p    { font-size: 15px; color: var(--text-2); line-height: 1.75; max-width: 600px; margin-bottom: 1rem; }
.section-headline { font-size: clamp(22px, 3.5vw, 30px); font-weight: 500; color: var(--text); line-height: 1.2; letter-spacing: -.3px; margin-bottom: .75rem; }
.section-headline--light { color: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-orange      { background: var(--orange); color: #fff; font-size: 14px; font-weight: 500; padding: 11px 22px; border-radius: var(--r-md); border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background .15s; }
.btn-orange:hover{ background: var(--orange-dark); color: #fff; }
.btn-white       { background: #fff; color: var(--orange); font-size: 14px; font-weight: 500; padding: 11px 24px; border-radius: var(--r-md); border: none; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-ghost-light { font-size: 14px; color: rgba(255,255,255,.75); text-decoration: none; }
.btn-ghost-light:hover { color: #fff; }
.btn-support     { font-size: 13px; font-weight: 500; color: #fff; background: var(--orange); border-radius: var(--r-md); padding: 7px 16px; text-decoration: none; display: inline-block; border: none; cursor: pointer; }

/* ============================================================
   HERO — shared across all page templates
   ============================================================ */
.hero {
  padding: 4rem var(--pad);
  background: var(--navy);
  width: 100%;
}
.hero + .s-navy {
  padding-top: .03rem;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-inner.has-image { grid-template-columns: 1fr 1fr; }
.hero-content { display: flex; flex-direction: column; }
.hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .12em; color: var(--orange); text-transform: uppercase; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 500; line-height: 1.15; color: #fff; margin-bottom: 1.25rem; letter-spacing: -.5px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub { font-size: clamp(14px, 1.8vw, 16px); color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 1.5rem; max-width: 560px; }
.hero-sub p { margin-bottom: 1rem; }
.hero-sub p:last-child { margin-bottom: 0; }
.hero-sub em { color: var(--orange); font-style: normal; }
.hero-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.hero-checklist li { font-size: clamp(13px, 1.6vw, 15px); color: rgba(255,255,255,.8); display: flex; align-items: flex-start; gap: .5rem; line-height: 1.4; }
.hero-checklist li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: .05em; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem; }
.trust-pill { font-size: 11px; color: rgba(255,255,255,.75); border: .5px solid rgba(255,255,255,.2); border-radius: 99px; padding: 4px 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  border: .5px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner.has-image .pp-illustration {
  width: 100%;
  display: flex;
  align-items: center;
}
.hero-inner.has-image .pp-illustration {
  min-width: 0;
  width: 100%;
  align-self: center;
}

.hero-inner.has-image .pp-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}
.hero-inner.has-image .pp-illustration svg {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .75rem; padding: 2rem; text-align: center;
}
.hero-image-placeholder svg { opacity: .18; }
.hero-image-placeholder span { font-size: 12px; color: rgba(255,255,255,.3); font-style: italic; }
.hero + .trust-strip {
  margin-top: -2rem;
}
.home .hero {
  padding: 2.5rem var(--pad);
}

/* HOME - What makes it different — editorial split: text left, tiles right */
.diff-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: start; }
.diff-lead { font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; color: #fff; line-height: 1.25; letter-spacing: -.3px; margin-bottom: 1rem; }
.diff-intro {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.diff-intro--detail {
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
}
.diff-intro em {
  color: var(--orange);
  font-style: normal;
}
.diff-tiles { display: flex; flex-direction: column; gap: 1rem; }
.diff-tile { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.diff-tile-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px; background: #e6f1fb; display: flex; align-items: center; justify-content: center; }
.diff-tile-icon .dashicons { font-size: 20px; width: 20px; height: 20px; color: #0f1f3d; }
.diff-tile-title { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: .35rem; }
.diff-tile-body { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.6; }
@media (max-width: 900px) { .diff-layout { grid-template-columns: 1fr; gap: 2rem; } }

/* iOS Safari text color fix for navy section */
.diff-lead,
.diff-tile-title {
  -webkit-text-fill-color: #fff;
}

.diff-intro {
  -webkit-text-fill-color: rgba(255,255,255,.65);
}

.diff-intro--detail {
  -webkit-text-fill-color: rgba(255,255,255,.5);
}

.diff-tile-body {
  -webkit-text-fill-color: rgba(255,255,255,.65);
}

.diff-intro em {
  -webkit-text-fill-color: var(--orange);
}

/* ============================================================
   PAGE HEADERS — now alias to hero, kept for compat
   ============================================================ */
.page-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .12em; color: var(--orange); text-transform: uppercase; margin-bottom: 1rem; }
.hosted-note { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 580px; border-top: .5px solid rgba(255,255,255,.15); padding-top: .75rem; margin-top: .75rem; }
.hosted-note strong { color: rgba(255,255,255,.85); font-weight: 500; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.blog-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; background: var(--navy-mid); border-radius: var(--r-lg); overflow: hidden; border: .5px solid rgba(255,255,255,.08); margin-bottom: .5rem; }
.blog-featured-img { aspect-ratio: 16/9; background: var(--navy); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .5rem; }
.blog-featured-img-placeholder svg { opacity: .15; }
.blog-featured-content { padding: 2rem 2rem 2rem 0; }
.blog-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; border: .5px solid var(--border); display: flex; flex-direction: column; }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-2); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-card-img-placeholder svg { opacity: .2; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .6rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.blog-meta-cat { color: var(--orange); font-weight: 500; }
.blog-card-title { font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.3; margin-bottom: .6rem; text-decoration: none; display: block; }
.blog-card-title:hover { color: var(--orange); }
.blog-card-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.65; flex: 1; }
.blog-card-footer { margin-top: 1rem; }
.blog-read-more { font-size: 13px; font-weight: 500; color: var(--orange); text-decoration: none; }
.blog-read-more:hover { color: var(--orange-dark); }
.blog-featured-meta { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .75rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.blog-featured-cat { color: var(--orange); font-weight: 500; }
.blog-featured-title { font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: .75rem; text-decoration: none; display: block; }
.blog-featured-title:hover { color: var(--orange); }
.blog-featured-excerpt { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 1.25rem; }
.blog-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.blog-pagination a, .blog-pagination span { font-size: 13px; padding: 6px 14px; border-radius: var(--r-md); border: .5px solid var(--border); color: var(--text-2); text-decoration: none; }
.blog-pagination a:hover { border-color: var(--orange); color: var(--orange); }
.blog-pagination .current { background: var(--orange); color: #fff; border-color: var(--orange); }
.single-post-content { max-width: 760px; margin: 0 auto; padding: 3rem var(--pad); }
.single-post-content .entry-content { font-size: 16px; line-height: 1.8; color: var(--text-2); }
.single-post-content .entry-content h2 { font-size: 22px; font-weight: 500; color: var(--text); margin: 2rem 0 .75rem; }
.single-post-content .entry-content h3 { font-size: 18px; font-weight: 500; color: var(--text); margin: 1.5rem 0 .5rem; }
.single-post-content .entry-content p { margin-bottom: 1.25rem; }
.single-post-content .entry-content a { color: var(--orange); }
.single-post-content .entry-content img { border-radius: var(--r-md); margin: 1.5rem 0; }
.single-post-content .entry-content blockquote { border-left: 3px solid var(--orange); padding: .75rem 1.25rem; margin: 1.5rem 0; background: var(--orange-light); border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; color: var(--text); }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem var(--pad); border-top: .5px solid var(--border); max-width: 760px; margin: 0 auto; flex-wrap: wrap; }
.post-nav a { font-size: 13px; color: var(--orange); text-decoration: none; max-width: 45%; }
.post-nav a:hover { color: var(--orange-dark); }
.post-nav-label { display: block; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }

@media (max-width: 768px) {
  .hero-inner.has-image { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16/9; order: -1; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 1.5rem; }
}

/* ============================================================
   DIFFERENTIATORS — all-in-one
   ============================================================ */
.allinone { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.allinone-card { border-radius: var(--r-lg); padding: 1.5rem; background: var(--navy-mid); }
.allinone-card.full { grid-column: 1/-1; background: rgba(255,255,255,.07); border: .5px solid rgba(255,255,255,.12); }
.allinone-title { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.allinone-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.who-card { background: #fff; border-radius: var(--r-lg); padding: 1.25rem; border-top: 3px solid var(--navy); }
.who-card-type { font-size: 11px; font-weight: 500; color: var(--navy); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.who-card-pain { font-size: 13px; color: #444; line-height: 1.55; }
.who-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.who-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.who-card-list li::before {
  content: '\f147';
  font-family: dashicons;
  color: #ff6d3b;
  font-size: 16px;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1rem; padding: 1.5rem 0; border-bottom: .5px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { font-size: 12px; font-weight: 500; color: #fff; background: var(--orange); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; min-width: 26px; margin-top: 2px; }
.step-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   CLIENT PILLS
   ============================================================ */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.client-pill { background: #fff; border-radius: var(--r-md); padding: 12px 16px; border-left: 3px solid var(--orange); }
.client-pill strong { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.client-pill span { display: block; font-size: 11px; color: #888; }
.annotation { font-size: 12px; font-style: italic; color: var(--text-3); margin-top: 10px; }

/* ============================================================
   PLATFORM FEATURES GRID
   ============================================================ */
.included-head { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: baseline; margin-bottom: 2rem; border-top: 2px solid var(--navy); padding-top: 1.5rem; }
.included-head .lbl { margin-bottom: 0; }
.platform-intro { font-size: 16px; color: var(--text-2); line-height: 1.7; margin: 0; max-width: 640px; }
@media (max-width: 700px) { .included-head { grid-template-columns: 1fr; gap: .5rem; } }

.legend { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; margin: 0 0 1.75rem; padding: 0; font-size: 13px; color: var(--text-2); }
.legend li { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 10px; height: 10px; border-radius: 3px; display: inline-block; background: var(--text-3); }
.legend li[data-cluster="people"] .legend-dot { background: #ff6d3b; }
.legend li[data-cluster="revenue"] .legend-dot { background: #1FAD6D; }
.legend li[data-cluster="engagement"] .legend-dot { background: #f5d000; }
.legend li[data-cluster="visibility"] .legend-dot { background: #E0457B; }

.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feat-card { border: 1px solid var(--border); border-top: 4px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; background: #fff; scroll-margin-top: 100px; }
.feat-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-bottom: .6rem; background: var(--text-3); }
.feat-title { font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.feat-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* Hardcoded cluster colors — avoids CSS variable inheritance issues in Firefox/Safari (same pattern as platform page cluster cards) */
.feat-card[data-cluster="people"] { border-top-color: #ff6d3b; }
.feat-card[data-cluster="people"] .feat-dot { background: #ff6d3b; }
.feat-card[data-cluster="revenue"] { border-top-color: #1FAD6D; }
.feat-card[data-cluster="revenue"] .feat-dot { background: #1FAD6D; }
.feat-card[data-cluster="engagement"] { border-top-color: #f5d000; }
.feat-card[data-cluster="engagement"] .feat-dot { background: #f5d000; }
.feat-card[data-cluster="visibility"] { border-top-color: #E0457B; }
.feat-card[data-cluster="visibility"] .feat-dot { background: #E0457B; }

/* Reporting spotlight — full-width navy block below the grid */
.report-spotlight { background: var(--navy); border-radius: var(--r-lg); padding: 2.5rem; margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.report-spotlight h3 { color: #fff; font-size: 22px; margin: 0 0 .75rem; }
.report-spotlight p.desc { color: rgba(255,255,255,.65); font-size: 14.5px; line-height: 1.65; margin: 0; }
.report-sub { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; border-left: 2px solid rgba(255,255,255,.15); padding-left: 1.5rem; }
.report-sub li { color: rgba(255,255,255,.85); font-size: 13.5px; line-height: 1.5; padding-left: 1.3em; position: relative; }
.report-sub li::before { content: '\2713'; color: var(--orange); position: absolute; left: 0; font-weight: 700; }

/* ============================================================
   PARTNER BLOCK
   ============================================================ */
.partner-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.partner-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.3px;
}
.partner-content p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: .75rem;
  max-width: 480px;
}
.partner-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  border: .5px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.partner-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem;
  text-align: center;
}
.partner-image-placeholder svg { opacity: .2; }
.partner-image-placeholder span {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  font-style: italic;
}
@media (max-width: 768px) {
  .partner-block { grid-template-columns: 1fr; }
  .partner-image { aspect-ratio: 16/9; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: .5px solid var(--border); }
.faq-item:first-child { border-top: .5px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; font-size: 15px; font-weight: 500; color: var(--text); background: none; border: none; text-align: left; cursor: pointer; line-height: 1.4; }
.faq-q:hover { color: var(--orange); }
.faq-icon { font-size: 20px; color: var(--orange); min-width: 20px; line-height: 1; margin-top: 1px; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; font-size: 14px; color: var(--text-2); line-height: 1.75; padding-bottom: 1.1rem; max-width: 600px; }
.faq-item.open .faq-a { display: block; }
.faq-navy .faq-item { border-bottom-color: rgba(255,255,255,.12); }
.faq-navy .faq-item:first-child { border-top-color: rgba(255,255,255,.12); }
.faq-navy .faq-q { color: #fff; }
.faq-navy .faq-q:hover { color: var(--orange); }
.faq-navy .faq-a { color: rgba(255,255,255,.65); }

/* ============================================================
   CTA BLOCKS
   ============================================================ */
.cta-block { padding: 4rem var(--pad); text-align: center; }
.cta-block-inner { max-width: 700px; margin: 0 auto; }
.cta-block h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 500; color: #fff; margin-bottom: .75rem; letter-spacing: -.3px; }
.cta-block p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* ============================================================
   PLATFORM PAGE — feature groups
   ============================================================ */
.wp-callout { background: #f0f2f5 !important; border-left: 4px solid var(--orange); padding: 1.5rem var(--pad); display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 2.5rem; }
.wp-callout-icon { font-size: 18px; width: 36px; height: 36px; min-width: 36px; background: var(--navy); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wp-callout-text { font-size: 14px; color: #333; line-height: 1.7; }
.wp-callout-text strong { font-weight: 600; display: block; margin-bottom: .5rem; font-size: 15px; color: var(--navy); }
.wp-callout-icon .dashicons { font-size: 18px; width: 18px; height: 18px; color: #fff; }
.group { padding: 2.5rem var(--pad); border-bottom: .5px solid var(--border); }
.group-inner { max-width: 1200px; margin: 0 auto; }
.group-label { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; }
.group-title { font-size: clamp(18px, 3vw, 22px); font-weight: 500; color: var(--text); margin-bottom: .5rem; line-height: 1.25; }
.group-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 1.75rem; max-width: 600px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.feat { border: .5px solid var(--border); border-radius: var(--r-lg); padding: 1.1rem; background: #fff; }
.feat.featured { border-color: var(--orange); background: var(--orange-light); }
.feat-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.fav-tag { font-size: 10px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--orange-dark); background: #fff; border: .5px solid var(--orange); border-radius: 99px; padding: 1px 7px; }
.feat-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; }
.comparison { background: var(--navy); padding: 2.5rem var(--pad); }
.comparison-inner { border: .5px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 2rem; background: rgba(255,255,255,.05); max-width: 1200px; margin: 0 auto; }
.comparison h2,
.comparison h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 600; color: #fff; margin-bottom: 1rem; letter-spacing: -.2px; }
.comparison p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: .75rem; }
.comparison p:last-child { margin-bottom: 0; }
.comparison em {
  color: var(--orange);
  font-style: italic;
}
/* Platform page — Built on WordPress / Why not plugins, unified two-column section */
.split-section { background: var(--bg-2); padding: 3.5rem var(--pad); }
.split-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-left { padding-right: 3rem; border-right: 1px solid var(--border); }
.split-right { padding-left: 3rem; }
.split-icon { width: 32px; height: 32px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; margin-bottom: 1.1rem; }
.split-icon .dashicons { font-size: 16px; width: 16px; height: 16px; color: #fff; }
.split-left h3, .split-right h2 { color: var(--navy); font-size: 19px; font-weight: 600; margin: 0 0 1rem; letter-spacing: -.2px; line-height: 1.3; }
.split-left p, .split-right p { color: var(--text-2); font-size: 14px; line-height: 1.7; margin: 0 0 .9rem; }
.split-left p:last-child, .split-right p:last-child { margin-bottom: 0; }
.split-callout { font-size: 16px; font-weight: 600; color: var(--navy); margin: 1rem 0 0; padding-left: 1rem; border-left: 3px solid var(--orange); }
@media (max-width: 860px) {
  .split-inner { grid-template-columns: 1fr; }
  .split-left { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 2rem; margin-bottom: 2rem; }
  .split-right { padding-left: 0; }
}

/* Platform page — "Platform modules" header before the cluster cards */
.modules-intro-wrap { padding: 3.5rem var(--pad) 1.5rem; }
.modules-intro { max-width: 1200px; margin: 0 auto; }
.modules-intro .lbl { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .85rem; }
.modules-intro p { font-size: 15px; color: var(--text-2); line-height: 1.6; margin: 0; }

/* Platform page — cluster cards, capped to match homepage's contained width */
.modules-section { padding: 0 var(--pad); }
.cluster-card { max-width: 1200px; margin: 0 auto 1.5rem; border-radius: var(--r-lg); border: 0.5px solid var(--border); overflow: hidden; }
.cluster-card:last-of-type { margin-bottom: 2.5rem; }
.cluster-head { padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid; }
.cluster-head-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cluster-head-label { font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.cluster-head-sub { font-size: 12px; opacity: .7; margin-left: 4px; }

/* Hardcoded cluster colors — avoids CSS variable inheritance issues in Firefox/Safari */
.cluster-card[data-cluster="people"] .cluster-head { background: #fff3ef; border-color: #ff6d3b; }
.cluster-card[data-cluster="people"] .cluster-head-dot { background: #ff6d3b; }
.cluster-card[data-cluster="people"] .cluster-head-label,
.cluster-card[data-cluster="people"] .cluster-head-sub { color: #c94e20; }
.cluster-card[data-cluster="people"] .feat-pill.pop { border-color: #ff6d3b; background: #fff3ef; }
.cluster-card[data-cluster="people"] .pop-badge { background: #ffe0d4; color: #c94e20; }

.cluster-card[data-cluster="revenue"] .cluster-head { background: #edfaf4; border-color: #1FAD6D; }
.cluster-card[data-cluster="revenue"] .cluster-head-dot { background: #1FAD6D; }
.cluster-card[data-cluster="revenue"] .cluster-head-label,
.cluster-card[data-cluster="revenue"] .cluster-head-sub { color: #0f6e56; }
.cluster-card[data-cluster="revenue"] .feat-pill.pop { border-color: #1FAD6D; background: #edfaf4; }
.cluster-card[data-cluster="revenue"] .pop-badge { background: #c8f0e0; color: #0f6e56; }

.cluster-card[data-cluster="engagement"] .cluster-head { background: #fdf8e6; border-color: #c49800; }
.cluster-card[data-cluster="engagement"] .cluster-head-dot { background: #c49800; }
.cluster-card[data-cluster="engagement"] .cluster-head-label,
.cluster-card[data-cluster="engagement"] .cluster-head-sub { color: #854F0B; }
.cluster-card[data-cluster="engagement"] .feat-pill.pop { border-color: #c49800; background: #fdf8e6; }
.cluster-card[data-cluster="engagement"] .pop-badge { background: #faecc0; color: #854F0B; }

.cluster-card[data-cluster="visibility"] .cluster-head { background: #fceef4; border-color: #E0457B; }
.cluster-card[data-cluster="visibility"] .cluster-head-dot { background: #E0457B; }
.cluster-card[data-cluster="visibility"] .cluster-head-label,
.cluster-card[data-cluster="visibility"] .cluster-head-sub { color: #993556; }
.cluster-card[data-cluster="visibility"] .feat-pill.pop { border-color: #E0457B; background: #fceef4; }
.cluster-card[data-cluster="visibility"] .pop-badge { background: #f9d0e3; color: #993556; }
.cluster-body { padding: 0 1.5rem 2rem; }
.sub-group { padding: 2.5rem 0; border-top: 2px solid var(--border); }
.sub-group:first-child { border-top: none; padding-top: 1.5rem; }
.sub-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: .35rem; }
.sub-title { font-size: clamp(16px, 2vw, 19px); font-weight: 500; color: var(--text); margin-bottom: .3rem; line-height: 1.25; }
.sub-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 1rem; max-width: 640px; }
.feat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.feat-pill { background: var(--bg-2); border: 0.5px solid var(--border); border-radius: var(--r-md); padding: .75rem .9rem; }
.feat-pill.pop { border-width: 1.5px; border-color: var(--cluster-color); background: var(--cluster-bg); }
.feat-pill-name { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.feat-pill-desc { font-size: 12px; color: var(--text-2); line-height: 1.5; }
.pop-badge { font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; padding: 1px 6px; border-radius: 20px; margin-left: 5px; vertical-align: middle; background: var(--cluster-badge-bg); color: var(--cluster-color-dark); }

/* Comparison callout line */
.comparison-callout { font-size: 20px; font-weight: 600; color: #fff; margin: 1.25rem 0; padding-left: 1rem; border-left: 3px solid var(--orange); }

/* Tighten gap between modules and CTA */
.modules-section + .cta-block { padding-top: 2rem; }

@media (max-width: 768px) {
  .feat-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.stat { background: var(--navy-mid); border-radius: var(--r-lg); padding: 1.5rem 1.25rem; }
.stat-num { font-size: 30px; font-weight: 500; color: var(--orange); letter-spacing: -.5px; margin-bottom: 5px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.value-card { border-left: 3px solid var(--orange); padding: 1rem 1.25rem; background: #fff; border-radius: 0 var(--r-md) var(--r-md) 0; }
.value-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.value-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.team-card { border: .5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.team-photo { width: 100%; height: 200px; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-3); font-style: italic; border-bottom: .5px solid var(--border); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.25rem 1.5rem; }
.team-name { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.team-role { font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; margin-bottom: .75rem; }
.team-bio { font-size: 13px; color: var(--text-3); line-height: 1.65; font-style: italic; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.form-wrap { padding: 3rem var(--pad); }
.form-wrap-inner { max-width: 700px; margin: 0 auto; }
.form-row { margin-bottom: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.25rem; }
label { display: block; font-size: 12px; font-weight: 500; color: var(--text-2); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
label .req { color: var(--orange); margin-left: 2px; }
input[type=text],
input[type=email],
input[type=url],
textarea,
select {
  width: 100%;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  border: .5px solid #ccc;
  border-radius: var(--r-md);
  padding: 10px 12px;
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255,109,59,.1);
}
textarea { resize: vertical; min-height: 120px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; line-height: 1.5; }
.form-divider { border: none; border-top: .5px solid var(--border); margin: 2rem 0; }
.section-sublabel { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 1.25rem; }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.checkbox-item input[type=checkbox] { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; accent-color: var(--orange); }
.submit-row { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.btn-submit { background: var(--orange); color: #fff; font-size: 14px; font-weight: 500; padding: 12px 28px; border-radius: var(--r-md); border: none; cursor: pointer; }
.btn-submit:hover { background: var(--orange-dark); }
.submit-note { font-size: 12px; color: var(--text-3); line-height: 1.5; }
.trust-strip { background: var(--navy); padding: 1.5rem var(--pad); display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.trust-item { font-size: 12px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 6px; }
.trust-item::before { content: '✓'; color: var(--orange); }

.pauf-frame {
  max-width: 700px;
  margin: 0 auto;
}
.trust-strip {
  padding-left: calc(var(--pad) + ((100% - 1200px) / 2));
}

/* ============================================================
   DOCS PAGE
   ============================================================ */
.docs-header { background: var(--navy); padding: 1.25rem var(--pad) 0; border-bottom: 3px solid var(--orange); width: 100%; }
.docs-header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; gap: 1rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.docs-breadcrumb { font-size: 12px; color: rgba(255,255,255,.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.docs-breadcrumb span { color: rgba(255,255,255,.8); }
.docs-search { display: flex; align-items: center; background: rgba(255,255,255,.08); border: .5px solid rgba(255,255,255,.15); border-radius: var(--r-md); padding: 6px 12px; gap: 7px; max-width: 220px; flex: 1; }
.docs-search input { background: none; border: none; outline: none; font-size: 13px; color: #fff; width: 100%; }
.docs-search input::placeholder { color: rgba(255,255,255,.35); }
.docs-body { display: grid; grid-template-columns: 220px 1fr; min-height: 600px; max-width: 1200px; margin: 0 auto; }
.sidebar { border-right: .5px solid var(--border); background: var(--bg-2); padding: 1rem 0; overflow-y: auto; }
.sidebar-top-link { display: block; padding: 5px 1.25rem; font-size: 13px; color: var(--text-2); cursor: pointer; text-decoration: none; }
.sidebar-top-link:hover { color: var(--text); }
.sidebar-top-link.active { color: var(--orange); font-weight: 500; border-left: 2px solid var(--orange); padding-left: calc(1.25rem - 2px); }
.sidebar-divider { height: .5px; background: var(--border); margin: 6px 1.25rem; }
.sidebar-section { margin-bottom: 1px; }
.sidebar-group-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 6px 1.25rem; font-size: 11px; font-weight: 500; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; cursor: pointer; background: none; border: none; text-align: left; }
.sidebar-group-btn:hover { color: var(--text-2); }
.sidebar-chevron { font-size: 9px; transition: transform .15s; }
.sidebar-section.open .sidebar-chevron { transform: rotate(180deg); }
.sidebar-links { display: none; padding-bottom: 4px; }
.sidebar-section.open .sidebar-links { display: block; }
.sidebar-link { display: block; padding: 4px 1.25rem 4px 1.75rem; font-size: 13px; color: var(--text-2); cursor: pointer; text-decoration: none; }
.sidebar-link:hover { color: var(--text); }
.sidebar-link.active { color: var(--orange); font-weight: 500; border-left: 2px solid var(--orange); padding-left: calc(1.75rem - 2px); }
.doc-content { padding: 2rem; overflow-y: auto; }
.doc-notice { background: var(--orange-light); border-left: 3px solid var(--orange); border-radius: 0 var(--r-md) var(--r-md) 0; padding: .85rem 1rem; margin-bottom: 1.5rem; font-size: 13px; color: #7a3a1a; line-height: 1.65; }
.doc-notice strong { font-weight: 500; }
.doc-notice a { color: var(--orange-dark); }
.doc-h1 { font-size: 24px; font-weight: 500; color: var(--text); margin-bottom: .5rem; letter-spacing: -.3px; }
.doc-tagline { font-size: 14px; color: var(--text-3); margin-bottom: 1.25rem; font-style: italic; }
.doc-p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 1rem; max-width: 560px; }
.doc-h2 { font-size: 16px; font-weight: 500; color: var(--text); margin: 1.75rem 0 .75rem; padding-top: 1.25rem; border-top: .5px solid var(--border); }
.img-block { margin: 1rem 0; border: .5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.img-placeholder { background: var(--bg-2); padding: 1.25rem 1rem; display: flex; flex-direction: column; gap: 5px; }
.img-label { font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.img-filename { font-size: 12px; color: var(--orange); font-family: monospace; word-break: break-all; }
.img-alt { font-size: 12px; color: var(--text-3); font-style: italic; }
.checklist { display: flex; flex-direction: column; gap: 6px; margin: .75rem 0 1.25rem; }
.checklist-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; background: var(--bg-2); border-radius: var(--r-md); border: .5px solid var(--border); cursor: pointer; }
.checklist-item:hover { border-color: var(--orange); background: var(--orange-light); }
.check-num { font-size: 11px; font-weight: 500; color: #fff; background: var(--orange); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; min-width: 22px; margin-top: 1px; }
.check-text { font-size: 13px; color: var(--text); line-height: 1.5; }
.check-text span { font-size: 12px; color: var(--text-3); display: block; margin-top: 1px; }
.doc-support { background: var(--navy); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.75rem; }
.doc-support-title { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 5px; }
.doc-support-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: .75rem; }
.docs-mobile-nav-btn { display: none; align-items: center; gap: 8px; font-size: 13px; color: var(--orange); background: var(--bg-2); border: .5px solid var(--border); border-radius: var(--r-md); padding: 8px 12px; cursor: pointer; margin: 1rem var(--pad) 0; width: fit-content; border-top: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-logo .custom-logo {
       height: 28px;
       width: auto;
       display: block;
   }
.site-footer { background: var(--navy); padding: 2.5rem var(--pad); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; border-bottom: .5px solid rgba(255,255,255,.1); padding-bottom: 1.5rem; margin-bottom: 1.25rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-brand { display: flex; flex-direction: column; gap: .5rem; max-width: 240px; }
.footer-logo { font-size: 15px; font-weight: 500; color: #fff; display: flex; align-items: center; text-decoration: none; }
.footer-logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); display: inline-block; margin-left: 1px; margin-bottom: -1px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.55; }
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-col-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; }
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; max-width: 1200px; margin: 0 auto; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-policy { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-policy:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   WORDPRESS BLOCK EDITOR OVERRIDES
   ============================================================ */
.wp-block-group { width: 100%; }
.wp-block-cover { width: 100%; }
.alignfull { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.entry-content > * { max-width: 800px; margin-left: auto; margin-right: auto; padding-left: var(--pad); padding-right: var(--pad); }
.entry-content > .alignfull,
.entry-content > .alignwide { max-width: none; padding-left: 0; padding-right: 0; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 768px) {
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .allinone      { grid-template-columns: 1fr; }
  .allinone-card.full { grid-column: 1; }
  .who-grid      { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .report-spotlight { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
  .report-sub    { border-left: none; padding-left: 0; border-top: 2px solid rgba(255,255,255,.15); padding-top: 1.25rem; }
  .clients-grid  { grid-template-columns: 1fr 1fr; }
  .feature-grid  { grid-template-columns: 1fr; }
  .stat-row      { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .form-row-2    { grid-template-columns: 1fr; }
  .docs-body     { grid-template-columns: 1fr; }
  .sidebar       { display: none; border-right: none; border-bottom: .5px solid var(--border); }
  .sidebar.mobile-open { display: block; }
  .docs-mobile-nav-btn { display: flex; }
  .footer-inner  { flex-direction: column; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .who-grid      { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: 1fr; }
  .stat-row      { grid-template-columns: 1fr; }
}

.form-wrap-inner p {
  margin-bottom: 1rem;
}
.form-wrap-inner p:last-of-type {
  margin-bottom: 0;
}

/* Presspoint form submit button override */
input.pp-button,
.pp-button {
  background: var(--orange) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 11px 22px !important;
  border-radius: var(--r-md) !important;
  border: none !important;
  cursor: pointer !important;
  transition: background .15s !important;
}

input.pp-button:hover,
.pp-button:hover {
  background: var(--orange-dark) !important;
}

.pp-form-thanks {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem var(--pad);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
}

/* Legal page list styling */
.entry-content ol { 
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.entry-content ol ol { 
  list-style-type: lower-alpha;
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.entry-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.entry-content li {
  margin-bottom: .5rem;
  line-height: 1.7;
  font-size: 15px;
  color: var(--text-2);
}
/* Restore paragraph spacing in all WP content areas */
.entry-content p {
  margin-bottom: 1rem;
}
.entry-content p:last-child {
  margin-bottom: 0;
}

/* Platform CTA — solid orange button */
.modules-section + .cta-block .btn-white { background: var(--orange); color: #fff; }
.modules-section + .cta-block .btn-white:hover { background: #e55a28; }



/* ============================================================
   LOGIN PAGE AND FORM — match Presspoint native form to theme styling
   ============================================================ */
   
   /* Login page: don't force full-viewport height on sparse content */
   .pp-body-login .site-wrapper {
     min-height: auto;
   }
   
   .pp-login-intro {
     text-align: center;
     padding: 3rem var(--pad) 1rem;
   }
   
   .pp-login-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 56px;
     height: 56px;
     border-radius: 14px;
     background: #eef0f6;
     color: var(--navy);
     font-size: 26px;
     margin-bottom: 1.25rem;
   }
   
   .pp-login-intro h1 {
     font-size: clamp(26px, 4vw, 34px);
     font-weight: 500;
     color: var(--navy);
     margin-bottom: 0.5rem;
   }
   
   .pp-login-intro p {
     color: var(--text-muted, #555);
     font-size: 16px;
     max-width: 420px;
     margin: 0 auto;
   }

/* Password wrapper — full width, styled like email field */
body .pp-show-password-holder,
#paupanel .pp-show-password-holder,
.pauf-frame .pp-show-password-holder {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #eef0f6 !important;
  border: 1.5px solid #d0d5e8 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Password input */
body .pp-show-password-holder input,
body .pp-show-password-holder .pp-text-input,
#paupanel .pp-show-password-holder input,
.pauf-frame .pp-show-password-holder input {
  flex: 1 !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  color: #1a1a1a !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}

/* Eye icon — inside field */
body .pp-show-password-holder a,
#paupanel .pp-show-password-holder a,
.pauf-frame .pp-show-password-holder a {
  flex-shrink: 0 !important;
  padding: 0 12px !important;
  color: #666 !important;
  text-decoration: none !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  position: static !important;
  float: none !important;
  margin: 0 !important;
}

/* Login button — solid orange */
body #pp-login-form input[type="submit"],
body .pauf-frame input[type="submit"],
body #paupanel input[type="submit"],
body .pp-submit-btn {
  background: #ff6d3b !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 11px 28px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
}

body #pp-login-form input[type="submit"]:hover,
body .pauf-frame input[type="submit"]:hover {
  background: #e55a28 !important;
}

/* Email field and all login text inputs */
body #pp-login-form .pp-text-input,
body #pp-login-form input[type="text"],
body #pp-login-form input[type="email"],
#paupanel #pp-login-form input[type="text"],
#paupanel #pp-login-form input[type="email"] {
  display: block !important;
  width: 100% !important;
  background: #eef0f6 !important;
  border: 1.5px solid #d0d5e8 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  color: #1a1a1a !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
}

body #pp-login-form .pp-text-input:focus,
body #pp-login-form input[type="text"]:focus,
body #pp-login-form input[type="email"]:focus {
  border-color: #ff6d3b !important;
  background: #fff !important;
}

/* Password field background to match */
body .pp-show-password-holder,
#paupanel .pp-show-password-holder {
  background: #eef0f6 !important;
  border: 1.5px solid #d0d5e8 !important;
}

/* Broader catch for email/text inputs in login form — Firefox/Safari */
body #paupanel input[type="text"],
body #paupanel input[type="email"],
body #paupanel input[type="password"],
body .pauf-press input[type="text"],
body .pauf-press input[type="email"],
body .pauf-press input[type="password"],
body ul.paupress input[type="text"],
body ul.paupress input[type="email"],
body ul.paupress input[type="password"] {
  background: #eef0f6 !important;
  border: 1.5px solid #d0d5e8 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

body #paupanel input[type="text"]:focus,
body #paupanel input[type="email"]:focus,
body .pauf-press input[type="text"]:focus,
body .pauf-press input[type="email"]:focus {
  background: #fff !important;
  border-color: #ff6d3b !important;
  outline: none !important;
}

/* Safari autofill background override */
body #paupanel input:-webkit-autofill,
body #paupanel input:-webkit-autofill:hover,
body #paupanel input:-webkit-autofill:focus,
body .pauf-press input:-webkit-autofill,
body .pauf-press input:-webkit-autofill:hover,
body .pauf-press input:-webkit-autofill:focus,
body ul.paupress input:-webkit-autofill,
body ul.paupress input:-webkit-autofill:hover,
body ul.paupress input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #eef0f6 inset !important;
  box-shadow: 0 0 0px 1000px #eef0f6 inset !important;
  -webkit-text-fill-color: #1a1a1a !important;
  border: 1.5px solid #d0d5e8 !important;
  border-radius: 8px !important;
}

/* Safari — force email field background via span wrapper */
body #paupanel .paupress-field span input:not([type="checkbox"]):not([type="radio"]),
body .pauf-press .paupress-field span input:not([type="checkbox"]):not([type="radio"]),
body #paupanel .paupress-field > span > input:not([type="checkbox"]):not([type="radio"]) {
  background-color: #eef0f6 !important;
  border: 1.5px solid #d0d5e8 !important;
  border-radius: 8px !important;
  -webkit-appearance: none !important;
}

/* Eye icon — better positioning and sizing */
body .pp-show-password-holder a,
#paupanel .pp-show-password-holder a,
.pauf-frame .pp-show-password-holder a {
  flex-shrink: 0 !important;
  padding: 0 14px 0 8px !important;
  color: #888 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  float: none !important;
  margin: 0 !important;
  font-size: 14px !important;
  opacity: 0.6 !important;
}

body .pp-show-password-holder a img,
body .pp-show-password-holder a svg {
  width: 18px !important;
  height: 18px !important;
}

/* Fix divider line between password input and eye icon */
body .pp-show-password-holder input.pp-text-inline,
#paupanel .pp-show-password-holder input.pp-text-inline {
  border-right: none !important;
  margin-right: 0 !important;
  border-radius: 8px 0 0 8px !important;
}

body a.paupress-show-password-inline,
#paupanel a.paupress-show-password-inline,
body .paupress-show-password-inline {
  border-left: none !important;
  border: none !important;
  background: transparent !important;
  padding: 0 14px 0 8px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  opacity: 0.5 !important;
  flex-shrink: 0 !important;
  position: static !important;
  float: none !important;
}

/* Restore eye icon visibility */
body a.paupress-show-password-inline,
#paupanel a.paupress-show-password-inline,
body .paupress-show-password-inline {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  padding: 0 12px !important;
  color: #666 !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  align-items: center !important;
}

/* Remove clipping radius from input so eye shows */
body .pp-show-password-holder input.pp-text-inline,
#paupanel .pp-show-password-holder input.pp-text-inline {
  border-radius: 6px 0 0 6px !important;
  border-right: none !important;
}

/* Ensure wrapper doesn't clip */
body .pp-show-password-holder,
#paupanel .pp-show-password-holder {
  overflow: visible !important;
  border-radius: 8px !important;
}

/* Eye icon — complete rewrite, position absolute inside wrapper */
body .pp-show-password-holder,
#paupanel .pp-show-password-holder {
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  background: #eef0f6 !important;
  border: 1.5px solid #d0d5e8 !important;
  border-radius: 8px !important;
}

body .pp-show-password-holder input.pp-text-inline,
#paupanel .pp-show-password-holder input.pp-text-inline {
  flex: 1 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 12px 44px 12px 16px !important;
  width: 100% !important;
}

body a.paupress-show-password-inline,
#paupanel a.paupress-show-password-inline,
body .paupress-show-password-inline {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 0.6 !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  font-size: 16px !important;
  color: #444 !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 1 !important;
}

/* Replace paupress eye icon with Dashicons eye */
body a.paupress-show-password-inline::before,
#paupanel a.paupress-show-password-inline::before {
  font-family: dashicons !important;
  content: '\f177' !important;
  font-size: 18px !important;
  color: #666 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1 !important;
}

/* Hide whatever paupress renders inside the anchor */
body a.paupress-show-password-inline *,
#paupanel a.paupress-show-password-inline * {
  display: none !important;
}

/* Eye icon toggle states using paupress .off/.on classes */
body a.paupress-show-password-inline.off::before,
#paupanel a.paupress-show-password-inline.off::before {
  content: '\f530' !important; /* dashicons-hidden — crossed eye */
}

body a.paupress-show-password-inline.on::before,
#paupanel a.paupress-show-password-inline.on::before {
  content: '\f177' !important; /* dashicons-visibility — open eye */
}

/* paupress adds 'on' class on top of 'off' when toggled — target both states */
body a.paupress-show-password-inline.off:not(.on)::before,
#paupanel a.paupress-show-password-inline.off:not(.on)::before {
  content: '\f530' !important; /* dashicons-hidden */
}

body a.paupress-show-password-inline.on::before,
#paupanel a.paupress-show-password-inline.on::before {
  content: '\f177' !important; /* dashicons-visibility */
}

/* Remove inner field border on focus */
body .pp-show-password-holder:focus-within,
#paupanel .pp-show-password-holder:focus-within {
  border-color: #ff6d3b !important;
  background: #fff !important;
}

body .pp-show-password-holder:focus-within input,
#paupanel .pp-show-password-holder:focus-within input {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Force remove all borders from the input inside password wrapper */
body .pp-show-password-holder input,
body .pp-show-password-holder input[type="password"],
body .pp-show-password-holder input[type="text"],
#paupanel .pp-show-password-holder input,
#paupanel .pp-show-password-holder input[type="password"],
#paupanel .pp-show-password-holder input[type="text"],
.pauf-frame .pp-show-password-holder input {
  border: none !important;
  border-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Keep password wrapper background consistent — no white on focus */
body .pp-show-password-holder:focus-within,
#paupanel .pp-show-password-holder:focus-within,
body .pp-show-password-holder:focus,
#paupanel .pp-show-password-holder:focus {
  background: #eef0f6 !important;
}

/* Ensure input background stays transparent at all times */
body .pp-show-password-holder input:focus,
body .pp-show-password-holder input:active,
body .pp-show-password-holder input[type="text"],
body .pp-show-password-holder input[type="password"],
#paupanel .pp-show-password-holder input:focus,
#paupanel .pp-show-password-holder input:active {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
