/* =============================================
   Revenue Cues - Main Stylesheet v23
   Single source of truth. No duplicate overrides.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =============================================
   Reset & Base
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #111827;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }


/* =============================================
   Layout utilities
   ============================================= */

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}
.max-w-3xl  { max-width: 48rem; }
.max-w-4xl  { max-width: 56rem; }
.max-w-5xl  { max-width: 64rem; }
.max-w-6xl  { max-width: 72rem; }
.max-w-7xl  { max-width: 80rem; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.space-y-4  > * + * { margin-top: 1rem; }
.space-y-6  > * + * { margin-top: 1.5rem; }
.space-y-8  > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }


/* =============================================
   Typography
   ============================================= */

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: #111827; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem,   4vw, 2.75rem); }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { color: #4B5563; line-height: 1.8; font-size: 1rem; }


/* =============================================
   Section backgrounds
   ============================================= */

.section-white       { background-color: #ffffff; }
.section-gray        { background-color: #F8F9FA; }
.section-gray-strong { background-color: #EEF1F6; }
.section-dark        { background-color: #111827; }


/* =============================================
   Section vertical spacing
   ============================================= */

.py-section    { padding-top: 6rem;  padding-bottom: 6rem;  }
.py-section-lg { padding-top: 8rem;  padding-bottom: 8rem;  }

@media (max-width: 767px) {
  .py-section    { padding-top: 4rem;  padding-bottom: 4rem;  }
  .py-section-lg { padding-top: 5rem;  padding-bottom: 5rem;  }
}


/* =============================================
   Buttons
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary       { background-color: #000000; color: #ffffff; padding: 0.875rem 2rem; }
.btn-primary:hover { background-color: #1f2937; color: #ffffff; transform: translateY(-1px); }
.btn-sm            { padding: 0.625rem 1.25rem; font-size: 0.9375rem; }
.btn-lg            { padding: 1.125rem 2.5rem;  font-size: 1.125rem; }
.btn .arrow-icon   { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

/* Mobile: full-width buttons in main content and footer */
@media (max-width: 767px) {
  .site-main .btn,
  .site-main .pk-br-btn-primary,
  .site-footer .btn,
  .site-footer .pk-br-btn-primary,
  .hero-cta > .btn,
  .hero-cta > a.btn,
  .final-cta-box .btn,
  .page-hero .btn,
  .cta-row .btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
    align-self: stretch;
  }

  .site-main .btn .btn-label,
  .site-main .pk-br-btn-primary .btn-label,
  .site-footer .btn .btn-label,
  .site-footer .pk-br-btn-primary .btn-label {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

  .site-main .btn .arrow-icon,
  .site-main .pk-br-btn-primary .arrow-icon,
  .site-footer .btn .arrow-icon,
  .site-footer .pk-br-btn-primary .arrow-icon {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .hero-cta {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }

  .hero-cta > .btn,
  .hero-cta > a.btn {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Mobile label swap via data attribute */
@media (max-width: 767px) {
  .btn[data-mobile-label] .btn-label,
  .pk-br-btn-primary[data-mobile-label] .btn-label {
    font-size: 0;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
  }
  .btn[data-mobile-label] .btn-label::after,
  .pk-br-btn-primary[data-mobile-label] .btn-label::after {
    content: attr(data-mobile-label);
    font-size: 0.9375rem;
    color: inherit;
  }
  .btn-lg[data-mobile-label] .btn-label::after {
    font-size: 1rem;
  }
  /* Explicitly force white text on primary button mobile labels */
  .btn-primary[data-mobile-label] .btn-label::after,
  .btn-primary .btn-label::after {
    color: #ffffff;
  }
  .pk-br-btn-primary[data-mobile-label] .btn-label::after,
  .pk-br-btn-dark[data-mobile-label] .btn-label::after {
    color: #ffffff;
  }
}


/* =============================================
   Pills
   ============================================= */

.authority-pill {
  display: inline-block;
  background-color: #1F2937;
  color: #F9FAFB;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  line-height: 1;
}

.capacity-signal {
  display: inline-block;
  background-color: #2563EB;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  line-height: 1;
}

.constraint-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #111827;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.375rem;
  border-radius: 9999px;
  line-height: 1.4;
  margin-top: 1rem;
  white-space: normal;
  max-width: 100%;
}

.diagnostic-badge {
  position: absolute;
  top: -0.875rem;
  left: 2rem;
  background-color: #2563EB;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  white-space: nowrap;
  z-index: 10;
}

.capacity-subline { font-size: 1rem; color: #6B7280; line-height: 1.75; margin: 0; }


/* =============================================
   Header
   z-index: 300 — above the overlay (200) so the
   hamburger toggle is never obscured or blocked.
   The drawer sits at z-index: 400 (above both).
   No isolation — must not trap child stacking contexts.
   ============================================= */

.site-header {
  background-color: rgba(255,255,255,0.97);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 300;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.nav-open .site-header {
  background-color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header .container { max-width: 80rem; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo { display: flex; align-items: center; text-decoration: none; line-height: 0; flex-shrink: 0; }
.site-logo img { width: auto; display: block; }
.site-logo-desktop { display: none; }
.site-logo-mobile  { display: flex; }
.logo-desktop { height: 2rem; }
.logo-mobile  { height: 2.5rem; }

@media (min-width: 768px) {
  .site-logo-desktop { display: flex; }
  .site-logo-mobile  { display: none; }
}

.primary-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .primary-nav { display: flex; } }
.primary-nav ul { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.primary-nav li { list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #4B5563;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
@media (min-width: 768px) {
  .primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -0.375rem; left: 0; right: 0;
    height: 2px;
    background-color: #111827;
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }
  .primary-nav a:hover::after,
  .primary-nav li.current-menu-item > a::after { transform: scaleX(1); }
}
.primary-nav a:hover,
.primary-nav li.current-menu-item > a { color: #111827; }

/* Exclude the CTA button from nav link colour and underline rules */
.primary-nav .btn-primary,
.primary-nav .btn-primary:hover,
.primary-nav li > .btn-primary,
.primary-nav li > .btn-primary:hover { color: #ffffff; }

.site-header .btn-primary {
  background-color: #000000;
  color: #ffffff;
  padding: 0.625rem 1.375rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.site-header .btn-primary:hover { background-color: #1f2937; color: #ffffff; transform: translateY(-1px); }
.primary-nav .btn-primary::after { display: none !important; }

/* ─── Hamburger toggle ─────────────────────────────────────── */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 400;
  flex-shrink: 0;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;   /* all three bars equal width */
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

/* Open state — top and bottom bars cross to form ✕ */
.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }


/* ─── Overlay backdrop ─────────────────────────────────────── */
/*
 * z-index: 200 — darkens page content behind the drawer.
 * Below header (300) so the toggle button stays visible and
 * tappable. Below the drawer (400).
 */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: transparent;
  z-index: 200;
  pointer-events: none;
  transition: background-color 0.32s ease;
}
.nav-overlay.is-visible {
  background-color: rgba(17, 24, 39, 0.6);
  pointer-events: auto;
}


/* ─── Mobile nav drawer ────────────────────────────────────── */
/*
 * z-index: 400 — above the header (300) and overlay (200).
 * Direct child of <body> so stacking context is root-level.
 * Solid white — no transparency, no backdrop-filter.
 */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background-color: #ffffff;
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.22);
}
.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1.75rem 2.5rem;
  position: relative;
}

/* Close button — top-right corner inside the drawer */
.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #111827;
  border-radius: 0.375rem;
  transition: background-color 0.18s ease, color 0.18s ease;
  flex-shrink: 0;
}
.mobile-nav-close:hover {
  background-color: #F3F4F6;
  color: #111827;
}

/* Nav links sit below the close button */
.mobile-nav ul {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  flex-grow: 1;
}
.mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav a {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
  padding: 1rem 0;
  border-bottom: 1px solid #F3F4F6;
  text-decoration: none;
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.mobile-nav a:hover,
.mobile-nav li.current-menu-item > a {
  color: #2563EB;
  padding-left: 0.375rem;
}
/* Exclude the CTA button from nav-link hover styles */
.mobile-nav-footer a,
.mobile-nav-footer a:hover {
  color: #ffffff;
  padding-left: 0;
  border-bottom: none;
}

.mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

/* CTA button — fully self-contained styles, nothing inherited from nav links */
.mobile-nav-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #111827;
  color: #ffffff;
  padding: 0.9375rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.mobile-nav-cta:hover {
  background-color: #1f2937;
  color: #ffffff;
  padding-left: 1.5rem; /* reset — don't let nav hover shift it */
}
/* Force white on the inner span regardless of cascade */
.mobile-nav-cta .btn-label,
.mobile-nav-cta span {
  color: #ffffff;
}


/* Prevent body scroll when nav is open */
body.nav-open { overflow: hidden; }


/* =============================================
   Footer
   ============================================= */

.site-footer { background-color: #ffffff; border-top: 1px solid #E5E7EB; }
.footer-inner { padding: 5rem 0 4rem; max-width: 80rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-brand p { color: #6B7280; margin-top: 1rem; line-height: 1.75; font-size: 1rem; }
.footer-nav-heading,
.footer-cta-heading { font-weight: 600; color: #111827; margin-bottom: 1rem; font-size: 1rem; }
.footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-list a { color: #6B7280; font-size: 0.9375rem; transition: color 0.2s; }
.footer-nav-list a:hover { color: #111827; }
.footer-bottom { border-top: 1px solid #E5E7EB; margin-top: 3rem; padding-top: 2rem; }
.footer-bottom p { font-size: 0.875rem; color: #9CA3AF; }

@media (max-width: 767px) {
  .site-footer  { text-align: left; }
  .footer-inner { padding: 3.5rem 0 2.5rem; }
  .footer-grid  { gap: 2rem; }

  .footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
  .footer-brand .site-logo { justify-content: flex-start; }
  .footer-brand p { max-width: 100%; }

  .footer-nav-list { align-items: flex-start; }
  .footer-cta-heading { max-width: 100%; }
  .footer-bottom p { text-align: left; }

  .footer-grid > div:last-child {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }
  .footer-grid > div:last-child > a.btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  .footer-grid .btn { width: 100%; max-width: 100%; }
}


/* =============================================
   Hero
   ============================================= */

.hero-section {
  background-color: #F8F9FA;
  padding-top: 9rem;
  padding-bottom: 7rem;
}
@media (max-width: 767px) {
  .hero-section { padding-top: 6rem; padding-bottom: 5rem; }
}
.hero-section h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111827;
}
.pk-highlight {
  background-image: linear-gradient(
    to bottom,
    rgba(254,240,138,0)   0%, rgba(254,240,138,0)  38%,
    rgba(254,240,138,0.85) 38%, rgba(254,240,138,0.85) 100%
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.1em 0.1em;
  border-radius: 0.06em;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.3rem);
  color: #4B5563;
  line-height: 1.8;
  max-width: 48rem;
  margin: 1.75rem auto 0;
}
.hero-cta { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 0; }


/* =============================================
   Page hero (interior pages)
   ============================================= */

.page-hero {
  background-color: #F8F9FA;
  padding-top: 8rem;
  padding-bottom: 5.5rem;
}
@media (max-width: 767px) {
  .page-hero { padding-top: 5rem; padding-bottom: 3.5rem; }
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.page-hero-subtitle {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.8;
  max-width: 48rem;
  margin: 1.25rem auto 0;
}


/* =============================================
   Cards
   ============================================= */

.card {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.card-gradient {
  background: linear-gradient(135deg, #EFF6FF 0%, #FAF5FF 50%, #FDF2F8 100%);
  border-color: #C7D2FE;
  border-width: 1.5px;
}
.card h3    { margin-bottom: 0; }
.card p     { font-size: 1rem; line-height: 1.8; }
.card-tight { padding: 2.25rem; }

/* Real problem section — larger text desktop, left-align mobile */
.pk-real-problem-body {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.85;
  margin-top: 1.25rem;
}
.pk-real-problem-body + .pk-real-problem-body { margin-top: 1rem; }
.pk-real-problem-emphasis {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #111827;
  margin-top: 1.25rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .pk-real-problem-body { font-size: 1.25rem; }
  .pk-real-problem-emphasis { font-size: 1.3125rem; }
}
@media (max-width: 767px) {
  .pk-real-problem-section { text-align: left !important; }
  .pk-real-problem-section h2 { text-align: left; }
}
.card-copy  { margin-top: 1rem; color: #4B5563; font-size: 1rem; line-height: 1.75; }

@media (max-width: 767px) {
  .card { padding: 1.75rem; }
}


/* =============================================
   Grids
   ============================================= */

.three-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .three-columns-grid { grid-template-columns: repeat(3, 1fr); }
}

.home-secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .home-secondary-grid { grid-template-columns: repeat(2, 1fr); }
}

.section-grid-wide { max-width: 80rem; }

.four-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .four-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .four-card-grid  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .three-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.four-card-grid .card,
.three-card-grid .card { height: 100%; }

.three-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}


/* =============================================
   Bullet lists
   ============================================= */

.bullet-list { display: flex; flex-direction: column; gap: 0.875rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.bullet-dot {
  width: 6px; height: 6px;
  background-color: #9CA3AF;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.65rem;
}
.bullet-list li span { color: #374151; font-size: 1rem; line-height: 1.75; }


/* =============================================
   Dark band
   ============================================= */

.dark-band {
  background-color: #111827;
  border-radius: 0.75rem;
  padding: 3.5rem;
  text-align: center;
}
.dark-band p {
  color: #ffffff;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.55;
}
@media (max-width: 767px) {
  .dark-band { padding: 2.5rem 1.5rem; }
}


/* =============================================
   Steps
   ============================================= */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-number {
  width: 3.5rem; height: 3.5rem;
  background-color: #2563EB;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step-number span { color: #ffffff; font-size: 1.375rem; font-weight: 700; }
.step-title { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.875rem; color: #111827; }
.step-desc  { color: #4B5563; font-size: 1rem; line-height: 1.8; }


/* =============================================
   Case study stats
   ============================================= */

.case-context { text-align: center; margin-bottom: 2.5rem; }
.case-context p { font-size: 1rem; color: #4B5563; line-height: 1.75; margin-bottom: 0.75rem; }
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
/* Single-line comparison on mobile */
@media (max-width: 767px) {
  .stats-row--inline {
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .stats-row--inline .stat-before .stat-number,
  .stats-row--inline .stat-after  .stat-number {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .stats-row--inline .stat-arrow svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  .stats-row--inline .stat-label {
    font-size: 0.6875rem;
  }
}
.stat-before .stat-number { font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; color: #DC2626; }
.stat-after  .stat-number { font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; color: #10B981; }
.stat-label { font-size: 0.75rem; font-weight: 600; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; margin-top: 0.5rem; }
.stat-arrow { color: #10B981; }
.stat-arrow svg { width: 3rem; height: 3rem; }
.case-result { border-top: 1px solid #E5E7EB; padding-top: 2rem; text-align: center; margin-top: 1rem; }
.case-result p { font-size: 1rem; color: #4B5563; line-height: 1.75; }
.case-result p + p { margin-top: 0.75rem; }


/* =============================================
   Final CTA box
   ============================================= */

.final-cta-box {
  background: linear-gradient(135deg, #EFF6FF 0%, #FAF5FF 50%, #FDF2F8 100%);
  border: 1.5px solid #C7D2FE;
  border-radius: 1rem;
  padding: 4rem 3rem;
  text-align: center;
}
.final-cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.final-cta-box p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.8;
  max-width: 38rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .final-cta-box { padding: 2.75rem 1.75rem; }
}


/* =============================================
   Manifesto
   ============================================= */

.manifesto { text-align: center; padding: 7rem 0; }
.manifesto h2 { font-size: clamp(1.75rem, 4vw, 2.375rem); margin-bottom: 1.5rem; }
.manifesto p  { font-size: 1.0625rem; max-width: 48rem; margin: 0 auto; line-height: 1.8; }

@media (max-width: 767px) {
  .manifesto {
    padding: 3.5rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
  }
  .manifesto h2,
  .manifesto p {
    max-width: 100%;
    text-align: center;
  }
}


/* =============================================
   About page
   ============================================= */

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .founder-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.founder-photo {
  width: 100%;
  max-width: 340px;
  background: #ffffff;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.founder-photo-img { display: block; width: 100%; height: auto; border-radius: 10px; }
.about-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-boxes { grid-template-columns: repeat(3, 1fr); }
}


/* =============================================
   Get Started page
   ============================================= */

.pk-gs-hero { background: #F8F9FA; padding-top: 6rem; padding-bottom: 4.5rem; }
.pk-gs-hero-header { text-align: center; }
.pk-gs-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 auto;
  max-width: 54rem;
}
.pk-gs-kicker { margin: 1rem auto 0; max-width: 52rem; color: #4B5563; font-size: 1.0625rem; line-height: 1.8; }
.pk-gs-grid { margin-top: 3rem; display: flex; gap: 2.5rem; align-items: center; }
.pk-gs-left, .pk-gs-right { flex: 1 1 0; min-width: 0; }
.pk-gs-left-card {
  border-radius: 1rem;
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: 0 8px 30px rgba(17,24,39,0.08);
  background: #ffffff;
  padding: 2rem;
}
.pk-gs-mockup {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  max-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(17,24,39,0.10);
  background: #F3F4F6;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.pk-gs-mockup-img { width: 100%; height: 100%; max-width: none; display: block; object-fit: cover; }
.pk-gs-lead    { margin: 0 0 1.25rem; font-size: 1rem; line-height: 1.8; color: #374151; }
.pk-gs-bullets { margin: 0; padding-left: 1.25rem; list-style: disc; color: #374151; line-height: 1.75; }
.pk-gs-bullets li { margin: 0.5rem 0; font-size: 1rem; }
.pk-gs-form-card {
  border-radius: 1rem;
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: 0 8px 40px rgba(17,24,39,0.10);
  background: #ffffff;
  padding: 2rem;
}
.pk-gs-form-header  { margin-bottom: 1.5rem; }
.pk-gs-form-pill    { margin-bottom: 0.75rem; }
.pk-gs-form-title   { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: #111827; margin: 0.5rem 0 0; }
.pk-gs-form-subtitle { margin: 0.625rem 0 0; color: #4B5563; font-size: 1rem; line-height: 1.65; }
.pk-gs-form-body    { margin-top: 1.25rem; }

@media (max-width: 900px) {
  .pk-gs-hero { padding-top: 4.5rem; padding-bottom: 3.5rem; }
  .pk-gs-grid { flex-direction: column; align-items: stretch; gap: 2rem; }
  .pk-gs-mockup { aspect-ratio: 4 / 3; min-height: 200px; max-height: none; }
}

@media (max-width: 767px) {
  .pk-gs-left-card, .pk-gs-form-card { padding: 1.5rem; }

  .page-template-page-get-started .pk-br-btn-primary {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    position: relative;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 3.75rem;
  }
  .page-template-page-get-started .pk-br-btn-primary .btn-label {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }
  .page-template-page-get-started .pk-br-btn-primary .arrow-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}


/* =============================================
   Forms
   ============================================= */

.form-group  { margin-bottom: 1.375rem; }
.form-label  { display: block; font-size: 0.9375rem; font-weight: 600; color: #111827; margin-bottom: 0.5rem; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #8992A9;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  color: #111827;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus        { border-color: #111827; box-shadow: 0 0 0 3px rgba(17,24,39,0.1); }
.form-input::placeholder { color: #9CA3AF; }
.form-note    { font-size: 0.9375rem; color: #6B7280; text-align: center; margin-top: 0.875rem; }
.sendfox-form { width: 100%; }

input, textarea, select { border: 1px solid #8992A9; }
input:focus, textarea:focus, select:focus { outline: 2px solid #111827; outline-offset: 2px; }

.contact-form-wrapper { max-width: 38rem; margin: 0 auto; }
.contact-form-wrapper textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #8992A9;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  color: #111827;
  resize: vertical;
  min-height: 140px;
  outline: none;
}


/* =============================================
   Apply page
   ============================================= */

.apply-investment-block {
  background-color: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
}
@media (max-width: 767px) {
  .apply-investment-block { padding: 2rem 1.5rem; }
}
.apply-investment-label  { font-size: 0.75rem; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 0.625rem; }
.apply-investment-amount { font-size: 2.75rem; font-weight: 700; color: #111827; margin: 0 0 0.875rem; letter-spacing: -0.02em; }
.apply-investment-note   { font-size: 1rem; color: #6B7280; margin: 0; line-height: 1.75; }
.apply-selectivity-block { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #E5E7EB; }
.apply-arrow-indicator   { text-align: center; margin-top: 3rem; color: #9CA3AF; }
.apply-arrow-indicator svg { animation: gentleBounce 2s ease-in-out infinite; }
@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
.apply-form-intro    { text-align: center; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid #E5E7EB; }
.apply-form-intro h2 { font-size: 1.625rem; font-weight: 700; color: #111827; margin-bottom: 0.625rem; }
.apply-form-intro p  { font-size: 1rem; color: #6B7280; margin: 0; }


/* =============================================
   Thank You pages
   ============================================= */

.thank-you-title     { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: #111827; letter-spacing: -0.02em; }
.lead                { font-size: 1.125rem; color: #4B5563; line-height: 1.8; }
.list                { display: flex; flex-direction: column; gap: 0.625rem; padding-left: 1.25rem; list-style: disc; }
.list li             { font-size: 1rem; color: #4B5563; line-height: 1.75; }
.thankyou-next-grid  { align-items: center; }
.thankyou-book       { display: flex; justify-content: center; }
.thankyou-book-image { width: 100%; max-width: 520px; height: auto; border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,0.08); }


/* =============================================
   Checklist standalone
   ============================================= */

.checklist-page-wrapper { background-color: #F8F9FA; min-height: 100vh; padding: 6rem 1.5rem; }
.checklist-card {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  max-width: 40rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .checklist-card { padding: 2rem 1.5rem; }
}
.checklist-card h1      { font-size: clamp(2rem, 5vw, 2.75rem); text-align: center; margin-bottom: 1rem; }
.checklist-preview      { padding: 1.5rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.checklist-preview li   { display: flex; align-items: flex-start; gap: 1rem; }
.checklist-preview li span { font-size: 1rem; color: #374151; }


/* =============================================
   FAQ Accordion
   ============================================= */

.pk-faq-section    { padding-top: 6rem; padding-bottom: 6rem; background: #F8F9FA; }
.pk-faq-header     { max-width: 56rem; margin-left: auto; margin-right: auto; text-align: left; }
.pk-faq-header h2  { font-size: clamp(1.875rem, 3vw, 2.375rem); font-weight: 800; letter-spacing: -0.02em; color: #111827; }
.pk-faq-intro      { margin-top: 0.875rem; color: #4B5563; line-height: 1.75; font-size: 1.0625rem; }
.pk-accordion      { max-width: 56rem; margin: 2.5rem auto 0; }
.pk-accordion-item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.625rem;
  margin-bottom: 0.625rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.pk-accordion-button {
  width: 100%; background: transparent; border: 0;
  padding: 1.375rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; cursor: pointer; text-align: left;
  border-radius: 0.625rem;
}
.pk-accordion-question { font-weight: 600; color: #111827; font-size: 1.0625rem; line-height: 1.45; }
.pk-accordion-icon { width: 18px; height: 18px; position: relative; flex: 0 0 18px; }
.pk-accordion-icon::before,
.pk-accordion-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 2px;
  background: rgba(17,24,39,0.75);
  transform: translate(-50%,-50%); border-radius: 2px;
}
.pk-accordion-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.pk-accordion-button[aria-expanded="true"] .pk-accordion-icon::after { transform: translate(-50%,-50%) rotate(0deg); opacity: 0; }
.pk-accordion-panel   { overflow: hidden; transition: max-height 200ms ease; max-height: 0; }
.pk-accordion-content { padding: 0 1.5rem 1.375rem; color: #374151; line-height: 1.8; font-size: 1rem; }
.pk-accordion-content p + p { margin-top: 0.875rem; }

@media (max-width: 767px) {
  .pk-faq-section      { padding-top: 4rem; padding-bottom: 4rem; }
  .pk-accordion        { max-width: 100%; }
  .pk-accordion-button { padding: 1.125rem 1.25rem; }
}


/* =============================================
   Animations
   ============================================= */

.fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


/* =============================================
   WordPress helpers
   ============================================= */

.aligncenter { display: block; margin: 0 auto; }
.wp-caption  { max-width: 100%; }
.btn-icon    { display: inline-block; }


/* =============================================
   Bonus stack — services page
   ============================================= */

.bonus-stack { display: flex; flex-direction: column; gap: 1rem; }

.bonus-item {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.bonus-item:hover {
  border-color: #BFDBFE;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
}

.bonus-image-col { flex: 0 0 40%; max-width: 40%; position: relative; }
.bonus-image-wrap {
  width: 100%; aspect-ratio: 1 / 1;
  background: #E5E7EB; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bonus-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.bonus-image-placeholder {
  width: 100%; aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #DBEAFE 0%, #EDE9FE 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center; gap: 0.5rem;
}
.bonus-image-placeholder span { font-size: 0.9375rem; font-weight: 700; color: #1e3a8a; line-height: 1.4; }

.bonus-content-col {
  flex: 0 0 60%; max-width: 60%;
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center; min-width: 0;
}
.bonus-number { display: inline-block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; color: #2563EB; text-transform: uppercase; margin-bottom: 0.3rem; }
.bonus-content-col h3 { font-size: 1.125rem; font-weight: 700; color: #0D1117; margin-bottom: 0.5rem; line-height: 1.35; }
.bonus-content-col p  { font-size: 0.9rem; line-height: 1.7; color: #4B5563; margin-bottom: 0; }
.bonus-value          { margin-top: 0.875rem; font-size: 1rem; font-weight: 800; color: #111827; letter-spacing: -0.01em; }

/* Total value card — WCAG AA accessible */
.bonus-total {
  margin-top: 0.5rem;
  background: #1e293b;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  border: 1px solid #334155;
}
.bonus-total-inner { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.bonus-total-left  { flex-shrink: 0; }
.bonus-total-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #94a3b8; margin-bottom: 0.3rem; }
.bonus-total-amount { font-size: 2.75rem; font-weight: 800; color: #60a5fa; line-height: 1; letter-spacing: -0.02em; }
.bonus-total-divider { width: 1px; height: 56px; background: #334155; flex-shrink: 0; }
.bonus-total-right { flex: 1; min-width: 0; }
.bonus-total-included { font-size: 1rem; font-weight: 700; color: #f8fafc; margin-bottom: 0.4rem; line-height: 1.4; }
.bonus-total-sub { font-size: 0.875rem; color: #cbd5e1; line-height: 1.65; margin: 0; }

@media (max-width: 600px) {
  .bonus-item          { flex-direction: column; }
  .bonus-image-col     { flex: none; width: 100%; max-width: 100%; }
  .bonus-image-wrap    { aspect-ratio: 1 / 1; width: 100%; }
  .bonus-image-placeholder { aspect-ratio: 1 / 1; }
  .bonus-content-col   { flex: none; width: 100%; max-width: 100%; padding: 1.25rem; }
  .bonus-total         { padding: 1.5rem 1.25rem; }
  .bonus-total-divider { display: none; }
  .bonus-total-inner   { gap: 1rem; flex-direction: column; align-items: flex-start; }
  .bonus-total-left,
  .bonus-total-right   { width: 100%; }
  .bonus-total-amount  { font-size: 2.25rem; }
}


/* =============================================
   Image placeholder (customiser images not yet set)
   ============================================= */

.pk-img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.625rem;
  background: #F3F4F6;
  border: 2px dashed #D1D5DB;
  border-radius: 0.625rem;
  padding: 2rem;
  color: #6B7280; font-size: 0.875rem; font-weight: 600;
  text-align: center; min-height: 160px; width: 100%;
}
.pk-img-placeholder svg { color: #9CA3AF; }


/* =============================================
   v29 Mobile nav close-button hardening
   Ensures the close control remains visible on
   the homepage and all other templates.
   ============================================= */
.site-header {
  z-index: 9990;
}
.nav-overlay {
  z-index: 9998;
}
.mobile-nav {
  z-index: 10000;
}
.mobile-menu-toggle {
  z-index: 10001;
}
.mobile-nav-inner {
  padding-top: 0.75rem;
}
.mobile-nav-close {
  position: sticky;
  top: 0.75rem;
  right: auto;
  left: auto;
  margin-left: auto;
  margin-bottom: 0.75rem;
  z-index: 3;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.10);
}
.mobile-nav-close svg {
  display: block;
}
.mobile-nav ul {
  margin-top: 0.5rem;
}
body.home .mobile-nav-close,
body.front-page .mobile-nav-close {
  display: flex;
  visibility: visible;
  opacity: 1;
}


/* =============================================
   For / Not For lists
   ============================================= */

.pk-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .pk-for-grid { grid-template-columns: 1fr 1fr; }
}

.pk-for-list,
.pk-notfor-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pk-for-item,
.pk-notfor-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

.pk-for-icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.175rem;
}
.pk-for-icon svg { width: 0.75rem; height: 0.75rem; color: #059669; }

.pk-notfor-icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #FEE2E2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.175rem;
}
.pk-notfor-icon svg { width: 0.75rem; height: 0.75rem; color: #DC2626; }

.pk-for-col-heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
}


/* =============================================
   Offer stack cards
   ============================================= */

.pk-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .pk-offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pk-offer-grid { grid-template-columns: repeat(4, 1fr); }
}

.pk-offer-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.875rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.pk-offer-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  border-color: #C7D2FE;
  transform: translateY(-3px);
}
.pk-offer-card-featured {
  background: linear-gradient(135deg, #EFF6FF 0%, #FAF5FF 50%, #FDF2F8 100%);
  border-color: #C7D2FE;
  border-width: 1.5px;
}
.pk-offer-card-featured:hover {
  border-color: #818CF8;
  box-shadow: 0 8px 30px rgba(99,102,241,0.12);
}

.pk-offer-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563EB;
  margin-bottom: 0.625rem;
}
.pk-offer-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-decoration: none;
}
.pk-offer-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}
.pk-offer-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B7280;
  letter-spacing: 0;
}
.pk-offer-desc {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}
/* Button CTA inside offer cards */
.pk-offer-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #111827;
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.125rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.pk-offer-btn:hover { background-color: #1f2937; color: #ffffff; }
.pk-offer-btn .arrow-icon { width: 0.9375rem; height: 0.9375rem; flex-shrink: 0; }

/* Legacy cta style kept for any remnant usage */
.pk-offer-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  border-bottom: 2px solid #111827;
  padding-bottom: 0.125rem;
  transition: opacity 0.2s;
}
.pk-offer-cta:hover { opacity: 0.65; }

@media (max-width: 767px) {
  .pk-offer-card { padding: 1.5rem; }
}


/* =============================================
   Apply page two-line pill highlight
   ============================================= */

.pk-apply-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  background: #1F2937;
  padding: 0.625rem 1.375rem;
  border-radius: 9999px;
}
.pk-apply-pill-line {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F9FAFB;
  line-height: 1;
}
.pk-apply-pill-line .pk-highlight {
  color: #111827;
}


/* =============================================
   v31 mobile and conversion refinements
   ============================================= */
.btn-secondary {
  background-color: #ffffff;
  color: #111827;
  border: 1.5px solid #D1D5DB;
}
.btn-secondary:hover {
  background-color: #F9FAFB;
  color: #111827;
  transform: translateY(-1px);
}
.hero-section .container,
.page-hero .container,
.services-hero .container,
.pk-br-wrap {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.home-secondary-grid,
.three-columns-grid,
.four-card-grid,
.about-boxes {
  align-items: stretch;
}
.card.card-tight,
.home-secondary-grid .card,
.about-boxes .card {
  height: 100%;
}
.final-cta-box {
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .hero-section {
    padding-top: 4.75rem;
    padding-bottom: 4rem;
  }
  .page-hero,
  .services-hero {
    padding-top: 4.75rem !important;
    padding-bottom: 3rem !important;
  }
  .hero-section h1,
  .page-hero h1,
  .services-hero h1 {
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .hero-subtitle,
  .page-hero-subtitle,
  .services-hero-sub,
  .pk-br-hero-body {
    font-size: 1rem;
    line-height: 1.7;
  }
  .section-white.py-section-lg,
  .section-gray.py-section-lg,
  .section-white.py-section,
  .section-gray.py-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .card,
  .final-cta-box,
  .contact-form-wrapper {
    padding: 1.5rem !important;
    border-radius: 0.875rem;
  }
  .stats-row.stats-row--inline {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem;
    justify-content: center;
  }
  .stats-row.stats-row--inline .stat-arrow {
    transform: none;
    margin: 0;
  }
  .founder-grid {
    gap: 1.5rem;
  }
  .founder-photo-wrap,
  .founder-photo,
  .founder-photo-img {
    width: 100%;
  }
  .manifesto {
    padding: 3rem 1.25rem !important;
  }
  .dark-band {
    padding: 1.5rem !important;
  }
  .final-cta-box > div[style*="display:flex"] {
    align-items: stretch !important;
  }
  .site-footer .footer-grid {
    gap: 2rem;
  }
}


/* v32 readability refinements */
@media (min-width: 1024px) {
  p,
  .card p,
  .card-copy,
  .page-hero-subtitle,
  .case-context p,
  .step-desc,
  .pk-gs-kicker,
  .pk-gs-lead,
  .pk-gs-bullets li,
  .pk-gs-form-subtitle,
  .pk-real-problem-body,
  .bullet-list li span,
  .apply-investment-note,
  .form-note {
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .card .constraint-pill,
  .card .authority-pill,
  .card .capacity-signal {
    font-size: 0.875rem;
  }
}

/* v32 square up selected desktop surfaces */
.pk-gs-left-card,
.pk-gs-form-card,
.dark-band,
.card {
  border-radius: 0;
}
.founder-photo,
.founder-photo-img {
  border-radius: 0;
}


/* =============================================
   v34 mobile CTA, footer and contact refinements
   ============================================= */
@media (max-width: 767px) {
  /* Ensure dark CTA buttons remain legible on mobile */
  .btn-primary,
  .btn-primary:visited,
  .btn-primary .btn-label,
  .btn-primary .arrow-icon,
  .btn-primary svg,
  .pk-br-btn-primary,
  .pk-br-btn-primary:visited,
  .pk-br-btn-primary .btn-label,
  .pk-br-btn-primary .arrow-icon,
  .pk-br-btn-primary svg,
  .mobile-nav-cta,
  .mobile-nav-cta:visited {
    color: #ffffff !important;
    stroke: currentColor;
    fill: none;
  }

  .btn-primary[data-mobile-label] .btn-label::after,
  .pk-br-btn-primary[data-mobile-label] .btn-label::after,
  .mobile-nav-cta[data-mobile-label] .btn-label::after {
    color: #ffffff !important;
  }

  /* Footer layout needs more breathing room and a full-size CTA */
  .site-footer .container.footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .site-footer .footer-grid {
    gap: 2.25rem;
  }

  .site-footer .btn,
  .site-footer .btn.btn-sm {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 0.95rem 1.25rem;
    min-height: 3.5rem;
  }

  /* Reduce excess side padding around the contact form */
  .page-template-page-contact .section-gray-strong > .container,
  .page-template-page-contact .section-white > .container,
  .page-template-page-contact .page-hero > .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-template-page-contact .contact-form-wrapper {
    padding: 0 !important;
    border-radius: 0 !important;
  }
}

/* =============================================
   v35 mobile CTA and footer corrections
   ============================================= */
.home-final-cta-actions {
  position: relative;
}

.cta-or-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid #D1D5DB;
  background: rgba(255,255,255,0.72);
  color: #6B7280;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  /* Comprehensive button contrast hardening */
  a.btn,
  .btn,
  .pk-br-btn-primary,
  .pk-br-btn-dark,
  .mobile-nav-cta {
    text-decoration: none !important;
  }

  .btn-primary,
  .btn-primary:link,
  .btn-primary:visited,
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary .btn-label,
  .btn-primary .arrow-icon,
  .btn-primary svg,
  .pk-br-btn-primary,
  .pk-br-btn-primary:link,
  .pk-br-btn-primary:visited,
  .pk-br-btn-primary:hover,
  .pk-br-btn-primary:focus,
  .pk-br-btn-primary .btn-label,
  .pk-br-btn-primary .arrow-icon,
  .pk-br-btn-primary svg,
  .mobile-nav-cta,
  .mobile-nav-cta:link,
  .mobile-nav-cta:visited,
  .mobile-nav-cta:hover,
  .mobile-nav-cta:focus,
  .mobile-nav-cta .btn-label,
  .mobile-nav-cta .arrow-icon,
  .mobile-nav-cta svg {
    color: #ffffff !important;
    stroke: currentColor !important;
    fill: none !important;
  }

  .btn-primary[data-mobile-label] .btn-label::after,
  .pk-br-btn-primary[data-mobile-label] .btn-label::after,
  .mobile-nav-cta[data-mobile-label] .btn-label::after {
    color: #ffffff !important;
  }

  .btn-secondary,
  .btn-secondary:link,
  .btn-secondary:visited,
  .btn-secondary:hover,
  .btn-secondary:focus,
  .btn-secondary .btn-label,
  .btn-secondary .arrow-icon,
  .btn-secondary svg,
  .pk-br-btn-dark,
  .pk-br-btn-dark:link,
  .pk-br-btn-dark:visited,
  .pk-br-btn-dark:hover,
  .pk-br-btn-dark:focus,
  .pk-br-btn-dark .btn-label,
  .pk-br-btn-dark .arrow-icon,
  .pk-br-btn-dark svg {
    color: #111827 !important;
    stroke: currentColor !important;
    fill: none !important;
  }

  .btn-secondary,
  .pk-br-btn-dark {
    background: #ffffff !important;
    border: 1.5px solid #D1D5DB !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  }

  .btn-secondary[data-mobile-label] .btn-label {
    font-size: 0;
    display: inline-block;
    line-height: 1.2;
  }

  .btn-secondary[data-mobile-label] .btn-label::after {
    content: attr(data-mobile-label);
    font-size: 1rem;
    color: #111827 !important;
  }

  /* Home final CTA card needs a clearer two-path layout */
  .home-final-cta-actions {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.875rem !important;
  }

  .home-final-cta-actions > .btn {
    width: 100%;
    max-width: 100%;
  }

  .cta-or-divider {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #6B7280;
    letter-spacing: 0.08em;
  }

  .cta-or-divider::before,
  .cta-or-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: #D1D5DB;
    margin: 0 0.875rem;
  }

  /* Footer mobile layout should feel deliberate, not cramped */
  .site-footer {
    background: #F8F9FA;
  }

  .site-footer .container.footer-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 2.75rem;
    padding-bottom: 2.25rem;
  }

  .site-footer .footer-grid {
    gap: 0;
  }

  .site-footer .footer-grid > div {
    padding: 1.25rem 0;
  }

  .site-footer .footer-grid > div + div {
    border-top: 1px solid #E5E7EB;
  }

  .footer-brand p,
  .footer-nav-list a,
  .footer-bottom p {
    font-size: 0.98rem;
  }

  .footer-nav-heading,
  .footer-cta-heading {
    font-size: 1.05rem;
    margin-bottom: 0.875rem;
  }

  .site-footer .btn,
  .site-footer .btn.btn-sm {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    min-height: 3.5rem;
  }

  .site-footer .btn .btn-label {
    text-align: center;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  /* Contact page mobile spacing */
  .page-template-page-contact .section-gray-strong > .container,
  .page-template-page-contact .section-white > .container,
  .page-template-page-contact .page-hero > .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}

/* =============================================
   v36 mobile button visibility and sizing fixes
   ============================================= */
@media (max-width: 767px) {
  /* Undo broken mobile label swap so real button text remains visible */
  .btn[data-mobile-label] .btn-label,
  .pk-br-btn-primary[data-mobile-label] .btn-label,
  .pk-br-btn-dark[data-mobile-label] .btn-label,
  .mobile-nav-cta[data-mobile-label] .btn-label {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: inherit !important;
    white-space: normal;
    text-align: center;
  }

  .btn-lg[data-mobile-label] .btn-label,
  .site-footer .btn[data-mobile-label] .btn-label,
  .home-final-cta-actions .btn[data-mobile-label] .btn-label {
    font-size: 1rem !important;
  }

  .btn[data-mobile-label] .btn-label::after,
  .pk-br-btn-primary[data-mobile-label] .btn-label::after,
  .pk-br-btn-dark[data-mobile-label] .btn-label::after,
  .mobile-nav-cta[data-mobile-label] .btn-label::after,
  .btn-primary .btn-label::after,
  .btn-secondary .btn-label::after,
  .pk-br-btn-primary .btn-label::after,
  .pk-br-btn-dark .btn-label::after {
    content: none !important;
    display: none !important;
  }

  /* Keep button sizing consistent across primary and secondary CTAs */
  .site-main .btn,
  .site-main .pk-br-btn-primary,
  .site-main .pk-br-btn-dark,
  .site-footer .btn,
  .site-footer .pk-br-btn-primary,
  .site-footer .pk-br-btn-dark,
  .mobile-nav-cta {
    min-height: 3.625rem !important;
    padding: 1rem 1.25rem !important;
    box-sizing: border-box;
  }

  .btn .arrow-icon,
  .pk-br-btn-primary .arrow-icon,
  .pk-br-btn-dark .arrow-icon,
  .mobile-nav-cta .arrow-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
  }

  .home-final-cta-actions > .btn {
    width: 100%;
    max-width: 100%;
    min-height: 3.75rem !important;
    border-radius: 0.75rem;
  }

  .home-final-cta-actions > .btn .btn-label {
    flex: 1 1 auto;
    padding-right: 0.25rem;
  }

  .home-final-cta-actions > .btn.btn-primary,
  .home-final-cta-actions > .btn.btn-secondary {
    justify-content: center;
  }

  .home-final-cta-actions + p {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  /* Footer layout polish on mobile */
  .site-footer .container.footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .site-footer .footer-grid > div {
    padding: 1.375rem 0;
  }

  .site-footer .footer-brand,
  .site-footer .footer-grid > div:last-child {
    text-align: center;
  }

  .site-footer .site-logo {
    justify-content: center;
  }

  .site-footer .footer-nav-list {
    padding-left: 0;
  }

  .site-footer .footer-nav-list li {
    list-style: none;
  }

  .site-footer .btn,
  .site-footer .btn.btn-sm {
    width: 100%;
    min-height: 3.75rem !important;
    padding: 1rem 1.25rem !important;
  }

  /* Contact form spacing */
  .page-template-page-contact .contact-form-shell,
  .page-template-page-contact .contact-form-wrap,
  .page-template-page-contact .contact-form-card,
  .page-template-page-contact .wpcf7,
  .page-template-page-contact .bitform,
  .page-template-page-contact form {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* =============================================
   v38 — rounded corners restored + image components
   ============================================= */

/* Restore rounded corners overridden by v32 patch */
.pk-gs-left-card,
.pk-gs-form-card,
.dark-band,
.card {
  border-radius: 1rem !important;
}
.founder-photo,
.founder-photo-img {
  border-radius: 1rem !important;
}
.contact-form-wrapper {
  border-radius: 1rem !important;
}
.final-cta-box {
  border-radius: 1.25rem !important;
}
.apply-investment-block,
.apply-selectivity-block {
  border-radius: 1rem !important;
}
.pk-accordion-item {
  border-radius: 0.75rem !important;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-form-wrapper {
    border-radius: 0.75rem !important;
  }
}

/* ── Hero split layout ── */
.pk-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pk-hero-split-text { }
.pk-hero-split-image {
  position: relative;
}
.pk-hero-split-image img,
.pk-hero-split-image .pk-img-placeholder {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  display: block;
}
@media (max-width: 900px) {
  .pk-hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pk-hero-split-image {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ── Section image blocks ── */
.pk-section-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  display: block;
  margin: 2rem 0;
}
.pk-section-image-wrap {
  margin: 2.5rem 0;
}
.pk-section-image-wrap img,
.pk-section-image-wrap .pk-img-placeholder {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

/* ── Two-col image + text ── */
.pk-split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.pk-split-block--reverse { direction: rtl; }
.pk-split-block--reverse > * { direction: ltr; }
.pk-split-block-image img,
.pk-split-block-image .pk-img-placeholder {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  display: block;
}
@media (max-width: 860px) {
  .pk-split-block,
  .pk-split-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
}

/* ── Full-width visual band ── */
.pk-visual-band {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  margin: 2.5rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.pk-visual-band img,
.pk-visual-band .pk-img-placeholder {
  width: 100%;
  display: block;
  border-radius: 1rem;
}

/* ── Placeholder styling ── */
.pk-img-placeholder {
  background: #F3F4F6;
  border: 2px dashed #D1D5DB;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  color: #9CA3AF;
  font-size: 0.875rem;
  text-align: center;
  min-height: 240px;
}
.pk-img-placeholder svg {
  color: #D1D5DB;
}
.pk-img-placeholder span {
  font-size: 0.8125rem;
  color: #9CA3AF;
  max-width: 200px;
  line-height: 1.5;
}

/* ── Client logo strip ── */
.pk-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding: 2.5rem 0;
}
.pk-logo-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9CA3AF;
  text-align: center;
  margin-bottom: 1.5rem;
}
.pk-logo-strip .pk-client-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Process steps visual ── */
.pk-process-visual {
  margin: 2.5rem 0;
}
.pk-process-visual img,
.pk-process-visual .pk-img-placeholder {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* ── Apply page layout ── */
.pk-apply-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}
.pk-apply-split-image img,
.pk-apply-split-image .pk-img-placeholder {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .pk-apply-split {
    grid-template-columns: 1fr;
  }
  .pk-apply-split-image {
    display: none;
  }
}

/* =============================================
   v39 — offer row layout + investment pricing
   ============================================= */

/* Two-column offer layout: text left, square image right */
.pk-offer-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.pk-offer-text {
  flex: 1;
  min-width: 0;
}

.pk-offer-image {
  flex-shrink: 0;
  width: 340px;
}

.pk-offer-image .pk-img-placeholder,
.pk-offer-image img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: block;
}

@media (max-width: 900px) {
  .pk-offer-row {
    flex-direction: column;
    gap: 2rem;
  }
  .pk-offer-image {
    width: 100%;
  }
  .pk-offer-image .pk-img-placeholder,
  .pk-offer-image img {
    width: 100%;
    height: 260px;
  }
}

/* Investment pricing line */
.pk-offer-investment-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F3F4F6;
}

.pk-offer-investment-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
}

.pk-offer-investment-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pk-offer-investment-note {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 500;
}

/* Narrowed dark band — constrained width, not full bleed */
.pk-dark-band-narrow {
  max-width: 42rem;
}


/* =============================================
   v40 — layout fixes: apply page, secondary CTAs, link colours
   ============================================= */

/* Apply page: two-column top row */
.pk-apply-top-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}

.pk-apply-intro { }

.pk-apply-investment-col .apply-investment-block {
  position: sticky;
  top: 100px;
  border: 1.5px solid #E5E7EB;
  border-radius: 1rem;
  padding: 2rem;
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.pk-apply-investment-col .apply-investment-block .btn {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media (max-width: 860px) {
  .pk-apply-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pk-apply-investment-col .apply-investment-block {
    position: static;
  }
}

/* Secondary CTA links — rich blue, not black */
.pk-secondary-cta-link,
.pk-secondary-cta-link:visited {
  color: #2563EB;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.pk-secondary-cta-link:hover {
  color: #1D4ED8;
}

/* Replace old black inline secondary links on services + other pages */
.section-white a[style*="color:#111827"],
.section-gray a[style*="color:#111827"] {
  color: #2563EB !important;
}


/* =============================================
   v41 — services layout refinements + apply page fix
   ============================================= */

/* 3:2 column ratio — text flex 3, image flex 2 */
.pk-offer-text {
  flex: 3;
  min-width: 0;
}

.pk-offer-image {
  flex: 2;
  flex-shrink: 0;
  width: auto;
}

.pk-offer-image .pk-img-placeholder,
.pk-offer-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: block;
}

@media (max-width: 900px) {
  .pk-offer-image {
    flex: none;
    width: 100%;
  }
  .pk-offer-image .pk-img-placeholder,
  .pk-offer-image img {
    width: 100%;
    height: 260px;
    aspect-ratio: unset;
  }
}

/* Investment box — warm highlight card (RRR) */
.pk-offer-investment-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding: 1rem 1.25rem;
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: 0.75rem;
  border-bottom: 1.5px solid #FDE68A;
}

/* Override the old faint border-bottom line — now replaced by card border */
.pk-offer-investment-line {
  border-bottom: 1.5px solid #FDE68A !important;
}

.pk-offer-investment-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #92400E;
}

.pk-offer-investment-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pk-offer-investment-note {
  font-size: 0.875rem;
  color: #78350F;
  font-weight: 500;
}

/* Review + Build / Retainer: vertically centred multi-field row */
.pk-offer-investment-line--row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  padding: 0;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.75rem;
  overflow: hidden;
}

.pk-offer-investment-line--row .pk-invest-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 1.5rem;
}

.pk-offer-investment-line--row .pk-invest-cell + .pk-invest-cell {
  border-left: 1.5px solid #E5E7EB;
}

.pk-offer-investment-line--row .pk-offer-investment-label {
  color: #6B7280;
  margin-bottom: 0.25rem;
}

.pk-offer-investment-line--row .pk-offer-investment-amount {
  font-size: 1.875rem;
  color: #111827;
}

.pk-offer-investment-line--row .pk-offer-investment-note {
  color: #6B7280;
  font-size: 0.8125rem;
}

@media (max-width: 600px) {
  .pk-offer-investment-line--row {
    flex-wrap: wrap;
  }
  .pk-offer-investment-line--row .pk-invest-cell + .pk-invest-cell {
    border-left: none;
    border-top: 1.5px solid #E5E7EB;
  }
}

/* Dark band + CTA — centred below the cards */
.pk-offer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
}

.pk-offer-bottom .pk-dark-band-narrow {
  width: 100%;
  max-width: 42rem;
  text-align: left;
}

.pk-offer-bottom .pk-offer-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Apply page — remove top margin from investment card so it aligns with intro text */
.pk-apply-investment-col .apply-investment-block {
  margin-top: 0;
}


/* Apply page investment card — flush top alignment with intro text */
.pk-apply-investment-col .apply-investment-block {
  margin-top: 0 !important;
  margin-bottom: 0;
}

/* =============================================
   v42 — investment line refinements + mobile divider fix
   ============================================= */

/* ── Investment box: hug content, don't stretch full width ── */
.pk-offer-investment-line {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
}

.pk-offer-investment-line--row {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
}

/* ── Investment card: white background with border ── */
.pk-offer-investment-line:not(.pk-offer-investment-line--row) {
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.875rem;
  padding: 1.25rem 1.75rem;
  gap: 1.25rem;
  align-items: center;
}

.pk-offer-investment-line:not(.pk-offer-investment-line--row) .pk-offer-investment-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #6B7280; /* 4.6:1 on white, passes WCAG AA */
}

.pk-offer-investment-line:not(.pk-offer-investment-line--row) .pk-offer-investment-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827; /* 16:1 on white, passes WCAG AAA */
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ── Row-style investment (Build + Retainer): larger consistent text ── */
.pk-offer-investment-line--row {
  border: 1.5px solid #E5E7EB;
  border-radius: 0.875rem;
  overflow: hidden;
  padding: 0;
  background: #FFFFFF;
}

.pk-offer-investment-line--row .pk-invest-cell {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pk-offer-investment-line--row .pk-invest-cell + .pk-invest-cell {
  border-left: 1.5px solid #E5E7EB;
}

.pk-offer-investment-line--row .pk-offer-investment-label {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #6B7280;
}

.pk-offer-investment-line--row .pk-offer-investment-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pk-offer-investment-line--row .pk-offer-investment-note {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
}

/* ── Mobile: fix section divider lines not spanning full card width ── */
@media (max-width: 767px) {

  /* Cards that have internal border-top content — ensure dividers bleed edge to edge */
  .card .case-result {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  /* Section dividers between stacked cards */
  .three-columns-grid .card + .card,
  .home-secondary-grid .card + .card,
  .about-boxes .card + .card {
    border-top: 1px solid #E5E7EB;
  }

  /* Investment line row cells — stack vertically, remove left border, add top border */
  .pk-offer-investment-line--row {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
  }

  .pk-offer-investment-line--row .pk-invest-cell + .pk-invest-cell {
    border-left: none;
    border-top: 1.5px solid #E5E7EB;
  }

  /* Dark investment card full width on mobile */
  .pk-offer-investment-line:not(.pk-offer-investment-line--row) {
    display: flex !important;
    width: 100% !important;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }
}


/* =============================================
   v45 — darker hero backgrounds sitewide
   ============================================= */

.hero-section,
.page-hero,
.pk-br-hero {
  background-color: #EEF1F6 !important;
}


/* =============================================
   v49 — off-white content sections, cards/buttons stay white
   ============================================= */

/* Content sections — off white so cards/buttons pop */
.section-white {
  background-color: #F8F9FA !important;
}

/* Hero sections — slightly deeper than section-white */
.hero-section,
.page-hero,
.pk-br-hero,
.services-hero {
  background-color: #EEF1F6 !important;
}

/* Final CTA box — keep white so it stands out against section bg */
.final-cta-box {
  background-color: #ffffff !important;
}

/* Footer — keep white, it is structural chrome */
.site-footer {
  background-color: #ffffff !important;
}

/* Header — keep white */
.site-header {
  background-color: #ffffff !important;
}


/* =============================================
   v50 — MOBILE-FIRST OPTIMISATION
   375px base, scales up. Desktop untouched.
   ============================================= */

@media (max-width: 767px) {

  /* ── Global container & section spacing ── */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .py-section    { padding-top: 3rem;   padding-bottom: 3rem;   }
  .py-section-lg { padding-top: 3.5rem; padding-bottom: 3.5rem; }

  /* ── Global button rules ── */
  .btn,
  .btn-lg,
  .btn-sm {
    min-height: 48px;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.875rem 1.25rem;
    box-sizing: border-box;
  }

  /* Inline secondary links / small buttons stay auto width */
  a.pk-secondary-cta-link {
    width: auto;
    display: inline;
  }

  /* Button groups — stack vertically */
  .home-final-cta-actions,
  .pk-offer-cta-row,
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    width: 100%;
  }

  .cta-or-divider {
    text-align: center;
    display: block;
    color: #9CA3AF;
    font-size: 0.875rem;
  }

  /* ── HOMEPAGE ── */

  /* Hero — generous top padding, strong vertical rhythm */
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .hero-section h1 {
    font-size: clamp(2rem, 7vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    text-align: left;
    margin-top: 0.75rem;
    max-width: 100%;
  }

  .hero-cta {
    margin-top: 2rem;
    align-items: stretch;
  }

  .capacity-subline {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.75rem;
  }

  /* Logo strip */
  .pk-logo-strip {
    gap: 1rem 1.5rem;
    padding: 1.25rem 0;
  }

  .pk-logo-strip-label {
    margin-bottom: 0.875rem;
  }

  .pk-client-name {
    font-size: 0.9375rem;
  }

  /* Four-card and three-column grids — single column */
  .four-card-grid,
  .three-columns-grid,
  .home-secondary-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .four-card-grid .card,
  .three-columns-grid .card,
  .home-secondary-grid .card {
    padding: 1.5rem;
  }

  /* Section headings on mobile */
  .section-white h2,
  .section-gray h2,
  .section-gray-strong h2 {
    font-size: clamp(1.625rem, 5vw, 2.25rem);
    line-height: 1.2;
  }

  /* Proof / stats card */
  .card[style*="padding:3rem"] {
    padding: 1.75rem !important;
  }

  .stats-row--inline {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }

  .stat-number {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* Dark band */
  .dark-band {
    padding: 1.5rem 1.25rem;
  }

  /* Final CTA box */
  .final-cta-box {
    padding: 2rem 1.5rem;
    text-align: left;
  }

  .final-cta-box h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    text-align: left;
  }

  /* ── SERVICES PAGE ── */

  /* Hero */
  .services-hero {
    padding: 3.5rem 0 2.5rem;
    text-align: left;
  }

  .services-hero h1 {
    font-size: clamp(1.875rem, 6vw, 2.5rem);
    line-height: 1.15;
    text-align: left;
  }

  .services-hero-sub {
    text-align: left;
    font-size: 1rem;
    margin-top: 1rem;
  }

  /* Offer row — image stacks above text on mobile */
  .pk-offer-row {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  /* Image first (column-reverse means last in DOM = top visually) */
  .pk-offer-image {
    width: 100%;
    flex: none;
  }

  .pk-offer-image .pk-img-placeholder,
  .pk-offer-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 0.75rem;
  }

  .pk-offer-text {
    flex: none;
    width: 100%;
  }

  .pk-offer-text h2 {
    font-size: clamp(1.625rem, 5vw, 2.25rem);
  }

  /* Investment line — full width on mobile */
  .pk-offer-investment-line {
    display: flex !important;
    width: 100% !important;
    margin-top: 1.25rem;
  }

  .pk-offer-investment-line--row {
    flex-direction: column;
    width: 100% !important;
  }

  .pk-offer-investment-line--row .pk-invest-cell + .pk-invest-cell {
    border-left: none;
    border-top: 1px solid #E5E7EB;
  }

  /* Offer bottom — centre on mobile */
  .pk-offer-bottom {
    align-items: stretch;
  }

  .pk-dark-band-narrow {
    max-width: 100%;
  }

  .pk-offer-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
  }

  /* Authority pill */
  .authority-pill {
    display: inline-block;
    margin-top: 0.5rem;
  }

  /* FAQ */
  .pk-faq-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  /* ── ABOUT PAGE ── */

  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
  }

  .page-hero-subtitle {
    font-size: 1.0625rem;
    margin-top: 1rem;
    line-height: 1.75;
  }

  /* Body text paragraphs */
  .space-y-6 > p,
  .space-y-6 > h2 {
    margin-bottom: 0;
  }

  .space-y-6 {
    gap: 1.25rem;
    display: flex;
    flex-direction: column;
  }

  /* Proof card */
  .case-context p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  /* Founder grid — stack vertically */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-photo-wrap {
    max-width: 200px;
  }

  .founder-photo-img {
    border-radius: 0.75rem;
  }

  .founder-bio h2 {
    font-size: 1.5rem;
  }

  /* About boxes */
  .about-boxes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Manifesto */
  .manifesto h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.25;
  }

  /* ── APPLY PAGE ── */

  /* Apply hero */
  .page-template-page-apply .page-hero {
    padding-top: 3rem;
    padding-bottom: 2rem;
    text-align: left;
  }

  .page-template-page-apply .page-hero h1 {
    text-align: left;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  /* Two-column apply layout — stack vertically */
  .pk-apply-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  /* Investment box — remove sticky, full width */
  .pk-apply-investment-col .apply-investment-block {
    position: static;
    margin-top: 0;
    padding: 1.5rem;
  }

  .apply-investment-amount {
    font-size: 2.25rem;
  }

  /* What happens next */
  .apply-selectivity-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  /* Form section */
  .page-template-page-apply #application-form {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .page-template-page-apply .contact-form-wrapper {
    padding: 1.5rem !important;
  }

  .apply-form-intro {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .apply-form-intro h2 {
    font-size: 1.5rem;
  }

  /* ── GET STARTED PAGE ── */

  .pk-br-hero {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .pk-br-h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
    text-align: left;
  }

  .pk-br-hero-body {
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
    margin-top: 1rem;
  }

  .pk-br-btn-primary {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 1.5rem;
  }

  /* Funnel diagram */
  .pk-br-funnel {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .pk-br-funnel-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .pk-br-funnel-stage {
    padding: 1.25rem;
  }

  /* Profile cards — tighter on mobile */
  .pk-br-profiles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pk-br-profile-body {
    padding: 1.25rem;
  }

  /* Agitate list */
  .pk-br-agitate-list {
    gap: 1.25rem;
  }

  .pk-br-agitate-item {
    gap: 1rem;
  }

  /* Mid CTA */
  .pk-br-mid-cta {
    margin-top: 2rem;
  }

  .pk-br-btn-dark {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ── Narrow mobile (375px) additional tightening ── */
@media (max-width: 400px) {

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section h1 {
    font-size: 1.875rem;
  }

  .page-hero h1,
  .services-hero h1,
  .pk-br-h1 {
    font-size: 1.75rem;
  }

  .card,
  .card-tight {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .final-cta-box {
    padding: 1.5rem 1.25rem;
  }
}



/* =============================================
   v51 — image placeholder support for uploaded site images
   ============================================= */
.pk-hero-split--home {
  align-items: center;
}
.pk-home-hero-copy {
  text-align: left;
}
.pk-home-hero-image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  min-height: 420px;
}
.pk-home-proof-image,
.pk-home-process-image,
.pk-about-work-image,
.pk-getstarted-image {
  min-height: 320px;
  object-fit: cover;
}
.founder-photo .pk-img-placeholder,
.founder-photo .founder-photo-img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: unset;
}
.pk-apply-trust-image {
  margin-bottom: 1.5rem;
}
.pk-apply-trust-media,
.pk-apply-trust-image .pk-img-placeholder {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  display: block;
  min-height: 260px;
  object-fit: cover;
}
.pk-br-opening-visual {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .pk-home-hero-copy {
    text-align: center;
  }
  .pk-hero-split--home .pk-hero-split-image {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }
  .pk-home-hero-image {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
}
@media (max-width: 860px) {
  .pk-apply-trust-image {
    display: none;
  }
}

/* =============================================
   v53 — Testimonials
   ============================================= */
.pk-testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}
.pk-testimonial-avatar-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #E5E7EB;
    flex-shrink: 0;
}
.pk-testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pk-testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
}
.pk-testimonial-quote p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}
.pk-testimonial-attr {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
    margin: 0;
    margin-top: auto;
}

/* =============================================
   v53 — Apply page value reinforcement
   ============================================= */
.pk-apply-includes-item {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}
.pk-apply-includes-item--bonus {
    color: #2563EB;
    font-weight: 600;
}

/* =============================================
   v53 — Comparison table (homepage)
   ============================================= */
.pk-comparison-table {
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.pk-comparison-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid #F3F4F6;
}
.pk-comparison-row:last-child { border-bottom: none; }
.pk-comparison-header {
    background: #F8F9FA;
    border-bottom: 2px solid #E5E7EB;
}
.pk-comparison-col {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}
.pk-comparison-col--feature {
    font-weight: 600;
    color: #111827;
}
.pk-comparison-col--agency {
    color: #9CA3AF;
    text-align: center;
    border-left: 1px solid #F3F4F6;
}
.pk-comparison-col--us {
    text-align: center;
    border-left: 1px solid #F3F4F6;
}
.pk-comparison-col--us.pk-comparison-col--highlight {
    font-weight: 600;
    color: #111827;
}
.pk-comparison-header .pk-comparison-col--agency {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9CA3AF;
    text-align: center;
}
.pk-comparison-header .pk-comparison-col--us {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #2563EB;
    background: #EEF4FF;
    text-align: center;
}
/* Alternating row tint for readability */
.pk-comparison-row:nth-child(even) {
    background: #FAFAFA;
}
@media (max-width: 640px) {
    .pk-comparison-row {
        grid-template-columns: 1fr 1fr;
    }
    .pk-comparison-col--feature {
        display: none;
    }
    .pk-comparison-col { padding: 0.75rem 0.875rem; font-size: 0.875rem; }
}

/* =============================================
   v53b — VS two-card comparison (homepage)
   ============================================= */

.pk-vs-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.pk-vs-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}
.pk-vs-card--us {
    border: 2px solid #2563EB;
    box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}

/* Card headers */
.pk-vs-card-header {
    padding: 1.25rem 1.5rem;
    background: #F8F9FA;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pk-vs-card-header--us {
    background: #2563EB;
    border-bottom: none;
}
.pk-vs-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #374151;
}
.pk-vs-label--us {
    color: #fff;
}
.pk-vs-recommended-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563EB;
    background: #fff;
    padding: 0.2rem 0.625rem;
    border-radius: 999px;
    margin-left: auto;
}

/* List */
.pk-vs-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}
.pk-vs-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid #F3F4F6;
}
.pk-vs-item:last-child { border-bottom: none; }

.pk-vs-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    background: #FEE2E2;
    color: #DC2626;
}
.pk-vs-icon--good {
    background: #DCFCE7;
    color: #16A34A;
}

.pk-vs-item-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9CA3AF;
    margin: 0 0 0.2rem;
}
.pk-vs-item-value {
    font-size: 0.9375rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}
.pk-vs-item-value--strong {
    font-weight: 700;
    color: #111827;
}

/* CTA inside Revenue Cues card */
.pk-vs-cta {
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid #E5E7EB;
    background: #F8FAFF;
}

/* VS divider */
.pk-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}
.pk-vs-badge {
    background: #111827;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Proof stats row */
.pk-vs-proof-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.pk-vs-proof-stat {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
}
.pk-vs-proof-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.25rem;
    line-height: 1.1;
}
.pk-vs-proof-label {
    font-size: 0.8125rem;
    color: #6B7280;
    line-height: 1.45;
    margin: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .pk-vs-wrap {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 0;
    }
    .pk-vs-divider {
        padding: 0.75rem 0;
        flex-direction: row;
    }
    .pk-vs-card--agency {
        border-radius: 1rem 1rem 0 0;
    }
    .pk-vs-card--us {
        border-radius: 0 0 1rem 1rem;
        border-top: none;
    }
    .pk-vs-proof-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .pk-vs-proof-number { font-size: 1.5rem; }
}


/* =============================================
   v54 — Case study pages
   ============================================= */

.pk-case-hero {
    padding-bottom: 3rem !important;
}

.pk-case-meta-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    margin-bottom: 0.875rem;
}

.pk-case-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E7EB;
}

.pk-case-stat {
    text-align: center;
}

.pk-case-stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
}

.pk-case-stat--after .pk-case-stat-number {
    color: #10B981;
}

.pk-case-stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.pk-case-section {
    margin-bottom: 2.5rem;
}

.pk-case-section h2 {
    margin-top: 1rem;
}

.pk-case-section p {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #374151;
}

.pk-case-image-block {
    margin: 2.5rem 0;
}

.pk-case-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    display: block;
}

.pk-case-image-caption {
    font-size: 0.875rem !important;
    color: #9CA3AF !important;
    font-style: italic;
    margin-top: 0.75rem !important;
    text-align: center;
}

.pk-case-finding-block {
    margin: 2rem 0;
}

@media (max-width: 767px) {
    .pk-case-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    .pk-case-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .pk-case-stats-row {
        grid-template-columns: 1fr 1fr;
    }
}


/* =============================================
   v54 — Value stack (services page)
   ============================================= */

.pk-value-stack {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.pk-value-stack-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    padding: 1rem 1.5rem 0.75rem;
    border-bottom: 1px solid #F3F4F6;
    margin: 0;
}

.pk-value-stack-rows {
    padding: 0 1.5rem;
}

.pk-value-stack-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.pk-value-stack-row:last-child {
    border-bottom: none;
}

.pk-value-stack-row--bonus .pk-value-stack-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.pk-value-bonus-tag {
    display: inline-block;
    background: #EFF6FF;
    color: #1D4ED8;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pk-value-stack-price {
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    flex-shrink: 0;
}

.pk-value-stack-total {
    background: #F8F9FA;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.pk-value-stack-investment {
    background: #111827;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-bottom: none !important;
}

.pk-value-stack-investment .pk-value-stack-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
}

.pk-value-saving-tag {
    display: inline-block;
    background: #10B981;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.625rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pk-value-investment-price {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
}

@media (max-width: 640px) {
    .pk-value-stack-rows { padding: 0 1rem; }
    .pk-value-stack-total, .pk-value-stack-investment {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .pk-value-stack-row { font-size: 0.875rem; }
}


/* =============================================
   v54 — Guarantee block (services page)
   ============================================= */

.pk-guarantee-block {
    margin-top: 2rem;
    background: #F0FDF4;
    border: 1.5px solid #BBF7D0;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
}

.pk-guarantee-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.pk-guarantee-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pk-guarantee-copy {}

.pk-guarantee-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 0.625rem;
}

.pk-guarantee-text {
    font-size: 1rem;
    color: #166534;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 640px) {
    .pk-guarantee-block { padding: 1.5rem; }
    .pk-guarantee-inner { flex-direction: column; gap: 1rem; }
}


/* =============================================
   v56 — Case study fix grid (2-up on desktop)
   Replaces three-columns-grid on case study pages
   so text-heavy cards have room to breathe.
   ============================================= */

/* Case study fix cards — max 2 columns always.
   Three columns is too narrow for this content. */
.pk-case-fix-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pk-case-fix-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Deliberately NOT going to 3 columns at 1024px —
   the card text needs the full 2-col width to read well */
.pk-case-fix-grid .card-tight {
    padding: 2.25rem;
}

.pk-case-fix-grid .card-copy {
    font-size: 1rem;
    line-height: 1.8;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
}





/* =============================================
   v56c — About page headshot: definitive fix
   Root cause fixed at source: removed min-height
   and object-fit: cover from the v51 founder
   photo rule. These overrides ensure nothing
   else can override back to a fixed height.
   ============================================= */

.founder-photo-wrap {
    width: 100%;
}

.founder-photo {
    width: 100%;
    background: #ffffff;
    padding: 8px;
    border-radius: 1rem !important;
    border: 1px solid rgba(17,24,39,0.10);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.founder-photo img.founder-photo-img,
.founder-photo .founder-photo-img,
.founder-photo .pk-img-placeholder {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: unset !important;
    border-radius: 0.75rem !important;
}

@media (max-width: 767px) {
    .founder-photo-wrap {
        max-width: 100% !important;
        width: 100% !important;
    }

    .founder-photo img.founder-photo-img,
    .founder-photo .founder-photo-img,
    .founder-photo .pk-img-placeholder {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        object-fit: unset !important;
    }
}


/* =============================================
   v56d — About page desktop: headshot fills
   the full height of the bio column beside it.
   Mobile unchanged (still natural height).
   ============================================= */

@media (min-width: 768px) {

    /* Grid stretches both columns to equal height */
    .founder-grid {
        align-items: stretch !important;
    }

    /* Photo wrap fills the column height — no max-width cap on desktop */
    .founder-photo-wrap {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }

    /* Photo container grows to fill wrap */
    .founder-photo {
        display: flex;
        flex-direction: column;
        flex: 1;
        height: 100%;
        width: 100%;
        max-width: 100%;
        padding: 8px;
        border-radius: 1rem !important;
    }

    /* Image fills the container, cropped to fit */
    .founder-photo img.founder-photo-img,
    .founder-photo .founder-photo-img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        flex: 1;
        object-fit: cover !important;
        object-position: center top !important;
        border-radius: 0.75rem !important;
    }
}


/* =============================================
   v57 — Implementation section grid
   Four cards, two-up on tablet, two-up on
   desktop. Rich copy so cards are tall and
   the two-column layout reads naturally.
   ============================================= */

.pk-impl-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pk-impl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

.pk-impl-card {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pk-impl-icon {
    width: 44px;
    height: 44px;
    background: #EFF6FF;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    flex-shrink: 0;
    margin-bottom: 1.125rem;
}

.pk-impl-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.pk-impl-card .card-copy {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.8;
    margin-top: 0;
}

.pk-impl-note {
    background: #F8F9FA;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.pk-impl-note p {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

@media (max-width: 639px) {
    .pk-impl-card {
        padding: 1.5rem;
    }
}


/* =============================================
   v57 — Contrast fixes across services page
   #9CA3AF (3.1:1 on white) fails AA — upgraded
   to #6B7280 (4.6:1) or #374151 (8.6:1).
   #D1D5DB on dark band upgraded to #E5E7EB.
   ============================================= */

/* Value stack label — was #9CA3AF, fails AA on white */
.pk-value-stack-label {
    color: #6B7280 !important;
}

/* Value stack bonus price — was grey/muted, upgrade to clear */
.pk-value-stack-row--bonus .pk-value-stack-price {
    color: #374151 !important;
}

/* Value stack total row text */
.pk-value-stack-total .pk-value-stack-item {
    color: #111827;
    font-weight: 700;
}

/* Dark band body text — was #D1D5DB (3.4:1) upgrade to #E5E7EB (5.1:1) */
.dark-band p {
    color: #F3F4F6 !important;
}

/* Offer investment label — was #9CA3AF, fails AA */
.pk-offer-investment-label {
    color: #6B7280 !important;
}

/* Implementation note text */
.pk-impl-note p {
    color: #374151 !important;
    font-style: normal;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Services hero sub — was #4B5563, fine but upgrade for comfort */
.services-hero-sub {
    color: #374151 !important;
}

/* Offer body copy — ensure #4B5563 is not used below 16px */
.pk-offer-text p {
    color: #374151;
}

/* FAQ intro */
.pk-faq-intro {
    color: #374151 !important;
}

/* Accordion answer copy */
.pk-accordion-content p {
    color: #374151 !important;
}

/* Inline secondary text beside CTAs */
.pk-offer-bottom .pk-offer-cta-row p,
.pk-offer-cta-row p {
    color: #374151 !important;
}


/* =============================================
   v57b — Case study fix grid wide breakout
   The heading and body text stay in the narrow
   max-w-4xl container. Only the card grid breaks
   out wider using negative margins so it fills
   a wider visual area without touching the text.
   ============================================= */

/* =============================================
   v57b — Case study fix grid wide breakout
   The heading and body text stay in the narrow
   max-w-4xl container. The card grid breaks
   out wider using negative margins, and switches
   to 3 columns at desktop where there is room.
   ============================================= */

@media (min-width: 768px) {
    .pk-case-fix-grid--wide {
        margin-left: -4rem;
        margin-right: -4rem;
    }
}

@media (min-width: 1024px) {
    .pk-case-fix-grid--wide {
        margin-left: -8rem;
        margin-right: -8rem;
        /* Now wide enough for 3 columns */
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .pk-case-fix-grid--wide {
        margin-left: 0;
        margin-right: 0;
    }
}


/* =============================================
   v57 — Apply page redesign
   ============================================= */

/* Section 1: intro copy left, image right */
.pk-apply-intro-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.pk-apply-intro-text {
    display: flex;
    flex-direction: column;
}

.pk-apply-intro-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

.pk-apply-intro-image img,
.pk-apply-intro-image .pk-img-placeholder,
.pk-apply-intro-image .pk-apply-trust-media {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

/* Section 2: light investment card */
.pk-apply-investment-v2 {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 3.5rem;
    align-items: start;
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.pk-apply-inv2-left {
    border-right: 1px solid #E5E7EB;
    padding-right: 3.5rem;
    min-width: 200px;
}

.pk-apply-inv2-left .apply-investment-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    margin: 0 0 0.75rem;
}

.pk-apply-inv2-left .apply-investment-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.pk-apply-inv2-left .apply-investment-note {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

/* Includes list on light card */
.pk-apply-includes-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pk-apply-inc2-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 1.0625rem;
    line-height: 1.45;
    text-align: left;
}

.pk-apply-inc2-icon {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 1px;
}

.pk-apply-inc2-item--core {
    color: #111827;
    font-weight: 500;
}

.pk-apply-inc2-item--core .pk-apply-inc2-icon {
    background: #DCFCE7;
    color: #166534;
}

.pk-apply-inc2-item--bonus {
    color: #1D4ED8;
    font-weight: 500;
}

.pk-apply-inc2-item--bonus .pk-apply-inc2-icon {
    background: #EFF6FF;
    color: #1D4ED8;
    font-size: 1rem;
}

.pk-apply-guarantee-v2 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #166534;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 0.625rem;
    padding: 0.875rem 1.125rem;
    margin: 0;
    text-align: left;
}

/* Mobile */
@media (max-width: 900px) {
    .pk-apply-investment-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .pk-apply-inv2-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding-right: 0;
        padding-bottom: 2rem;
        min-width: unset;
    }
}

@media (max-width: 767px) {
    .pk-apply-intro-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pk-apply-intro-image {
        order: -1;
    }

    .pk-apply-form-block {
        padding: 1.75rem;
    }

    .pk-apply-inc2-item {
        font-size: 1rem;
    }
}


/* =============================================
   v57 — Minimum 17px for all readable body
   copy on desktop. UI micro-labels (uppercase
   tracking labels, badges, footer nav, stat
   labels, image captions) stay at their
   existing sizes as they are not body copy.
   ============================================= */

/* Base paragraph — was 1rem (16px) → 1.0625rem (17px) */
p { font-size: 1.0625rem; }

/* Card copy */
.card p,
.card-copy { font-size: 1.0625rem; }

/* List items */
.bullet-list li span,
.list li,
.pk-apply-includes-v2 .pk-apply-inc2-item,
.checklist-preview li span { font-size: 1.0625rem; }

/* Accordion body */
.pk-accordion-content { font-size: 1.0625rem; }

/* Implementation cards */
.pk-impl-card .card-copy { font-size: 1.0625rem; }

/* Case study body copy */
.pk-case-section p,
.pk-case-image-caption { font-size: 1.0625rem; }

/* Form sub-labels and notes */
.apply-form-intro p,
.form-note,
.pk-apply-form-sub { font-size: 1.0625rem; }

/* Services body copy */
.pk-offer-text p,
.forensic-note,
.engagement-text,
.ideal-text-sm,
.secondary-content > p { font-size: 1.0625rem; }

/* About page body */
.founder-bio p { font-size: 1.0625rem; }

/* Step descriptions */
.step-desc { font-size: 1.0625rem; }

/* Footer brand copy */
.footer-brand p { font-size: 1.0625rem; }

/* Value stack rows */
.pk-value-stack-row { font-size: 1.0625rem; }

/* Scorecard and quiz body copy */
.quiz-intro-card p,
.quiz-result-intro,
.quiz-result-text { font-size: 1.0625rem; }

/* Nav links — keep at 15px as these are UI not body copy */
/* Footer nav links — keep at 15px */
/* Uppercase labels (.authority-pill, .capacity-signal, stat labels) — keep small */
/* Image placeholder text — keep small */


/* =============================================
   v57 — Tara and Nectar case study result grids
   Proper mobile layouts replacing inline styles
   ============================================= */

/* Nectar 2x2 result grid */
.pk-nectar-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.pk-nectar-result-card {
    text-align: center;
    padding: 1.5rem;
    background: #F0FDF4;
    border-radius: 0.75rem;
}

.pk-nectar-result-number {
    font-size: 1.625rem;
    font-weight: 800;
    color: #166534;
    margin: 0 0 0.375rem;
    line-height: 1.2;
}

.pk-nectar-result-label {
    font-size: 1rem;
    color: #15803D;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Tara London 3-column tier grid */
.pk-tara-london-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pk-tara-tier-card {
    background: #F8F9FA;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.pk-tara-tier-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.pk-tara-tier-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.25rem;
}

.pk-tara-tier-rev {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

.pk-tara-tier-roi {
    font-size: 1rem;
    color: #10B981;
    font-weight: 600;
    margin: 0.5rem 0 0;
}

/* Tara London totals dark bar */
.pk-tara-totals-bar {
    margin-top: 1.5rem;
    background: #111827;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.pk-tara-totals-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0;
}

.pk-tara-totals-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0.25rem 0 0;
}

.pk-tara-totals-number--green {
    color: #10B981;
}

/* Tara Dubai 2x2 grid */
.pk-tara-dubai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.pk-tara-dubai-card {
    text-align: center;
    padding: 1.5rem;
    background: #F0FDF4;
    border-radius: 0.75rem;
}

.pk-tara-dubai-card--dark {
    background: #111827;
}

.pk-tara-dubai-number {
    font-size: 2rem;
    font-weight: 800;
    color: #166534;
    margin: 0 0 0.375rem;
    line-height: 1.2;
}

.pk-tara-dubai-number--green {
    color: #10B981;
}

.pk-tara-dubai-label {
    font-size: 1rem;
    color: #15803D;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.pk-tara-dubai-label--green {
    color: #6EE7B7;
}

/* Mobile: Tara London 3-col → 1-col */
@media (max-width: 640px) {
    .pk-tara-london-grid {
        grid-template-columns: 1fr;
    }

    .pk-tara-totals-bar {
        flex-direction: column;
        text-align: center;
    }

    .pk-tara-totals-bar > div:last-child {
        text-align: center;
    }

    .pk-tara-tier-number {
        font-size: 1.375rem;
    }

    .pk-nectar-result-number {
        font-size: 1.375rem;
    }

    .pk-tara-dubai-number {
        font-size: 1.625rem;
    }
}


/* =============================================
   v57 — Blue price amounts across all pages
   Makes investment numbers pop visually.
   All blues used here pass WCAG AA (4.5:1+)
   against white and light grey backgrounds.
   ============================================= */

/* Services page offer prices */
.pk-offer-investment-amount {
    color: #1D4ED8 !important;
}

/* Apply page price */
.apply-investment-amount,
.pk-apply-inv2-left .apply-investment-amount {
    color: #1D4ED8 !important;
}

/* Value stack investment price row */
.pk-value-investment-price {
    color: #ffffff !important;
}

/* Services.css investment amount */
.investment-amount {
    color: #1D4ED8 !important;
}

/* =============================================
   v57 — WCAG AA contrast fixes
   Minimum 4.5:1 on white (#ffffff)
   Minimum 3:1 on large text (18px+ bold)
   ============================================= */

/* #6B7280 = 4.6:1 on white — passes AA body text */
/* #9CA3AF = 2.8:1 on white — FAILS, upgrade to #6B7280 */
/* #4B5563 = 7.4:1 on white — passes */
/* #374151 = 8.6:1 on white — passes */

/* Fix any remaining #9CA3AF on white backgrounds */
.pk-value-stack-label { color: #6B7280 !important; }
.stat-label           { color: #6B7280 !important; }
.pk-case-stat-label   { color: #6B7280 !important; }
.apply-investment-label,
.pk-apply-inv2-left .apply-investment-label { color: #6B7280 !important; }

/* Footer nav — was #6B7280 (4.6:1) — passes, keep */
/* Footer brand paragraph — was #6B7280 — passes */

/* Dark band: ensure body text has sufficient contrast on #111827 */
.dark-band p          { color: #F3F4F6 !important; }  /* 15.8:1 */
.dark-band p + p      { color: #D1D5DB !important; }  /* 7.4:1 */

/* Card copy on white: ensure #4B5563 not used below 17px */
.card-copy            { color: #374151; }

/* Placeholder text in quiz/scorecard forms */
.form-input::placeholder { color: #9CA3AF; } /* OK — placeholder not body copy */

/* Authority pill text — white on #1F2937 = 12.6:1, passes WCAG AA and AAA */
.authority-pill { color: #F9FAFB !important; }

/* Capacity signal */
.capacity-signal { color: #ffffff !important; } /* white on #2563EB = 4.6:1, passes WCAG AA */

/* ==============================================
   v58 NEW COMPONENTS
   ============================================== */

/* ------------------------------------------
   Proof pair cards (homepage secondary proof)
   ------------------------------------------ */
.pk-proof-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.pk-proof-pair-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem;
}

.pk-proof-pair-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6B7280;
    margin: 0 0 0.75rem;
}

.pk-proof-pair-stat {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #10B981;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.pk-proof-pair-desc {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 640px) {
    .pk-proof-pair {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------
   Authority grid (homepage 15-year section)
   ------------------------------------------ */
.pk-authority-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .pk-authority-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pk-authority-item {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.75rem;
}

.pk-authority-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #F0FDF4;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #10B981;
}

.pk-authority-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem;
}

.pk-authority-item p {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 640px) {
    .pk-authority-grid {
        grid-template-columns: 1fr;
    }

    .pk-proof-pair-stat {
        font-size: 2rem;
    }
}

/* ------------------------------------------
   About page principles grid (v58)
   Four cards, 2-up on tablet, 4-up on desktop
   ------------------------------------------ */
.pk-about-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .pk-about-principles {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .pk-about-principles {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ------------------------------------------
   Apply page: reassurance grid (3-up → 1-up)
   ------------------------------------------ */
.pk-apply-reassurance {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pk-apply-reassurance {
        grid-template-columns: 1fr !important;
    }
}
