/* =============================================
   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;
    }
}


/* =============================================
   Revenue Cues v62 - bold-v2 visual alignment
   Exact palette from the visual brief.
   ============================================= */
:root {
  --rc-hero-bg: #13172A;
  --rc-hero-text: #F5F5F5;
  --rc-red: #C0392B;
  --rc-red-hover: #96281B;
  --rc-page-bg: #FFFFFF;
  --rc-body: #1C1C1C;
  --rc-heading: #0D0D0D;
  --rc-divider: #0D0D0D;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--rc-page-bg);
  color: var(--rc-body);
}

.container { max-width: 1160px; }

h1, h2, h3,
.hero-section h1,
.page-hero h1,
.services-hero h1,
.pk-case-hero h1,
.final-cta-box h2 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.04em !important;
  color: var(--rc-heading);
  line-height: 0.98;
}

p, li, a, button, input, textarea, label { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
p, li { color: var(--rc-body); }

.hero-section,
.page-hero,
.services-hero,
.pk-case-hero {
  background: var(--rc-hero-bg) !important;
  color: var(--rc-hero-text) !important;
  border-bottom: 6px solid var(--rc-red);
}

.hero-section h1,
.page-hero h1,
.services-hero h1,
.pk-case-hero h1,
.hero-section p,
.page-hero p,
.services-hero p,
.pk-case-hero p,
.hero-section .hero-subtitle,
.page-hero .page-hero-subtitle,
.services-hero .services-hero-sub {
  color: var(--rc-hero-text) !important;
}

.pk-highlight {
  color: var(--rc-red) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.btn,
.btn-primary,
.btn-secondary,
.pk-br-btn-primary,
.pk-br-btn-dark {
  border-radius: 0 !important;
  box-shadow: none !important;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.pk-br-btn-primary {
  background: var(--rc-red) !important;
  border: 1px solid var(--rc-red) !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.pk-br-btn-primary:hover,
.pk-br-btn-primary:focus {
  background: var(--rc-red-hover) !important;
  border-color: var(--rc-red-hover) !important;
  color: #fff !important;
  transform: none !important;
}

.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited {
  background: transparent !important;
  border: 1px solid rgba(245,245,245,0.55) !important;
  color: var(--rc-hero-text) !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255,255,255,0.08) !important;
  color: var(--rc-hero-text) !important;
}

.pk-secondary-cta-link {
  color: var(--rc-red) !important;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.section-white,
.section-gray,
.section-gray-strong {
  border-top: 1px solid var(--rc-divider);
}

.section-gray,
.section-gray-strong { background: #FFFFFF !important; }
.section-dark,
.dark-band { background: var(--rc-hero-bg) !important; }
.dark-band p, .dark-band li, .dark-band h2, .dark-band h3 { color: var(--rc-hero-text) !important; }

.card,
.pk-proof-pair-card,
.final-cta-box,
.pk-offer-image,
.contact-form-wrapper,
.pk-value-stack,
.pk-guarantee-block,
.pk-accordion-item {
  border-radius: 0 !important;
  box-shadow: none !important;
  border-color: #0D0D0D !important;
}

.authority-pill,
.capacity-signal,
.quiz-pill,
.result-profile-pill {
  border-radius: 0 !important;
  background: var(--rc-hero-bg) !important;
  color: var(--rc-hero-text) !important;
  letter-spacing: 0.08em;
}

.site-header,
.site-footer {
  background: var(--rc-hero-bg) !important;
  color: var(--rc-hero-text) !important;
}
.site-header a,
.site-footer a,
.site-footer p,
.site-footer li { color: var(--rc-hero-text) !important; }
.primary-nav a:hover,
.footer-nav-list a:hover { color: #ffffff !important; }

.pk-client-name,
.stat-number,
.pk-proof-pair-stat,
.pk-offer-investment-amount {
  color: var(--rc-red) !important;
}

.pk-check-list {
  list-style: none;
  padding: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.pk-check-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.7;
}
.pk-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--rc-red);
}

@media (max-width: 767px) {
  .hero-section h1,
  .page-hero h1,
  .services-hero h1,
  .pk-case-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.25rem) !important;
    line-height: 0.95;
  }
  .hero-section,
  .page-hero,
  .services-hero,
  .pk-case-hero {
    padding-top: 4.5rem !important;
    padding-bottom: 4rem !important;
  }
}

/* =============================================
   Revenue Cues v63 landing-page alignment
   Source: revenue-cues-landing-V1.8-day-31-bullets.html
   Pale blue grid background, Plus Jakarta Sans, green CTAs,
   rounded proof cards and dashboard-style hero visual.
   ============================================= */
:root {
  --rc-paper: #f7fbff;
  --rc-paper-soft: #f2f7fd;
  --rc-paper-strong: #e5eef9;
  --rc-surface: #ffffff;
  --rc-surface-warm: #fff7e6;
  --rc-ink: #020b18;
  --rc-ink-soft: #14243a;
  --rc-muted: #334155;
  --rc-muted-strong: #1f2f46;
  --rc-navy: #061a34;
  --rc-navy-deep: #031225;
  --rc-blue: #0f5fae;
  --rc-blue-dark: #073f7a;
  --rc-blue-soft: #dbeafe;
  --rc-green: #08795f;
  --rc-green-hover: #06664f;
  --rc-green-soft: #dcefe8;
  --rc-line: rgba(3, 18, 37, 0.15);
  --rc-line-strong: rgba(3, 18, 37, 0.24);
  --rc-radius-sm: 10px;
  --rc-radius-md: 14px;
  --rc-radius-lg: 22px;
  --rc-radius-xl: 30px;
  --rc-shadow: 0 30px 78px rgba(7, 27, 56, 0.14);
  --rc-shadow-soft: 0 1px 0 rgba(255,255,255,0.92) inset, 0 16px 42px rgba(7, 27, 56, 0.09);
  --rc-max: 1160px;
}

html { font-size: 17px; }
body {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  background:
    radial-gradient(circle at 18% -6%, rgba(142, 223, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 4%, rgba(47, 128, 237, 0.12), transparent 33rem),
    linear-gradient(180deg, #f8fbff 0%, #edf5fc 42%, #f8fbff 100%) !important;
  color: var(--rc-ink) !important;
  font-weight: 500;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 37, 76, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 37, 76, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 42%, transparent 82%);
}

.container { max-width: var(--rc-max) !important; }
h1, h2, h3, h4,
.hero-section h1,
.page-hero h1,
.services-hero h1,
.pk-case-hero h1,
.final-cta-box h2 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif !important;
  color: var(--rc-ink) !important;
  font-weight: 900 !important;
  letter-spacing: -0.055em !important;
  text-transform: none !important;
  text-wrap: balance;
}
h1, .hero-section h1 { font-size: clamp(3rem, 5.3vw, 5.35rem) !important; line-height: 0.98 !important; }
h2, .final-cta-box h2 { font-size: clamp(2.35rem, 3.8vw, 3.9rem) !important; line-height: 1.04 !important; }
h3 { font-size: clamp(1.2rem, 1.45vw, 1.45rem) !important; line-height: 1.18 !important; }
p, li, .card-copy, .hero-subtitle, .services-hero-sub, .lead, .small-copy {
  color: var(--rc-ink-soft) !important;
  font-size: clamp(1.02rem, 1.1vw, 1.12rem);
  line-height: 1.68;
  font-weight: 650;
}
.hero-subtitle, .services-hero-sub {
  max-width: 680px;
  font-size: clamp(1.16rem, 1.45vw, 1.34rem) !important;
  line-height: 1.62 !important;
  color: #102136 !important;
  font-weight: 700 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 255, 0.88) !important;
  border-bottom: 1px solid rgba(8, 37, 76, 0.10) !important;
  color: var(--rc-ink) !important;
  backdrop-filter: blur(14px);
  box-shadow: none !important;
}
.header-inner { min-height: 72px; }
.site-header a, .primary-nav a { color: var(--rc-ink-soft) !important; font-weight: 800; }
.primary-nav a:hover { color: var(--rc-blue-dark) !important; }
.site-logo img { filter: none !important; }
.mobile-nav { background: var(--rc-paper) !important; }
.mobile-nav a { color: var(--rc-ink) !important; }
.mobile-menu-toggle span { background: var(--rc-ink) !important; }

.btn,
.btn-primary,
.pk-br-btn-primary,
input[type="submit"],
button[type="submit"] {
  border-radius: 12px !important;
  font-family: "Plus Jakarta Sans", Inter, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  min-height: 48px;
  box-shadow: none;
}
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.pk-br-btn-primary,
.pk-br-btn-primary:link,
.pk-br-btn-primary:visited,
input[type="submit"],
button[type="submit"] {
  background: var(--rc-green) !important;
  color: #ffffff !important;
  border: 1px solid rgba(6, 82, 64, 0.28) !important;
  box-shadow: 0 14px 30px rgba(8, 121, 95, 0.24) !important;
}
.btn-primary:hover,
.btn-primary:focus,
.pk-br-btn-primary:hover,
.pk-br-btn-primary:focus,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--rc-green-hover) !important;
  color: #ffffff !important;
  border-color: var(--rc-green-hover) !important;
  box-shadow: 0 18px 40px rgba(8, 121, 95, 0.30) !important;
  transform: translateY(-1px) !important;
}
.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited {
  background: rgba(255,255,255,0.82) !important;
  color: var(--rc-navy) !important;
  border: 1px solid rgba(3,18,37,0.30) !important;
}
.btn-secondary:hover { background: #fff !important; color: var(--rc-blue-dark) !important; }
.pk-secondary-cta-link { color: var(--rc-blue-dark) !important; border-bottom: 1px solid currentColor; font-weight: 900; }

.section-white,
.section-gray,
.section-gray-strong {
  background: transparent !important;
  border-top: 0 !important;
}
.section-gray,
.section-gray-strong,
.section-muted {
  background: rgba(237, 245, 252, 0.62) !important;
  border-block: 1px solid rgba(8, 37, 76, 0.10) !important;
}
.py-section, .py-section-lg { padding-top: clamp(4.5rem, 7vw, 7rem) !important; padding-bottom: clamp(4.5rem, 7vw, 7rem) !important; }

.hero-section,
.services-hero,
.page-hero,
.pk-case-hero {
  background: transparent !important;
  color: var(--rc-ink) !important;
  padding: clamp(4.2rem, 7vw, 6.6rem) 0 clamp(4.8rem, 8vw, 7.4rem) !important;
  border-bottom: 0 !important;
}
.hero-section::before,
.services-hero::before,
.page-hero::before,
.pk-case-hero::before { display: none !important; }
.pk-hero-split { display: grid !important; grid-template-columns: minmax(0, 0.92fr) minmax(540px, 0.98fr) !important; gap: clamp(2.4rem, 4.6vw, 4.8rem) !important; align-items: center !important; }
.pk-home-hero-copy { max-width: 720px; }
.pk-highlight,
.hero-section h1 .pk-highlight,
.services-hero h1 .pk-highlight,
.page-hero h1 .pk-highlight {
  color: var(--rc-blue-dark) !important;
  background: none !important;
  box-shadow: none !important;
}
.capacity-subline,
.hero-section p[style*="D1D5DB"] { color: var(--rc-muted-strong) !important; }

.authority-pill,
.capacity-signal,
.quiz-pill,
.result-profile-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 0.48rem;
  width: fit-content;
  background: transparent !important;
  color: var(--rc-blue-dark) !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase;
}
.authority-pill::before,
.capacity-signal::before,
.quiz-pill::before,
.result-profile-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rc-green);
  flex: 0 0 auto;
}

.card,
.pk-proof-pair-card,
.final-cta-box,
.pk-offer-image,
.contact-form-wrapper,
.pk-value-stack,
.pk-guarantee-block,
.pk-accordion-item,
.pk-case-card,
.pk-form-card,
.pk-result-card,
.pk-checklist-card {
  background: var(--rc-surface) !important;
  border: 1px solid rgba(3, 18, 37, 0.20) !important;
  border-radius: var(--rc-radius-xl) !important;
  box-shadow: var(--rc-shadow-soft) !important;
  color: var(--rc-ink) !important;
}
.card-tight { padding: clamp(1.15rem, 2.2vw, 1.45rem) !important; }
.card-gradient,
.dark-band,
.section-dark,
.pk-dark-band-narrow {
  background: radial-gradient(circle at 18% 10%, rgba(142,223,255,0.12), transparent 24rem), linear-gradient(135deg, #031225, #05172e 68%, #06264d) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: var(--rc-radius-xl) !important;
  box-shadow: var(--rc-shadow) !important;
}
.card-gradient h3,
.card-gradient p,
.dark-band p,
.dark-band li,
.dark-band h2,
.dark-band h3,
.section-dark p,
.section-dark h2,
.section-dark h3,
.pk-dark-band-narrow p { color: rgba(255,255,255,0.90) !important; }
.card-gradient h3, .dark-band h2, .dark-band h3 { color: #ffffff !important; }

.pk-logo-strip-label {
  color: var(--rc-muted-strong) !important;
  font-weight: 900 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase;
  font-size: 0.86rem !important;
}
.pk-logo-strip {
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(8,37,76,0.13) !important;
  border-radius: var(--rc-radius-xl) !important;
  box-shadow: var(--rc-shadow-soft) !important;
}
.pk-client-name {
  color: var(--rc-ink-soft) !important;
  font-weight: 900 !important;
}

.stat-number,
.pk-proof-pair-stat,
.pk-offer-investment-amount,
.pk-case-stat-value,
.result-score-number {
  color: var(--rc-navy) !important;
  font-weight: 900 !important;
  letter-spacing: -0.065em !important;
}
.stats-row,
.pk-proof-pair,
.three-columns-grid,
.four-card-grid { gap: 1rem !important; }
.pk-proof-pair-card { padding: clamp(1.25rem, 2.4vw, 1.65rem) !important; }
.pk-proof-pair-label,
.stat-label,
.pk-offer-investment-label {
  color: var(--rc-blue-dark) !important;
  font-weight: 900 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase;
}

.final-cta-box {
  background: var(--rc-surface) !important;
  border: 1px solid var(--rc-line-strong) !important;
  border-radius: var(--rc-radius-xl) !important;
  box-shadow: var(--rc-shadow) !important;
  padding: clamp(2rem, 4.6vw, 3.6rem) !important;
}
.final-cta-box p { color: var(--rc-ink-soft) !important; }

.pk-check-list li,
.included-list li,
.promise-list li,
.fit-list li {
  position: relative;
  padding-left: 2.15rem !important;
  color: var(--rc-ink-soft) !important;
  font-weight: 700;
  line-height: 1.65;
}
.pk-check-list li::before,
.included-list li::before,
.promise-list li::before,
.fit-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 30px !important;
  height: 30px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: var(--rc-green-soft) !important;
  color: #035f49 !important;
  border: 1px solid rgba(3,95,73,0.24) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* Home hero proof board, adapted from the landing page visual. */
.rc-landing-proof-visual {
  position: relative !important;
  width: min(100%, 630px) !important;
  height: 620px !important;
  min-height: 620px !important;
  margin-inline: auto !important;
  overflow: visible !important;
  isolation: isolate !important;
  container-type: inline-size;
}
.rc-proof-board {
  position: absolute;
  inset: 26px 12px 22px 84px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 78px rgba(8, 37, 76, 0.14), 0 1px 0 rgba(255,255,255,0.96) inset;
  overflow: hidden;
  z-index: 1;
}
.rc-board-window {
  position: absolute;
  inset: 16px;
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr) auto;
  border-radius: 31px;
  border: 1px solid rgba(8,37,76,0.13);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,254,0.95));
  box-shadow: 0 1px 0 rgba(255,255,255,0.92) inset;
  overflow: hidden;
}
.rc-board-window::after {
  content: "";
  position: absolute;
  inset: 64px 0 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 38%, transparent 0 78px, rgba(17,87,177,0.10) 79px 80px, transparent 81px 128px, rgba(17,87,177,0.08) 129px 130px, transparent 131px 178px, rgba(17,87,177,0.06) 179px 180px, transparent 181px),
    linear-gradient(90deg, rgba(17,87,177,0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17,87,177,0.065) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.80), rgba(239,247,253,0.78));
  background-size: auto, 32px 32px, 32px 32px, auto;
  pointer-events: none;
}
.rc-board-topline {
  position: relative;
  z-index: 2;
  height: 64px;
  padding: 0 1.45rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(8,37,76,0.10);
}
.rc-board-dots { display: flex; gap: 0.48rem; }
.rc-board-dots span { width: 11px; height: 11px; border-radius: 999px; background: rgba(7,17,31,0.18); }
.rc-system-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.56rem 0.92rem;
  border-radius: 999px;
  background: #e4f4ec;
  border: 1px solid #b8dccd;
  color: #064f3f;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 850;
}
.rc-system-status span { width: 9px; height: 9px; border-radius: 999px; background: var(--rc-green); }
.rc-proof-radar {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 1.1rem 2rem 0;
  overflow: visible;
}
.rc-central-result {
  position: relative;
  z-index: 2;
  width: min(100%, 330px);
  max-width: 330px;
  text-align: center;
  transform: translateY(-46px);
}
.rc-central-result strong {
  display: block;
  color: #020b1b;
  font-size: clamp(4.45rem, 13.5cqw, 5.65rem);
  line-height: 0.86;
  letter-spacing: -0.072em;
  font-weight: 850;
}
.rc-central-result span {
  display: block;
  max-width: 295px;
  margin: 0.75rem auto 0;
  color: #13243a;
  font-size: clamp(0.98rem, 2.45cqw, 1.08rem);
  line-height: 1.32;
  font-weight: 800;
}
.rc-delivery-row {
  position: relative;
  z-index: 2;
  width: calc(100% - 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 auto 1rem;
}
.rc-delivery-row div {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17,87,177,0.14);
  box-shadow: 0 10px 26px rgba(8,37,76,0.06), 0 1px 0 rgba(255,255,255,0.98) inset;
}
.rc-delivery-row span { color: #526177; font-size: 0.9rem; line-height: 1.15; font-weight: 800; }
.rc-delivery-row strong { color: #020b1b; font-size: clamp(1.28rem, 3.9cqw, 1.58rem); line-height: 1.04; letter-spacing: -0.045em; white-space: nowrap; }
.rc-proof-float {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 190px;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(8,37,76,0.08);
  box-shadow: 0 22px 54px rgba(8,37,76,0.12), 0 1px 0 rgba(255,255,255,0.98) inset;
}
.rc-proof-float strong { color: #020b1b; font-size: clamp(1.65rem, 4.2cqw, 2.05rem); line-height: 0.98; letter-spacing: -0.045em; font-weight: 850; white-space: nowrap; }
.rc-proof-float span { margin-top: 0.48rem; color: #536177; font-size: 0.84rem; line-height: 1.28; font-weight: 760; }
.rc-float-recovered { left: 0; top: 132px; width: 190px; }
.rc-float-members { left: 22px; top: 340px; width: 196px; }
.rc-float-return { right: 0; top: 340px; width: 210px; }

.site-footer {
  background: rgba(248,251,255,0.88) !important;
  border-top: 1px solid rgba(8,37,76,0.10) !important;
  color: var(--rc-muted) !important;
}
.site-footer a, .site-footer p, .site-footer li, .footer-nav-list a { color: var(--rc-muted-strong) !important; }

@media (max-width: 1120px) {
  .pk-hero-split { grid-template-columns: 1fr !important; }
  .pk-home-hero-copy { max-width: 760px; }
  .rc-landing-proof-visual { width: min(100%, 650px) !important; height: 620px !important; min-height: 620px !important; }
}
@media (max-width: 760px) {
  html { font-size: 16px; }
  body::before { background-size: 42px 42px; }
  h1, .hero-section h1 { font-size: clamp(2.85rem, 13.5vw, 4.35rem) !important; line-height: 1.04 !important; }
  h2, .final-cta-box h2 { font-size: clamp(2.25rem, 10.5vw, 3.35rem) !important; }
  .container { padding-left: 1rem !important; padding-right: 1rem !important; }
  .hero-section, .services-hero, .page-hero, .pk-case-hero { padding: 3.4rem 0 3.2rem !important; }
  .hero-subtitle, .services-hero-sub { font-size: 1.13rem !important; line-height: 1.62 !important; }
  .rc-landing-proof-visual { width: 100% !important; height: auto !important; min-height: 0 !important; display: grid !important; gap: 0.85rem !important; overflow: visible !important; }
  .rc-proof-board { position: relative; inset: auto; min-height: 430px; border-radius: 30px; overflow: hidden; }
  .rc-board-window { inset: 12px; border-radius: 24px; grid-template-rows: 58px minmax(238px, 1fr) auto; }
  .rc-board-topline { height: 58px; padding: 0 1rem; }
  .rc-board-dots span { width: 9px; height: 9px; }
  .rc-system-status { max-width: 154px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.86rem; padding: 0.48rem 0.68rem; }
  .rc-central-result { width: 280px; max-width: 280px; transform: translateY(-8px); }
  .rc-central-result strong { font-size: clamp(4rem, 19vw, 5.2rem); }
  .rc-central-result span { font-size: 0.98rem; line-height: 1.32; }
  .rc-delivery-row { width: calc(100% - 28px); gap: 0.65rem; margin-bottom: 0.85rem; }
  .rc-delivery-row div { min-height: 70px; padding: 0.75rem; border-radius: 15px; }
  .rc-delivery-row span { font-size: 0.82rem; }
  .rc-delivery-row strong { font-size: 1.25rem; }
  .rc-proof-float { position: relative; inset: auto; width: 100% !important; min-height: 0; padding: 1rem; border-radius: 18px; }
  .rc-proof-float strong { font-size: 2rem; }
  .rc-proof-float span { font-size: 0.95rem; }
}
@media (max-width: 380px) {
  .rc-delivery-row { grid-template-columns: 1fr; }
  .rc-proof-board { min-height: 500px; }
}

/* ======================================================================
   Revenue Cues v63.1 correction: match the uploaded landing page Bold V2 style
   Source style: dark navy hero/header, orange CTAs, condensed uppercase headings,
   white/grey editorial sections, black line work and minimal rounded corners.
   ====================================================================== */
:root {
  --rc-bv2-navy: #13172a;
  --rc-bv2-navy-deep: #0c1021;
  --rc-bv2-ink: #0d0d0d;
  --rc-bv2-body: #1c1c1c;
  --rc-bv2-white: #ffffff;
  --rc-bv2-near-white: #f5f5f5;
  --rc-bv2-grey: #eeeeee;
  --rc-bv2-line: #111111;
  --rc-bv2-orange: #ff5500;
  --rc-bv2-orange-hover: #e84d00;
  --rc-bv2-focus: #ffd166;
  --rc-bv2-blue-accent: #A9D8FF;
  --rc-bv2-green-soft: #d8f5e9;
  --rc-bv2-green: #075a43;
  --rc-bv2-max: 1160px;
}

html { font-size: 16px; }
body {
  background: var(--rc-bv2-white) !important;
  color: var(--rc-bv2-body) !important;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 500;
  line-height: 1.55;
}
body::before { display: none !important; }
.container,
.max-w-7xl,
.max-w-6xl,
.max-w-5xl,
.max-w-4xl,
.max-w-3xl {
  max-width: var(--rc-bv2-max) !important;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--rc-bv2-navy) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}
.header-inner { min-height: 68px !important; }
.primary-nav ul a,
.primary-nav a:not(.btn),
.mobile-menu-toggle,
.site-header .menu-item a {
  color: var(--rc-bv2-near-white) !important;
  font-weight: 800 !important;
}
.primary-nav ul a:hover { color: var(--rc-bv2-blue-accent) !important; }
.site-logo img { display: none !important; }
.site-logo-desktop,
.site-logo-mobile {
  display: inline-flex !important;
  align-items: center;
  gap: 0.18rem;
  text-decoration: none !important;
  min-height: 38px;
}
.site-logo-desktop::before,
.site-logo-mobile::before {
  content: "REVENUE";
  color: var(--rc-bv2-near-white);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.site-logo-desktop::after,
.site-logo-mobile::after {
  content: "CUES";
  color: #3ea0ff;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.mobile-menu-toggle span { background: var(--rc-bv2-near-white) !important; }

/* Typography */
h1, h2, h3,
.hero-section h1,
.services-hero h1,
.page-hero h1,
.pk-case-hero h1,
.final-cta-box h2,
.card h3,
.pk-proof-pair-stat,
.stat-number,
.pk-offer-investment-amount {
  font-family: "Barlow Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--rc-bv2-ink) !important;
  font-weight: 800 !important;
  text-wrap: balance;
}
h1, .hero-section h1, .services-hero h1, .page-hero h1, .pk-case-hero h1 {
  font-size: clamp(3.25rem, 6.1vw, 5.9rem) !important;
  line-height: 0.9 !important;
  max-width: 760px !important;
}
h2, .final-cta-box h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.1rem) !important;
  line-height: 0.92 !important;
}
h3 { font-size: clamp(1.35rem, 1.85vw, 1.85rem) !important; line-height: 1 !important; }
p, li, .card-copy, .hero-subtitle, .services-hero-sub, .lead {
  color: var(--rc-bv2-body) !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 650 !important;
  line-height: 1.62 !important;
}
.pk-highlight,
.services-hero h1 .pk-highlight,
.hero-section h1 .pk-highlight {
  color: var(--rc-bv2-blue-accent) !important;
  font-family: "DM Serif Display", Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: -0.018em !important;
}

/* CTAs */
.btn,
a.btn,
button.btn {
  min-height: 46px;
  border-radius: 6px !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
  text-decoration: none !important;
}
.btn-primary,
.primary-nav .btn-primary,
.mobile-nav-cta,
.hero-cta .btn-primary,
.hero-section .btn-primary,
.services-hero .btn-primary,
.final-cta-box .btn-primary,
.investment-actions .btn-primary,
.pk-card-cta .btn-primary,
a[href*="schedule"].btn-primary {
  background: var(--rc-bv2-orange) !important;
  border: 2px solid var(--rc-bv2-orange) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(3,18,37,0.34) !important;
  box-shadow: 0 15px 28px rgba(255,85,0,0.22), 0 2px 0 rgba(3,18,37,0.18) !important;
}
.btn-primary:hover,
.primary-nav .btn-primary:hover,
.mobile-nav-cta:hover,
.hero-cta .btn-primary:hover,
.services-hero .btn-primary:hover,
.final-cta-box .btn-primary:hover,
.investment-actions .btn-primary:hover {
  background: var(--rc-bv2-orange-hover) !important;
  border-color: var(--rc-bv2-orange-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(255,85,0,0.28), 0 2px 0 rgba(3,18,37,0.2) !important;
}
.btn-primary:focus-visible { outline: 3px solid var(--rc-bv2-focus) !important; outline-offset: 4px !important; }
.pk-secondary-cta-link,
.capacity-subline a {
  color: inherit !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.18em !important;
  font-weight: 900 !important;
}

/* Hero */
.hero-section,
.services-hero,
.page-hero,
.pk-case-hero {
  background: var(--rc-bv2-navy) !important;
  color: var(--rc-bv2-near-white) !important;
  border-bottom: 3px solid var(--rc-bv2-orange) !important;
  padding: clamp(4.2rem, 7vw, 6.8rem) 0 clamp(4.4rem, 7vw, 6.8rem) !important;
}
.hero-section h1,
.hero-section p,
.hero-section span,
.hero-section .hero-subtitle,
.services-hero h1,
.services-hero p,
.services-hero span,
.services-hero .services-hero-sub,
.page-hero h1,
.page-hero p,
.pk-case-hero h1,
.pk-case-hero p {
  color: var(--rc-bv2-near-white) !important;
}
.hero-section .pk-highlight,
.services-hero .pk-highlight,
.page-hero .pk-highlight,
.pk-case-hero .pk-highlight { color: var(--rc-bv2-blue-accent) !important; }
.hero-subtitle,
.services-hero-sub { max-width: 620px !important; font-size: clamp(1.03rem, 1.4vw, 1.2rem) !important; }

/* Services hero should not look like the blue-grid version. Give it the landing-page split and board note feel. */
.services-hero > .container {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr) !important;
  gap: clamp(2rem, 5vw, 4.5rem) !important;
  align-items: center !important;
  text-align: left !important;
  max-width: var(--rc-bv2-max) !important;
}
.services-hero > .container::after {
  content: "30 DAY\A Money Map Build\A Pages · Payments · Proof · Emails";
  white-space: pre-line;
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 2rem;
  background: #f7efe3;
  color: #111111;
  border: 2px solid rgba(245,245,245,0.72);
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.32);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(1.2deg);
}
.services-hero > .container > * { max-width: 620px; }
.services-hero .fade-in-up.delay-2 { justify-content: flex-start !important; }
.services-hero .pk-secondary-cta-link { color: var(--rc-bv2-near-white) !important; }

/* Sections and rhythm */
.section-white,
.section-gray,
.py-section-lg,
.pk-faq-section,
section:not(.hero-section):not(.services-hero):not(.page-hero):not(.pk-case-hero) {
  border-top: 1px solid var(--rc-bv2-line) !important;
}
.section-white,
section.section-white { background: var(--rc-bv2-white) !important; }
.section-gray,
section.section-gray { background: var(--rc-bv2-grey) !important; }
.py-section-lg { padding-top: clamp(4.5rem, 7vw, 7rem) !important; padding-bottom: clamp(4.5rem, 7vw, 7rem) !important; }
.authority-pill,
.pk-logo-strip-label,
.pk-proof-pair-label,
.pk-offer-investment-label {
  background: transparent !important;
  border: 0 !important;
  color: var(--rc-bv2-orange) !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.authority-pill::before { background: var(--rc-bv2-orange) !important; }

/* Cards: editorial black linework, not rounded SaaS cards. */
.card,
.pk-proof-pair-card,
.final-cta-box,
.dark-band,
.pk-offer-image,
.pk-img-placeholder,
.pk-accordion-item,
.pk-offer-row,
.pk-logo-strip,
.stat-before,
.stat-after {
  background: var(--rc-bv2-white) !important;
  color: var(--rc-bv2-ink) !important;
  border: 1px solid var(--rc-bv2-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.card-gradient,
.dark-band {
  background: var(--rc-bv2-navy) !important;
  color: var(--rc-bv2-near-white) !important;
  border-color: var(--rc-bv2-navy) !important;
}
.card-gradient h3,
.card-gradient p,
.dark-band p,
.card-gradient .card-copy { color: var(--rc-bv2-near-white) !important; }
.card.card-tight { padding: 1.35rem !important; }
.three-columns-grid,
.four-card-grid { gap: 1rem !important; }
.pk-offer-row {
  padding: clamp(1.6rem, 3vw, 2.25rem) !important;
  background: transparent !important;
  border: 0 !important;
}
.pk-offer-image,
.pk-img-placeholder { min-height: 300px; }
.pk-offer-investment-line {
  display: inline-flex !important;
  gap: 0.8rem !important;
  align-items: baseline !important;
  background: #fff8e7 !important;
  border: 1px solid var(--rc-bv2-orange) !important;
  border-radius: 0 !important;
  padding: 0.55rem 0.9rem !important;
}
.pk-offer-investment-amount,
.stat-number,
.pk-proof-pair-stat { color: var(--rc-bv2-orange) !important; }

/* Proof board: keep the landing page's stark dark/white treatment, not blue glassmorphism. */
.rc-landing-proof-visual { filter: none !important; }
.rc-proof-board {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.rc-board-window {
  background: rgba(255,255,255,0.04) !important;
  background-image: none !important;
  border-color: rgba(255,255,255,0.14) !important;
  border-radius: 0 !important;
}
.rc-board-window::after { display: none !important; }
.rc-board-topline {
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.16) !important;
}
.rc-board-dots span {
  background: #4b5563 !important;
  border: 1px solid #111111 !important;
  opacity: 1 !important;
}
.rc-board-dots span:nth-child(2) { background: #6b7280 !important; }
.rc-board-dots span:nth-child(3) { background: #9ca3af !important; }
.rc-system-status {
  background: var(--rc-bv2-green-soft) !important;
  color: var(--rc-bv2-green) !important;
  border: 2px solid var(--rc-bv2-green) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.rc-system-status span { background: #0b7a55 !important; }
.rc-central-result strong,
.rc-central-result span { color: var(--rc-bv2-near-white) !important; }
.rc-delivery-row div {
  background: #ffffff !important;
  color: #050505 !important;
  border: 2px solid #111111 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.rc-delivery-row span,
.rc-delivery-row strong { color: #050505 !important; }
.rc-proof-float {
  background: #ffffff !important;
  color: #050505 !important;
  border: 2px solid #111111 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.rc-proof-float strong,
.rc-proof-float span { color: #050505 !important; }

/* Lists and checkmarks */
.pk-check-list,
.included-list,
.promise-list,
.fit-list { list-style: none !important; }
.pk-check-list li,
.included-list li,
.promise-list li,
.fit-list li {
  display: grid !important;
  grid-template-columns: 2.25rem minmax(0, 1fr) !important;
  gap: 0.85rem !important;
  align-items: start !important;
  padding-left: 0 !important;
}
.pk-check-list li::before,
.included-list li::before,
.promise-list li::before,
.fit-list li::before {
  position: static !important;
  width: 1.75rem !important;
  height: 1.75rem !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
  background: var(--rc-bv2-orange) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  align-self: start !important;
}

/* Accordion and footer */
.pk-accordion-button { background: #ffffff !important; color: #0d0d0d !important; border: 1px solid #111111 !important; border-radius: 0 !important; }
.pk-accordion-item + .pk-accordion-item { margin-top: 0.6rem; }
.site-footer {
  background: var(--rc-bv2-navy) !important;
  color: rgba(245,245,245,0.72) !important;
  border-top: 1px solid rgba(255,255,255,0.14) !important;
}
.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer li,
.site-footer a,
.footer-nav-list a,
.site-footer span { color: rgba(245,245,245,0.82) !important; }
.site-footer .site-logo-desktop::before,
.site-footer .site-logo-mobile::before { color: var(--rc-bv2-near-white); }
.site-footer .site-logo-desktop::after,
.site-footer .site-logo-mobile::after { color: #3ea0ff; }

@media (max-width: 1120px) {
  .services-hero > .container { grid-template-columns: 1fr !important; }
  .services-hero > .container::after { max-width: 520px; }
}
@media (max-width: 760px) {
  h1, .hero-section h1, .services-hero h1, .page-hero h1, .pk-case-hero h1 { font-size: clamp(3rem, 15vw, 4.4rem) !important; }
  h2, .final-cta-box h2 { font-size: clamp(2.35rem, 11vw, 3.35rem) !important; }
  .hero-section, .services-hero, .page-hero, .pk-case-hero { padding: 3.3rem 0 3.5rem !important; }
  .services-hero > .container::after { min-height: 220px; font-size: 2rem; }
  .primary-nav { display: none !important; }
}

/* =========================================================
   v63.2 homepage polish
   Fixes: duplicate logo display, hero sizing/alignment, accessibility,
   orange limited to CTA use, cleaner proof card sizing and mobile rhythm.
   ========================================================= */

/* Header logo: only one logo visible per breakpoint. */
.site-header .site-logo-mobile {
  display: none !important;
}
.site-header .site-logo-desktop {
  display: inline-flex !important;
}
@media (max-width: 760px) {
  .site-header .site-logo-desktop {
    display: none !important;
  }
  .site-header .site-logo-mobile {
    display: inline-flex !important;
  }
}

/* Keep orange for action buttons only. */
.hero-section,
.services-hero,
.page-hero,
.pk-case-hero {
  border-bottom: 1px solid rgba(245,245,245,0.16) !important;
}
.authority-pill,
.pk-logo-strip-label,
.pk-proof-pair-label,
.pk-offer-investment-label {
  color: var(--rc-bv2-blue-accent) !important;
  font-size: clamp(0.88rem, 0.95vw, 0.98rem) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.08em !important;
}
.authority-pill::before {
  background: var(--rc-bv2-blue-accent) !important;
}

/* Homepage hero composition. */
.hero-section .pk-hero-split--home {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.88fr) minmax(500px, 1.12fr) !important;
  align-items: center !important;
  gap: clamp(2.75rem, 5vw, 5.25rem) !important;
}
.pk-home-hero-copy {
  max-width: 610px !important;
}
.home-hero-title {
  display: grid !important;
  gap: clamp(0.38rem, 0.8vw, 0.65rem) !important;
  max-width: 610px !important;
  margin: 0 !important;
}
.home-hero-title-line {
  display: block !important;
}
.home-hero-title,
.hero-section h1.home-hero-title {
  font-size: clamp(3.55rem, 5.25vw, 5.45rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.035em !important;
}
.hero-section .hero-subtitle {
  max-width: 560px !important;
  color: #f5f7fb !important;
  font-size: clamp(1.05rem, 1.18vw, 1.2rem) !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  margin-top: 0.45rem !important;
}
.home-hero-audience-note {
  margin-top: 1.35rem !important;
  max-width: 560px !important;
  color: #dfe7f3 !important;
  font-size: clamp(1rem, 1.05vw, 1.08rem) !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}
.hero-cta .capacity-subline,
.hero-cta .capacity-subline a {
  color: #f5f7fb !important;
  font-size: 0.98rem !important;
}

/* Hero proof visual: improve spacing and make all proof cards readable. */
.rc-landing-proof-visual {
  width: min(100%, 650px) !important;
  height: 610px !important;
  min-height: 610px !important;
}
.rc-proof-board {
  inset: 26px 28px 22px 88px !important;
}
.rc-central-result strong {
  font-size: clamp(4.9rem, 13cqw, 6.4rem) !important;
}
.rc-central-result span {
  max-width: 320px !important;
  font-size: clamp(1rem, 2.35cqw, 1.1rem) !important;
  line-height: 1.3 !important;
}
.rc-proof-float {
  min-height: 0 !important;
  padding: 0.82rem 0.95rem !important;
}
.rc-proof-float strong {
  font-size: clamp(1.75rem, 4.2cqw, 2.18rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.rc-proof-float span {
  font-size: 0.92rem !important;
  line-height: 1.3 !important;
  font-weight: 760 !important;
}
.rc-float-recovered {
  width: 206px !important;
  left: 0 !important;
  top: 128px !important;
}
.rc-float-members {
  width: 210px !important;
  left: 28px !important;
  top: 342px !important;
}
.rc-float-return {
  width: 260px !important;
  right: 0 !important;
  top: 342px !important;
}
.rc-delivery-row {
  width: calc(100% - 52px) !important;
}
.rc-delivery-row div {
  min-height: 78px !important;
  padding: 0.85rem 1rem !important;
}
.rc-delivery-row span {
  font-size: 0.9rem !important;
}
.rc-delivery-row strong {
  font-size: clamp(1.35rem, 3.8cqw, 1.72rem) !important;
}

/* Credibility strip: still text until brand logo assets are supplied, but less tiny and cleaner. */
.pk-logo-strip-label {
  margin-bottom: 0.9rem !important;
  text-align: center !important;
}
.pk-logo-strip {
  padding: 1.35rem 1.2rem !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.65rem 1.35rem !important;
}
.pk-logo-strip .pk-client-name {
  color: #111111 !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(0.84rem, 0.92vw, 0.98rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Homepage section copy: improve readability and accessibility. */
.text-center > p,
.card-copy,
.pk-proof-pair-desc,
.final-cta-box p,
.section-white p,
.section-gray p {
  font-size: clamp(1rem, 1.05vw, 1.12rem) !important;
  line-height: 1.62 !important;
  color: #1f2937 !important;
  font-weight: 700 !important;
}
.section-gray h2,
.section-white h2,
.final-cta-box h2 {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.card.card-tight {
  min-height: 100% !important;
  padding: clamp(1.35rem, 2.1vw, 1.8rem) !important;
}
.card h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem) !important;
  line-height: 0.98 !important;
}
.card-gradient {
  background: var(--rc-bv2-navy) !important;
}
.card-gradient .card-copy,
.card-gradient p,
.card-gradient h3 {
  color: #f5f7fb !important;
}

/* Proof cards: keep contrast and prevent cramped stats. */
.pk-proof-pair-card {
  padding: clamp(1.5rem, 2.4vw, 2rem) !important;
}
.pk-proof-pair-stat {
  font-size: clamp(2.1rem, 3.6vw, 3.5rem) !important;
  line-height: 0.95 !important;
}
.stats-row--inline .stat-number,
.stat-number {
  color: var(--rc-bv2-orange) !important;
}
.stat-before,
.stat-after {
  padding: 1.25rem 1.4rem !important;
}

/* CTA panel: use orange only on the actual CTA, and make supporting text legible. */
.final-cta-box {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) !important;
}
.final-cta-box p,
.final-cta-box span:not(.authority-pill) {
  color: #1f2937 !important;
}
.final-cta-box .btn-primary,
.hero-section .btn-primary,
.site-header .btn-primary,
.site-footer .btn-primary {
  background: var(--rc-bv2-orange) !important;
  border-color: var(--rc-bv2-orange) !important;
  color: #ffffff !important;
}
.final-cta-box .btn-primary:hover,
.hero-section .btn-primary:hover,
.site-header .btn-primary:hover,
.site-footer .btn-primary:hover {
  background: var(--rc-bv2-orange-hover) !important;
  border-color: var(--rc-bv2-orange-hover) !important;
}

@media (max-width: 1120px) {
  .hero-section .pk-hero-split--home {
    grid-template-columns: 1fr !important;
  }
  .pk-home-hero-copy {
    max-width: 720px !important;
  }
  .rc-landing-proof-visual {
    margin-top: 1rem !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 760px) {
  .hero-section .pk-hero-split--home {
    gap: 2rem !important;
  }
  .home-hero-title,
  .hero-section h1.home-hero-title {
    font-size: clamp(3.05rem, 14vw, 4.25rem) !important;
    line-height: 0.92 !important;
    letter-spacing: 0.035em !important;
  }
  .hero-section .hero-subtitle,
  .home-hero-audience-note {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }
  .rc-landing-proof-visual {
    width: 100% !important;
    max-width: 520px !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
  .rc-proof-board {
    position: relative !important;
    inset: auto !important;
    min-height: 430px !important;
  }
  .rc-board-window {
    inset: 12px !important;
    grid-template-rows: 58px minmax(238px, 1fr) auto !important;
  }
  .rc-central-result strong {
    font-size: clamp(4rem, 18vw, 5.2rem) !important;
  }
  .rc-proof-float {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    margin-top: 0.8rem !important;
    padding: 1rem !important;
  }
  .rc-proof-float strong {
    font-size: clamp(2rem, 9vw, 2.7rem) !important;
    white-space: normal !important;
  }
  .rc-proof-float span {
    font-size: 1rem !important;
  }
  .rc-delivery-row {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.65rem !important;
  }
  .rc-delivery-row div {
    padding: 0.75rem !important;
    min-height: 72px !important;
  }
  .rc-delivery-row strong {
    font-size: 1.25rem !important;
  }
  .pk-logo-strip {
    align-items: center !important;
    gap: 0.7rem 1rem !important;
  }
  .four-card-grid,
  .three-columns-grid,
  .pk-proof-pair {
    grid-template-columns: 1fr !important;
  }
  .final-cta-box > div[style*="display:flex"] {
    display: grid !important;
    gap: 1rem !important;
  }
}

@media (max-width: 380px) {
  .rc-delivery-row {
    grid-template-columns: 1fr !important;
  }
  .rc-proof-board {
    min-height: 500px !important;
  }
}

/* =========================================================
   v63.3 homepage presentation polish
   Hero rebuilt: full-width first line, controlled second line,
   accessible grey support copy, yellow sales accent, cleaner proof board,
   and a more editorial Nectar proof section.
   ========================================================= */
:root {
  --rc-yellow: #f5e642;
  --rc-hero-muted: #cfd5df;
  --rc-hero-muted-strong: #e5e7eb;
  --rc-rule: #111111;
}

.rc-home-hero {
  padding: clamp(4.4rem, 7vw, 6.25rem) 0 clamp(4.2rem, 6.5vw, 6rem) !important;
  overflow: hidden !important;
}

.rc-home-hero-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr) !important;
  grid-template-areas:
    "headline headline"
    "copy proof" !important;
  gap: clamp(2.1rem, 4vw, 4.25rem) clamp(2.75rem, 5vw, 5.5rem) !important;
  align-items: center !important;
}

.rc-home-hero-headline {
  grid-area: headline !important;
  max-width: 1080px !important;
}

.rc-home-hero-main,
.hero-section h1.rc-home-hero-main {
  margin: 0 !important;
  max-width: 1080px !important;
  font-family: "Barlow Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size: clamp(4.2rem, 8vw, 8.4rem) !important;
  line-height: 0.86 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
  color: #f5f5f5 !important;
}

.rc-home-hero-main span {
  color: #f5f5f5 !important;
}

.rc-home-hero-copy {
  grid-area: copy !important;
  max-width: 560px !important;
  align-self: center !important;
}

.rc-home-hero-statement {
  margin: 0 !important;
  max-width: 560px !important;
  font-family: "Barlow Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size: clamp(3.15rem, 5vw, 5.35rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.035em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #f5f5f5 !important;
}

.rc-home-hero-statement span {
  display: inline !important;
  color: var(--rc-yellow) !important;
  font-family: "DM Serif Display", Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
}

.rc-home-hero-subtitle,
.hero-section .rc-home-hero-subtitle {
  margin-top: 1.25rem !important;
  max-width: 520px !important;
  color: var(--rc-hero-muted-strong) !important;
  font-size: clamp(1.08rem, 1.2vw, 1.22rem) !important;
  line-height: 1.58 !important;
  font-weight: 700 !important;
}

.rc-home-hero-note,
.hero-section .rc-home-hero-note {
  margin-top: 1.25rem !important;
  max-width: 520px !important;
  color: var(--rc-hero-muted) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}

.rc-home-hero-actions {
  margin-top: 1.7rem !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  align-items: center !important;
}

.rc-home-secondary-link {
  color: #f5f5f5 !important;
  font-weight: 900 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.22em !important;
}

.rc-home-secondary-link:hover {
  color: var(--rc-yellow) !important;
}

.rc-home-hero-proof {
  grid-area: proof !important;
  justify-self: end !important;
}

/* Tighter, more professional proof-board sizing on desktop. */
.rc-home-hero .rc-landing-proof-visual {
  width: min(100%, 610px) !important;
  height: 520px !important;
  min-height: 520px !important;
  overflow: visible !important;
}

.rc-home-hero .rc-proof-board {
  inset: 18px 16px 16px 82px !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.24) !important;
}

.rc-home-hero .rc-board-window {
  inset: 14px !important;
  grid-template-rows: 56px minmax(0, 1fr) 76px !important;
  border-color: rgba(255,255,255,0.2) !important;
}

.rc-home-hero .rc-board-topline {
  height: 56px !important;
  padding: 0 1.1rem !important;
}

.rc-home-hero .rc-system-status {
  min-height: 34px !important;
  padding: 0.48rem 0.78rem !important;
  font-size: 0.92rem !important;
}

.rc-home-hero .rc-central-result {
  transform: translateY(-0.2rem) !important;
  max-width: 300px !important;
}

.rc-home-hero .rc-central-result strong {
  font-size: clamp(4.35rem, 11.5cqw, 5.25rem) !important;
  line-height: 0.86 !important;
}

.rc-home-hero .rc-central-result span {
  max-width: 280px !important;
  color: #f5f5f5 !important;
  font-size: clamp(0.94rem, 2.1cqw, 1rem) !important;
  line-height: 1.28 !important;
}

.rc-home-hero .rc-delivery-row {
  width: calc(100% - 42px) !important;
  gap: 0.8rem !important;
  margin-bottom: 0.85rem !important;
}

.rc-home-hero .rc-delivery-row div {
  min-height: 62px !important;
  padding: 0.68rem 0.82rem !important;
}

.rc-home-hero .rc-delivery-row span {
  color: #374151 !important;
  font-size: 0.82rem !important;
}

.rc-home-hero .rc-delivery-row strong {
  color: #111111 !important;
  font-size: clamp(1.15rem, 3.3cqw, 1.38rem) !important;
}

.rc-home-hero .rc-proof-float {
  padding: 0.74rem 0.84rem !important;
  min-height: 0 !important;
}

.rc-home-hero .rc-proof-float strong {
  color: #111111 !important;
  font-size: clamp(1.45rem, 3.65cqw, 1.82rem) !important;
  letter-spacing: -0.035em !important;
  white-space: nowrap !important;
}

.rc-home-hero .rc-proof-float span {
  color: #1f2937 !important;
  font-size: 0.82rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.rc-home-hero .rc-float-recovered {
  width: 184px !important;
  left: 0 !important;
  top: 112px !important;
}

.rc-home-hero .rc-float-members {
  width: 184px !important;
  left: 38px !important;
  top: 318px !important;
}

.rc-home-hero .rc-float-return {
  width: 232px !important;
  right: 0 !important;
  top: 318px !important;
}

/* Improve section labels without using orange. */
.authority-pill,
.pk-logo-strip-label,
.pk-proof-pair-label,
.pk-offer-investment-label {
  color: #374151 !important;
}
.authority-pill::before {
  background: #374151 !important;
}

/* More editorial, premium Nectar proof section. */
.rc-nectar-proof {
  width: min(100%, 980px) !important;
  margin: clamp(2.2rem, 4vw, 3rem) auto 0 !important;
  padding: clamp(1.4rem, 3vw, 2.4rem) !important;
  border: 2px solid var(--rc-rule) !important;
  background: #ffffff !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) !important;
  grid-template-areas:
    "copy flow"
    "outcome flow" !important;
  gap: clamp(1.4rem, 3vw, 2.4rem) !important;
  align-items: center !important;
}

.rc-nectar-copy {
  grid-area: copy !important;
  display: grid !important;
  gap: 1rem !important;
}

.rc-nectar-copy p,
.rc-nectar-outcome p {
  margin: 0 !important;
  color: #111827 !important;
  font-size: clamp(1.04rem, 1.2vw, 1.22rem) !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

.rc-nectar-flow {
  grid-area: flow !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 1rem !important;
  align-items: center !important;
  justify-content: center !important;
}

.rc-nectar-stat {
  min-width: 128px !important;
  aspect-ratio: 1 / 1 !important;
  border: 2px solid #111111 !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  gap: 0.45rem !important;
  background: #ffffff !important;
}

.rc-nectar-stat strong {
  color: #111111 !important;
  font-family: "Barlow Condensed", Impact, sans-serif !important;
  font-size: clamp(2.2rem, 3.4vw, 3rem) !important;
  line-height: 0.9 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

.rc-nectar-stat span {
  color: #111827 !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.rc-nectar-stat--after {
  background: #f8fafc !important;
}

.rc-nectar-arrow svg {
  width: 2.4rem !important;
  height: 2.4rem !important;
  color: #0f7a58 !important;
  stroke-width: 3 !important;
}

.rc-nectar-outcome {
  grid-area: outcome !important;
  display: grid !important;
  gap: 1rem !important;
  align-self: end !important;
  padding-top: 1.25rem !important;
  border-top: 1px solid #111111 !important;
}

.rc-nectar-outcome .pk-secondary-cta-link {
  color: #111827 !important;
  width: fit-content !important;
  font-size: 1.05rem !important;
}

/* Keep stat numbers outside CTA orange. */
.stats-row--inline .stat-number,
.stat-number,
.pk-proof-pair-stat,
.pk-offer-investment-amount {
  color: #111111 !important;
}

/* Cleaner proof pair cards. */
.pk-proof-pair-card {
  border: 2px solid #111111 !important;
}
.pk-proof-pair-label {
  color: #4b5563 !important;
}
.pk-proof-pair-stat {
  font-size: clamp(2.1rem, 3.1vw, 3rem) !important;
}

@media (max-width: 1120px) {
  .rc-home-hero-layout {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "headline"
      "copy"
      "proof" !important;
  }
  .rc-home-hero-copy {
    max-width: 720px !important;
  }
  .rc-home-hero-proof {
    justify-self: center !important;
  }
  .rc-home-hero .rc-landing-proof-visual {
    width: min(100%, 620px) !important;
  }
}

@media (max-width: 860px) {
  .rc-nectar-proof {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "flow"
      "outcome" !important;
  }
  .rc-nectar-flow {
    justify-content: start !important;
  }
}

@media (max-width: 760px) {
  .rc-home-hero {
    padding: 3.5rem 0 3.8rem !important;
  }
  .rc-home-hero-main,
  .hero-section h1.rc-home-hero-main {
    font-size: clamp(3.25rem, 17vw, 5.1rem) !important;
    line-height: 0.88 !important;
  }
  .rc-home-hero-statement {
    font-size: clamp(2.75rem, 13.5vw, 4rem) !important;
    line-height: 0.92 !important;
  }
  .rc-home-hero-actions {
    display: grid !important;
    align-items: start !important;
  }
  .rc-home-hero-actions .btn {
    width: 100% !important;
  }
  .rc-home-hero .rc-landing-proof-visual {
    width: 100% !important;
    max-width: 520px !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
  .rc-home-hero .rc-proof-board {
    position: relative !important;
    inset: auto !important;
    min-height: 420px !important;
  }
  .rc-home-hero .rc-board-window {
    inset: 12px !important;
    grid-template-rows: 56px minmax(230px, 1fr) auto !important;
  }
  .rc-home-hero .rc-central-result strong {
    font-size: clamp(4rem, 19vw, 5rem) !important;
  }
  .rc-home-hero .rc-delivery-row {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
  }
  .rc-home-hero .rc-proof-float {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    margin-top: 0.8rem !important;
    padding: 1rem !important;
  }
  .rc-home-hero .rc-proof-float strong {
    font-size: clamp(2rem, 9vw, 2.65rem) !important;
    white-space: normal !important;
  }
  .rc-home-hero .rc-proof-float span {
    font-size: 1rem !important;
  }
  .rc-nectar-proof {
    padding: 1.25rem !important;
  }
  .rc-nectar-flow {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
  }
  .rc-nectar-arrow {
    transform: rotate(90deg) !important;
    margin-left: 2.7rem !important;
  }
  .rc-nectar-stat {
    min-width: 142px !important;
    width: 142px !important;
  }
}

@media (max-width: 380px) {
  .rc-home-hero .rc-delivery-row {
    grid-template-columns: 1fr !important;
  }
  .rc-home-hero .rc-proof-board {
    min-height: 490px !important;
  }
}

/* =========================================================
   v63.4 homepage refinement fixes
   - calmer hero statement sizing
   - single underline links
   - proof-card width alignment
   - accessible CTA text
   - remove decorative dot from eyebrow labels
   ========================================================= */
.rc-home-hero-statement {
  font-size: 3rem !important;
  line-height: 1.04 !important;
  max-width: 580px !important;
}

.pk-secondary-cta-link,
.pk-secondary-cta-link:visited,
.rc-nectar-outcome .pk-secondary-cta-link,
.pk-proof-pair-card .pk-secondary-cta-link,
.final-cta-box .pk-secondary-cta-link {
  color: #0b3f78 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 0.18em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.pk-secondary-cta-link:hover,
.rc-nectar-outcome .pk-secondary-cta-link:hover,
.pk-proof-pair-card .pk-secondary-cta-link:hover,
.final-cta-box .pk-secondary-cta-link:hover {
  color: #061a34 !important;
  text-decoration-thickness: 2px !important;
}

.pk-proof-pair {
  width: min(100%, 980px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

.final-cta-box .btn-primary,
.final-cta-box .btn-primary:visited,
.hero-section .btn-primary,
.hero-section .btn-primary:visited,
.nav-cta,
.nav-cta:visited {
  color: #ffffff !important;
}

.final-cta-box .btn-primary .btn-label,
.hero-section .btn-primary .btn-label,
.nav-cta .btn-label {
  color: #ffffff !important;
}

.authority-pill::before {
  display: none !important;
  content: none !important;
}

.authority-pill {
  gap: 0 !important;
  padding-left: 0 !important;
}

@media (max-width: 760px) {
  .rc-home-hero-statement {
    font-size: clamp(2.35rem, 11vw, 3rem) !important;
    line-height: 1.05 !important;
  }

  .pk-proof-pair {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   v63.5 cross-page accessibility and CTA colour pass
   - removes remaining green CTA treatments
   - restores readable text on Get Started dark sections
   - keeps orange reserved for real calls to action
   ========================================================= */
:root {
  --rc-v635-cta: #ff5500;
  --rc-v635-cta-hover: #e84d00;
  --rc-v635-secondary: #13172a;
  --rc-v635-secondary-hover: #242b43;
  --rc-v635-link: #0b3f78;
  --rc-v635-text: #111827;
  --rc-v635-muted: #374151;
  --rc-v635-soft: #f3f4f6;
  --rc-v635-dark-copy: #f5f5f5;
  --rc-v635-dark-muted: #e5e7eb;
}

/* Primary CTAs across normal pages: orange with white text. */
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.site-header .btn-primary,
.site-footer .btn-primary,
.primary-nav .btn-primary,
.hero-section .btn-primary,
.services-hero .btn-primary,
.page-hero .btn-primary,
.final-cta-box .btn-primary,
.investment-actions .btn-primary,
.pk-card-cta .btn-primary,
a[href*="schedule"].btn-primary {
  background: var(--rc-v635-cta) !important;
  border-color: var(--rc-v635-cta) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(255, 85, 0, 0.22) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.site-header .btn-primary:hover,
.site-footer .btn-primary:hover,
.primary-nav .btn-primary:hover,
.hero-section .btn-primary:hover,
.services-hero .btn-primary:hover,
.page-hero .btn-primary:hover,
.final-cta-box .btn-primary:hover,
.investment-actions .btn-primary:hover,
.pk-card-cta .btn-primary:hover {
  background: var(--rc-v635-cta-hover) !important;
  border-color: var(--rc-v635-cta-hover) !important;
  color: #ffffff !important;
}

.btn-primary .btn-label,
.btn-primary .arrow-icon,
.btn-primary svg,
.btn-primary:hover .btn-label,
.btn-primary:hover .arrow-icon,
.btn-primary:hover svg {
  color: #ffffff !important;
  stroke: currentColor !important;
}

/* Lead magnet/audit CTAs are secondary actions, so use the dark navy rather than green. */
.page-template-page-get-started .pk-br-btn-primary,
.page-template-page-get-started .pk-br-btn-primary:link,
.page-template-page-get-started .pk-br-btn-primary:visited,
.page-template-page-quiz .btn-primary,
.page-template-page-scorecard .btn-primary,
.page-template-page-checklist .btn-primary,
.page-template-page-thank-you .btn-primary {
  background: var(--rc-v635-secondary) !important;
  border: 2px solid var(--rc-v635-secondary) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(19, 23, 42, 0.18) !important;
}

.page-template-page-get-started .pk-br-btn-primary:hover,
.page-template-page-get-started .pk-br-btn-primary:focus,
.page-template-page-quiz .btn-primary:hover,
.page-template-page-scorecard .btn-primary:hover,
.page-template-page-checklist .btn-primary:hover,
.page-template-page-thank-you .btn-primary:hover {
  background: var(--rc-v635-secondary-hover) !important;
  border-color: var(--rc-v635-secondary-hover) !important;
  color: #ffffff !important;
}

.page-template-page-get-started .pk-br-btn-primary .btn-label,
.page-template-page-get-started .pk-br-btn-primary .arrow-icon,
.page-template-page-get-started .pk-br-btn-primary svg,
.page-template-page-get-started .pk-br-btn-primary:hover .btn-label,
.page-template-page-get-started .pk-br-btn-primary:hover .arrow-icon,
.page-template-page-get-started .pk-br-btn-primary:hover svg {
  color: #ffffff !important;
  stroke: currentColor !important;
}

/* Dark Get Started CTA panel: make every line readable and use orange for the final action. */
.page-template-page-get-started .pk-br-bottom-cta,
.pk-br-bottom-cta {
  background: #13172a !important;
  color: var(--rc-v635-dark-copy) !important;
}

.page-template-page-get-started .pk-br-bottom-cta .pk-br-bottom-h2,
.page-template-page-get-started .pk-br-bottom-cta h2,
.pk-br-bottom-cta .pk-br-bottom-h2,
.pk-br-bottom-cta h2 {
  color: #ffffff !important;
}

.page-template-page-get-started .pk-br-bottom-cta .pk-br-bottom-body,
.page-template-page-get-started .pk-br-bottom-cta .pk-br-bottom-note,
.page-template-page-get-started .pk-br-bottom-cta p,
.pk-br-bottom-cta .pk-br-bottom-body,
.pk-br-bottom-cta .pk-br-bottom-note,
.pk-br-bottom-cta p {
  color: var(--rc-v635-dark-muted) !important;
}

.page-template-page-get-started .pk-br-bottom-cta .pk-br-btn-dark,
.pk-br-bottom-cta .pk-br-btn-dark {
  background: var(--rc-v635-cta) !important;
  border: 2px solid var(--rc-v635-cta) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(255, 85, 0, 0.22) !important;
}

.page-template-page-get-started .pk-br-bottom-cta .pk-br-btn-dark:hover,
.pk-br-bottom-cta .pk-br-btn-dark:hover {
  background: var(--rc-v635-cta-hover) !important;
  border-color: var(--rc-v635-cta-hover) !important;
  color: #ffffff !important;
}

.page-template-page-get-started .pk-br-bottom-cta .pk-br-btn-dark .btn-label,
.page-template-page-get-started .pk-br-bottom-cta .pk-br-btn-dark .arrow-icon,
.page-template-page-get-started .pk-br-bottom-cta .pk-br-btn-dark svg,
.pk-br-bottom-cta .pk-br-btn-dark .btn-label,
.pk-br-bottom-cta .pk-br-btn-dark .arrow-icon,
.pk-br-bottom-cta .pk-br-btn-dark svg {
  color: #ffffff !important;
  stroke: currentColor !important;
}

/* Global readable copy defaults for non-home pages. */
.page-hero-subtitle,
.services-hero-sub,
.card-copy,
.pk-accordion-content p,
.pk-case-section p,
.pk-case-image-caption,
.footer-copy,
.site-footer p,
.site-footer li,
.site-footer a:not(.btn) {
  color: var(--rc-v635-muted) !important;
}

.card-gradient,
.dark-band,
.investment-card,
.final-cta-box.dark,
.section-navy,
.site-footer {
  color: var(--rc-v635-dark-copy) !important;
}

.card-gradient p,
.card-gradient .card-copy,
.dark-band p,
.investment-card p,
.investment-card li,
.section-navy p,
.site-footer p,
.site-footer li,
.site-footer a:not(.btn) {
  color: var(--rc-v635-dark-muted) !important;
}

.card-gradient h1,
.card-gradient h2,
.card-gradient h3,
.dark-band h1,
.dark-band h2,
.dark-band h3,
.investment-card h1,
.investment-card h2,
.investment-card h3,
.section-navy h1,
.section-navy h2,
.section-navy h3,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: #ffffff !important;
}

/* Links: single underline, accessible blue on light surfaces, pale yellow on dark surfaces. */
.site-main a:not(.btn):not(.rc-home-secondary-link):not(.services-hero-secondary-link):not(.pk-secondary-cta-link):not(.pk-br-btn-primary):not(.pk-br-btn-dark),
.pk-secondary-cta-link:not(.services-hero-secondary-link):not(.rc-home-secondary-link),
.pk-secondary-cta-link:not(.services-hero-secondary-link):not(.rc-home-secondary-link):visited {
  color: var(--rc-v635-link) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 0.18em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.site-main a:not(.btn):not(.rc-home-secondary-link):not(.services-hero-secondary-link):not(.pk-secondary-cta-link):not(.pk-br-btn-primary):not(.pk-br-btn-dark):hover,
.pk-secondary-cta-link:not(.services-hero-secondary-link):not(.rc-home-secondary-link):hover {
  color: #061a34 !important;
  text-decoration-thickness: 2px !important;
}

.card-gradient a:not(.btn),
.dark-band a:not(.btn),
.investment-card a:not(.btn),
.section-navy a:not(.btn),
.site-footer a:not(.btn) {
  color: #f5e642 !important;
}

/* Keep status/check accents calm. They are allowed to be green, but they should not look like CTAs. */
.rc-system-status,
.pk-check-list li::before,
.promise-list li::before,
.included-list li::before {
  box-shadow: none !important;
}

/* Get Started headings and labels: no low-contrast blue labels. */
.page-template-page-get-started .pk-br-proof-label,
.page-template-page-get-started .pk-br-visual-label,
.page-template-page-get-started .pk-br-profile-score,
.page-template-page-get-started .pk-br-funnel-step,
.page-template-page-get-started .pk-br-funnel-metric {
  color: var(--rc-v635-muted) !important;
}

@media (max-width: 767px) {
  .btn-primary,
  .pk-br-btn-primary,
  .pk-br-btn-dark {
    min-height: 48px !important;
  }

  .page-template-page-get-started .pk-br-bottom-cta {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* =========================================================
   v63.6 navigation, homepage proof and link accessibility pass
   - active navigation states
   - accessible dark-hero secondary links
   - clearer editorial proof links
   - proof card width alignment
   - services hero/investment polish hooks
   ========================================================= */
:root {
  --rc-v636-link: #1268b3;
  --rc-v636-link-hover: #0a4f8f;
  --rc-v636-dark-link: #ffffff;
  --rc-v636-dark-link-hover: #f5e642;
  --rc-v636-nav-active-bg: rgba(255,255,255,0.12);
  --rc-v636-nav-active-border: rgba(255,255,255,0.72);
}

/* Active navigation: visible on dark header without using orange. */
.primary-nav li.current-menu-item > a:not(.btn),
.primary-nav li.current_page_item > a:not(.btn),
.primary-nav li.current_page_parent > a:not(.btn),
.primary-nav li.current_page_ancestor > a:not(.btn),
.primary-nav a[aria-current="page"]:not(.btn) {
  color: #ffffff !important;
  background: var(--rc-v636-nav-active-bg) !important;
  border: 1px solid var(--rc-v636-nav-active-border) !important;
  border-radius: 4px !important;
  padding: 0.45rem 0.7rem !important;
  text-decoration: none !important;
}
.primary-nav li.current-menu-item > a:not(.btn)::after,
.primary-nav li.current_page_item > a:not(.btn)::after,
.primary-nav li.current_page_parent > a:not(.btn)::after,
.primary-nav li.current_page_ancestor > a:not(.btn)::after,
.primary-nav a[aria-current="page"]:not(.btn)::after {
  display: none !important;
}
.primary-nav a:not(.btn):hover {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(255,255,255,0.78) !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 0.28em !important;
}
.mobile-nav li.current-menu-item > a,
.mobile-nav li.current_page_item > a,
.mobile-nav a[aria-current="page"] {
  background: rgba(19,23,42,0.08) !important;
  border-left: 4px solid #13172a !important;
  font-weight: 900 !important;
}

/* Dark hero secondary link: white, underlined and AA compliant. */
.rc-home-hero .rc-home-secondary-link,
.rc-home-hero .rc-home-secondary-link:visited,
.hero-section .rc-home-secondary-link,
.hero-section .rc-home-secondary-link:visited,
.services-hero .pk-secondary-cta-link,
.services-hero .pk-secondary-cta-link:visited {
  color: var(--rc-v636-dark-link) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(255,255,255,0.88) !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 0.22em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  font-weight: 850 !important;
}
.rc-home-hero .rc-home-secondary-link:hover,
.hero-section .rc-home-secondary-link:hover,
.services-hero .pk-secondary-cta-link:hover {
  color: var(--rc-v636-dark-link-hover) !important;
  text-decoration-color: currentColor !important;
}

/* Light-surface text links: clearer blue, single underline and no double underline. */
.site-main a:not(.btn):not(.rc-home-secondary-link):not(.pk-br-btn-primary):not(.pk-br-btn-dark),
.pk-secondary-cta-link,
.pk-secondary-cta-link:visited,
.rc-nectar-outcome .pk-secondary-cta-link,
.pk-proof-pair-card .pk-secondary-cta-link,
.final-cta-box .pk-secondary-cta-link {
  color: var(--rc-v636-link) !important;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 1.75px !important;
  text-underline-offset: 0.18em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.site-main a:not(.btn):not(.rc-home-secondary-link):not(.pk-br-btn-primary):not(.pk-br-btn-dark):hover,
.pk-secondary-cta-link:hover,
.rc-nectar-outcome .pk-secondary-cta-link:hover,
.pk-proof-pair-card .pk-secondary-cta-link:hover,
.final-cta-box .pk-secondary-cta-link:hover {
  color: var(--rc-v636-link-hover) !important;
  text-decoration-thickness: 2.25px !important;
}
.dark-band a:not(.btn),
.card-gradient a:not(.btn),
.investment-card a:not(.btn),
.section-navy a:not(.btn),
.site-footer a:not(.btn) {
  color: #f5e642 !important;
  text-decoration-color: currentColor !important;
}

/* Proof section width alignment. Combined Tara/Jason cards now match Nectar outer width exactly. */
.rc-nectar-proof,
.pk-proof-pair {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}
.pk-proof-pair {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 1.25rem !important;
  align-items: stretch !important;
}
.pk-proof-pair-card {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
.pk-proof-pair-card .pk-secondary-cta-link {
  font-size: 1rem !important;
  font-weight: 850 !important;
}
.rc-nectar-outcome .pk-secondary-cta-link {
  font-size: 1.05rem !important;
  font-weight: 850 !important;
}

/* Services page: force dark, landing-page-style hero and readable secondary link. */
.page-template-page-services .services-hero {
  background: #13172a !important;
  color: #f5f5f5 !important;
  border-bottom: 3px solid #ff5500 !important;
  padding: clamp(5rem, 7vw, 7.25rem) 0 clamp(4.25rem, 6vw, 6rem) !important;
}
.page-template-page-services .services-hero h1,
.page-template-page-services .services-hero h1 span,
.page-template-page-services .services-hero p,
.page-template-page-services .services-hero .services-hero-sub {
  color: #f5f5f5 !important;
}
.page-template-page-services .services-hero h1 {
  max-width: 900px !important;
  margin-inline: auto !important;
}
.page-template-page-services .services-hero .pk-highlight {
  color: #f5e642 !important;
  font-family: "DM Serif Display", Georgia, serif !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  font-style: italic !important;
  font-weight: 400 !important;
}
.page-template-page-services .services-hero-sub {
  max-width: 720px !important;
  margin: 1.25rem auto 0 !important;
  color: #e5e7eb !important;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem) !important;
  line-height: 1.62 !important;
  font-weight: 750 !important;
}

/* Services investment figure: remove blue treatment and make it editorial/professional. */
.page-template-page-services .pk-offer-investment-line {
  width: fit-content !important;
  min-width: min(100%, 260px) !important;
  display: grid !important;
  gap: 0.4rem !important;
  margin-top: 1.6rem !important;
  padding: 1rem 1.15rem !important;
  background: #ffffff !important;
  border: 2px solid #111111 !important;
  box-shadow: 8px 8px 0 rgba(19,23,42,0.10) !important;
}
.page-template-page-services .pk-offer-investment-label {
  color: #4b5563 !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}
.page-template-page-services .pk-offer-investment-amount,
.page-template-page-services .investment-amount {
  color: #13172a !important;
  font-family: "Barlow Condensed", Impact, sans-serif !important;
  font-size: clamp(2.8rem, 4.8vw, 4.3rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.015em !important;
  font-weight: 800 !important;
}

@media (max-width: 760px) {
  .primary-nav li.current-menu-item > a:not(.btn),
  .primary-nav li.current_page_item > a:not(.btn),
  .primary-nav li.current_page_parent > a:not(.btn),
  .primary-nav li.current_page_ancestor > a:not(.btn),
  .primary-nav a[aria-current="page"]:not(.btn) {
    padding: 0.4rem 0.55rem !important;
  }
  .pk-proof-pair {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .page-template-page-services .services-hero {
    padding: 3.8rem 0 4rem !important;
    text-align: left !important;
  }
  .page-template-page-services .services-hero h1,
  .page-template-page-services .services-hero-sub {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-template-page-services .services-hero .fade-in-up.delay-2 {
    justify-content: flex-start !important;
    display: grid !important;
    gap: 1rem !important;
  }
  .page-template-page-services .services-hero .btn {
    width: 100% !important;
  }
  .page-template-page-services .pk-offer-investment-line {
    width: 100% !important;
  }
}

/* =========================================================
   v63.7 services hero and link accessibility correction
   - sky-blue links on dark hero backgrounds
   - cleaner professional Services hero layout
   - proof-card width alignment reinforced
   ========================================================= */
:root {
  --rc-dark-hero-link: #8edfff;
  --rc-dark-hero-link-hover: #f5e642;
  --rc-light-link: #0b6fb8;
  --rc-light-link-hover: #084f83;
  --rc-services-card-paper: #f7efe3;
}

/* Dark-background secondary links need their own colour, not the light-page link colour. */
.rc-home-hero .rc-home-secondary-link,
.rc-home-hero .rc-home-secondary-link:link,
.rc-home-hero .rc-home-secondary-link:visited,
.hero-section .rc-home-secondary-link,
.hero-section .rc-home-secondary-link:link,
.hero-section .rc-home-secondary-link:visited,
.services-hero .pk-secondary-cta-link,
.services-hero .pk-secondary-cta-link:link,
.services-hero .pk-secondary-cta-link:visited,
.services-hero .services-hero-secondary-link,
.services-hero .services-hero-secondary-link:link,
.services-hero .services-hero-secondary-link:visited {
  color: var(--rc-dark-hero-link) !important;
  text-decoration: underline !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.22em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  font-weight: 900 !important;
}
.rc-home-hero .rc-home-secondary-link:hover,
.hero-section .rc-home-secondary-link:hover,
.services-hero .pk-secondary-cta-link:hover,
.services-hero .services-hero-secondary-link:hover {
  color: var(--rc-dark-hero-link-hover) !important;
}

/* Light-surface case-study links: single underline, lighter blue, still WCAG AA on white. */
.rc-nectar-outcome .pk-secondary-cta-link,
.pk-proof-pair-card .pk-secondary-cta-link,
.site-main .rc-nectar-proof a:not(.btn),
.site-main .pk-proof-pair a:not(.btn) {
  color: var(--rc-light-link) !important;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 1.75px !important;
  text-underline-offset: 0.18em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  font-weight: 900 !important;
}
.rc-nectar-outcome .pk-secondary-cta-link:hover,
.pk-proof-pair-card .pk-secondary-cta-link:hover,
.site-main .rc-nectar-proof a:not(.btn):hover,
.site-main .pk-proof-pair a:not(.btn):hover {
  color: var(--rc-light-link-hover) !important;
  text-decoration-thickness: 2.25px !important;
}

/* Proof width alignment: Nectar and the two supporting proof cards share one exact measure. */
.rc-nectar-proof,
.pk-proof-pair {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}
.pk-proof-pair {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
}
.pk-proof-pair-card {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* Services hero rebuild: remove the old pseudo-card and replace with a proper composed layout. */
.page-template-page-services .services-hero.services-hero-v637,
.services-hero.services-hero-v637 {
  background: #13172a !important;
  color: #f5f5f5 !important;
  border-bottom: 3px solid #ff5500 !important;
  padding: clamp(4.75rem, 7vw, 6.8rem) 0 clamp(4rem, 6vw, 5.8rem) !important;
  overflow: hidden !important;
}
.services-hero.services-hero-v637 > .container::after {
  content: none !important;
  display: none !important;
}
.services-hero-v637-grid,
.services-hero.services-hero-v637 > .container.services-hero-v637-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr) !important;
  gap: clamp(2.5rem, 5vw, 5.4rem) !important;
  align-items: center !important;
  text-align: left !important;
  max-width: 1180px !important;
}
.services-hero-v637-grid > * {
  max-width: none !important;
}
.services-hero-kicker {
  display: inline-block !important;
  margin-bottom: 1rem !important;
  color: #cfd5df !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}
.page-template-page-services .services-hero-v637 h1,
.services-hero-v637 h1 {
  max-width: 760px !important;
  margin: 0 !important;
  color: #f5f5f5 !important;
  font-family: "Barlow Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size: clamp(3.8rem, 6.4vw, 6.6rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}
.page-template-page-services .services-hero-v637 h1 .pk-highlight,
.services-hero-v637 h1 .pk-highlight {
  display: block !important;
  margin-top: 0.18em !important;
  color: #f5e642 !important;
  font-family: "DM Serif Display", Georgia, serif !important;
  font-size: 0.84em !important;
  line-height: 0.95 !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
}
.page-template-page-services .services-hero-v637 .services-hero-sub,
.services-hero-v637 .services-hero-sub {
  max-width: 640px !important;
  margin: 1.35rem 0 0 !important;
  color: #e5e7eb !important;
  font-size: clamp(1.08rem, 1.3vw, 1.22rem) !important;
  line-height: 1.62 !important;
  font-weight: 750 !important;
}
.services-hero-actions,
.services-hero-v637 .services-hero-actions {
  margin-top: 1.9rem !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1.2rem !important;
}
.services-hero-card {
  justify-self: end !important;
  width: min(100%, 460px) !important;
  padding: clamp(1.5rem, 3vw, 2.2rem) !important;
  background: var(--rc-services-card-paper) !important;
  color: #111111 !important;
  border: 2px solid rgba(245,245,245,0.8) !important;
  border-radius: 0 !important;
  box-shadow: 18px 18px 0 rgba(0,0,0,0.28) !important;
  transform: rotate(0.7deg) !important;
}
.services-hero-card-label {
  color: #1f2937 !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}
.services-hero-card-title {
  margin-top: 1rem !important;
  color: #111111 !important;
  font-family: "Barlow Condensed", Impact, sans-serif !important;
  font-size: clamp(2.2rem, 4vw, 3.55rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}
.services-hero-card-investment {
  margin-top: 1.35rem !important;
  padding: 1rem !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  background: #ffffff !important;
  border: 2px solid #111111 !important;
}
.services-hero-card-investment span {
  color: #374151 !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.services-hero-card-investment strong {
  color: #111111 !important;
  font-family: "Barlow Condensed", Impact, sans-serif !important;
  font-size: clamp(2.3rem, 4vw, 3.15rem) !important;
  line-height: 0.9 !important;
}
.services-hero-card-list {
  margin: 1.2rem 0 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 0.65rem !important;
  list-style: none !important;
}
.services-hero-card-list li {
  color: #111111 !important;
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  display: grid !important;
  grid-template-columns: 1.1rem 1fr !important;
  gap: 0.55rem !important;
}
.services-hero-card-list li::before {
  content: "" !important;
  width: 0.52rem !important;
  height: 0.52rem !important;
  margin-top: 0.45em !important;
  background: #111111 !important;
}

@media (max-width: 980px) {
  .services-hero-v637-grid,
  .services-hero.services-hero-v637 > .container.services-hero-v637-grid {
    grid-template-columns: 1fr !important;
  }
  .services-hero-card {
    justify-self: start !important;
    width: min(100%, 560px) !important;
    transform: none !important;
  }
}
@media (max-width: 760px) {
  .page-template-page-services .services-hero.services-hero-v637,
  .services-hero.services-hero-v637 {
    padding: 3.5rem 0 3.8rem !important;
  }
  .page-template-page-services .services-hero-v637 h1,
  .services-hero-v637 h1 {
    font-size: clamp(3.05rem, 14vw, 4.4rem) !important;
    line-height: 0.92 !important;
  }
  .services-hero-v637 h1 .pk-highlight {
    font-size: 0.82em !important;
  }
  .services-hero-actions,
  .services-hero-v637 .services-hero-actions,
  .services-hero-actions .btn {
    width: 100% !important;
  }
  .services-hero-actions {
    display: grid !important;
    gap: 1rem !important;
  }
  .services-hero-card {
    padding: 1.25rem !important;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.22) !important;
  }
  .services-hero-card-title {
    font-size: clamp(2rem, 11vw, 2.8rem) !important;
  }
  .services-hero-card-investment {
    display: grid !important;
    gap: 0.4rem !important;
  }
  .pk-proof-pair {
    grid-template-columns: 1fr !important;
  }
}

/* v63.8 WCAG dark-background link hardening
   Fixes secondary text links inside dark hero sections after broader link rules. */
:root {
  --rc-dark-link-accessible: #8bdcff;
  --rc-dark-link-accessible-hover: #b9ecff;
}

.rc-home-hero a.rc-home-secondary-link,
.rc-home-hero a.rc-home-secondary-link:link,
.rc-home-hero a.rc-home-secondary-link:visited,
.hero-section a.rc-home-secondary-link,
.hero-section a.rc-home-secondary-link:link,
.hero-section a.rc-home-secondary-link:visited,
.services-hero a.pk-secondary-cta-link,
.services-hero a.pk-secondary-cta-link:link,
.services-hero a.pk-secondary-cta-link:visited,
.services-hero a.services-hero-secondary-link,
.services-hero a.services-hero-secondary-link:link,
.services-hero a.services-hero-secondary-link:visited,
.dark-band a:not(.btn),
.section-navy a:not(.btn) {
  color: var(--rc-dark-link-accessible) !important;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.22em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  font-weight: 900 !important;
}

.rc-home-hero a.rc-home-secondary-link:hover,
.rc-home-hero a.rc-home-secondary-link:focus,
.hero-section a.rc-home-secondary-link:hover,
.hero-section a.rc-home-secondary-link:focus,
.services-hero a.pk-secondary-cta-link:hover,
.services-hero a.pk-secondary-cta-link:focus,
.services-hero a.services-hero-secondary-link:hover,
.services-hero a.services-hero-secondary-link:focus,
.dark-band a:not(.btn):hover,
.dark-band a:not(.btn):focus,
.section-navy a:not(.btn):hover,
.section-navy a:not(.btn):focus {
  color: var(--rc-dark-link-accessible-hover) !important;
  text-decoration-thickness: 2.5px !important;
}

.rc-home-hero a.rc-home-secondary-link:focus-visible,
.hero-section a.rc-home-secondary-link:focus-visible,
.services-hero a.pk-secondary-cta-link:focus-visible,
.services-hero a.services-hero-secondary-link:focus-visible,
.dark-band a:not(.btn):focus-visible,
.section-navy a:not(.btn):focus-visible {
  outline: 3px solid #f5e642 !important;
  outline-offset: 4px !important;
  border-radius: 2px !important;
}


/* v63.9 final WCAG fix for dark hero secondary links.
   This intentionally sits at the very end of main.css and beats all broad link rules. */
:root {
  --rc-dark-hero-link: #8bdcff;
  --rc-dark-hero-link-hover: #b9ecff;
}
html body main.site-main section.hero-section.rc-home-hero div.rc-home-hero-actions a.rc-home-secondary-link,
html body main.site-main section.hero-section.rc-home-hero div.rc-home-hero-actions a.rc-home-secondary-link:link,
html body main.site-main section.hero-section.rc-home-hero div.rc-home-hero-actions a.rc-home-secondary-link:visited,
html body main.site-main .section-navy a.rc-home-secondary-link,
html body main.site-main .dark-band a.rc-home-secondary-link,
html body main.site-main .services-hero a.pk-secondary-cta-link,
html body main.site-main .services-hero a.pk-secondary-cta-link:link,
html body main.site-main .services-hero a.pk-secondary-cta-link:visited,
html body main.site-main .services-hero a.services-hero-secondary-link,
html body main.site-main .services-hero a.services-hero-secondary-link:link,
html body main.site-main .services-hero a.services-hero-secondary-link:visited {
  color: var(--rc-dark-hero-link) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--rc-dark-hero-link) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.22em !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  font-weight: 900 !important;
}
html body main.site-main section.hero-section.rc-home-hero div.rc-home-hero-actions a.rc-home-secondary-link:hover,
html body main.site-main section.hero-section.rc-home-hero div.rc-home-hero-actions a.rc-home-secondary-link:focus,
html body main.site-main .services-hero a.pk-secondary-cta-link:hover,
html body main.site-main .services-hero a.pk-secondary-cta-link:focus,
html body main.site-main .services-hero a.services-hero-secondary-link:hover,
html body main.site-main .services-hero a.services-hero-secondary-link:focus {
  color: var(--rc-dark-hero-link-hover) !important;
  text-decoration-color: var(--rc-dark-hero-link-hover) !important;
}
html body main.site-main section.hero-section.rc-home-hero div.rc-home-hero-actions a.rc-home-secondary-link:focus-visible,
html body main.site-main .services-hero a.pk-secondary-cta-link:focus-visible,
html body main.site-main .services-hero a.services-hero-secondary-link:focus-visible {
  outline: 3px solid #f5e642 !important;
  outline-offset: 4px !important;
  border-radius: 2px !important;
}

/* v63.11 accordion presentation fix
   Keeps FAQ accordions professional when opened by using one consistent outer
   border and an internal divider instead of a second border on the trigger. */
.pk-accordion {
  max-width: 76rem !important;
  margin-inline: auto !important;
}
.pk-accordion-item {
  background: #ffffff !important;
  border: 2px solid #111111 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 0 1rem !important;
  overflow: hidden !important;
}
.pk-accordion-button {
  background: #ffffff !important;
  color: #111827 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 5.5rem !important;
  padding: clamp(1.2rem, 2.2vw, 1.65rem) clamp(1.25rem, 3vw, 2rem) !important;
}
.pk-accordion-button:hover {
  background: #f7f7f7 !important;
}
.pk-accordion-button:focus-visible {
  outline: 4px solid #facc15 !important;
  outline-offset: -4px !important;
  box-shadow: inset 0 0 0 2px #111111 !important;
}
.pk-accordion-question {
  color: #111827 !important;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem) !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}
.pk-accordion-icon {
  width: 1.75rem !important;
  height: 1.75rem !important;
  flex: 0 0 1.75rem !important;
}
.pk-accordion-icon::before,
.pk-accordion-icon::after {
  background: #374151 !important;
  height: 3px !important;
  width: 1.1rem !important;
}
.pk-accordion-panel {
  border-top: 0 !important;
  background: #ffffff !important;
}
.pk-accordion-button[aria-expanded="true"] + .pk-accordion-panel {
  border-top: 2px solid #111111 !important;
}
.pk-accordion-content {
  padding: clamp(1.15rem, 2vw, 1.55rem) clamp(1.25rem, 3vw, 2rem) clamp(1.4rem, 2.4vw, 1.9rem) !important;
  color: #374151 !important;
  font-size: clamp(1rem, 1.15vw, 1.12rem) !important;
  line-height: 1.7 !important;
  font-weight: 650 !important;
  max-width: 72ch !important;
}
.pk-accordion-content p {
  color: #374151 !important;
  margin: 0 !important;
}
.pk-accordion-content p + p {
  margin-top: 0.9rem !important;
}
@media (max-width: 760px) {
  .pk-accordion-item {
    border-width: 2px !important;
    margin-bottom: 0.8rem !important;
  }
  .pk-accordion-button {
    min-height: 4.5rem !important;
    padding: 1rem 1rem !important;
  }
  .pk-accordion-question {
    font-size: 1rem !important;
  }
  .pk-accordion-content {
    padding: 1rem !important;
    font-size: 1rem !important;
  }
}

/* v63.12 About and Contact hero polish
   Tightens interior hero layouts and hardens WCAG contrast on dark backgrounds. */
body.page-template-page-about .page-hero.rc-interior-hero,
body.page-template-page-contact .page-hero.rc-interior-hero {
  background: #13172a !important;
  color: #f7f7f4 !important;
  border-bottom: 3px solid #ff5500 !important;
  padding: clamp(4.8rem, 8vw, 7rem) 0 clamp(4.5rem, 7vw, 6.2rem) !important;
  text-align: left !important;
  overflow: hidden !important;
}

body.page-template-page-about .rc-interior-hero-grid,
body.page-template-page-contact .rc-interior-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr) !important;
  gap: clamp(2rem, 5vw, 5rem) !important;
  align-items: center !important;
}

body.page-template-page-about .rc-interior-hero-copy,
body.page-template-page-contact .rc-interior-hero-copy {
  max-width: 760px !important;
}

body.page-template-page-about .page-hero.rc-interior-hero h1,
body.page-template-page-contact .page-hero.rc-interior-hero h1 {
  max-width: 760px !important;
  margin: clamp(1rem, 2vw, 1.35rem) 0 0 !important;
  color: #f7f7f4 !important;
  font-size: clamp(3.15rem, 7vw, 5.75rem) !important;
  line-height: 0.96 !important;
  letter-spacing: 0.045em !important;
  text-wrap: balance !important;
}

body.page-template-page-about .page-hero.rc-interior-hero .page-hero-subtitle,
body.page-template-page-contact .page-hero.rc-interior-hero .page-hero-subtitle {
  max-width: 700px !important;
  margin: clamp(1.25rem, 2.4vw, 1.7rem) 0 0 !important;
  color: #e5e7eb !important;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem) !important;
  line-height: 1.62 !important;
  font-weight: 750 !important;
}

body.page-template-page-about .page-hero.rc-interior-hero .authority-pill,
body.page-template-page-contact .page-hero.rc-interior-hero .authority-pill,
body.page-template-page-about .page-hero.rc-interior-hero .rc-interior-eyebrow,
body.page-template-page-contact .page-hero.rc-interior-hero .rc-interior-eyebrow {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: #cbd5e1 !important;
  font-size: clamp(0.88rem, 1vw, 1rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

body.page-template-page-about .page-hero.rc-interior-hero .authority-pill::before,
body.page-template-page-contact .page-hero.rc-interior-hero .authority-pill::before,
body.page-template-page-about .page-hero.rc-interior-hero .rc-interior-eyebrow::before,
body.page-template-page-contact .page-hero.rc-interior-hero .rc-interior-eyebrow::before {
  display: none !important;
  content: none !important;
}

.rc-interior-hero-card {
  background: #ffffff !important;
  color: #111827 !important;
  border: 2px solid #111827 !important;
  border-radius: 0 !important;
  box-shadow: 14px 14px 0 rgba(255, 85, 0, 0.16) !important;
  padding: clamp(1.35rem, 2.8vw, 2rem) !important;
  transform: rotate(-1deg) !important;
}

.rc-interior-hero-card .rc-interior-card-label {
  display: block !important;
  color: #4b5563 !important;
  font-size: 0.82rem !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.85rem !important;
}

.rc-interior-hero-card strong {
  display: block !important;
  color: #111827 !important;
  font-family: 'Barlow Condensed', 'Inter', sans-serif !important;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.rc-interior-hero-card p,
.rc-interior-hero-card li {
  color: #374151 !important;
  font-size: clamp(1rem, 1.08vw, 1.08rem) !important;
  line-height: 1.58 !important;
  font-weight: 700 !important;
}

.rc-interior-hero-card p {
  margin-top: 1rem !important;
}

.rc-interior-hero-card ul {
  list-style: none !important;
  display: grid !important;
  gap: 0.7rem !important;
  margin: 1.2rem 0 0 !important;
  padding: 1rem 0 0 !important;
  border-top: 1px solid #111827 !important;
}

.rc-interior-hero-card li {
  display: grid !important;
  grid-template-columns: 1.25rem 1fr !important;
  gap: 0.65rem !important;
  align-items: start !important;
}

.rc-interior-hero-card li::before {
  content: "" !important;
  width: 0.58rem !important;
  height: 0.58rem !important;
  margin-top: 0.52em !important;
  background: #ff5500 !important;
  border-radius: 999px !important;
}

.rc-interior-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  align-items: center !important;
  margin-top: clamp(1.6rem, 3vw, 2.2rem) !important;
}

body.page-template-page-contact .page-hero.rc-interior-hero .btn-primary,
body.page-template-page-contact .page-hero.rc-interior-hero .btn-primary:link,
body.page-template-page-contact .page-hero.rc-interior-hero .btn-primary:visited {
  color: #ffffff !important;
}

body.page-template-page-about .page-hero.rc-interior-hero a:not(.btn),
body.page-template-page-contact .page-hero.rc-interior-hero a:not(.btn) {
  color: #9fe4ff !important;
  text-decoration: underline !important;
  text-decoration-color: #9fe4ff !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.22em !important;
}

body.page-template-page-about .page-hero.rc-interior-hero a:not(.btn):hover,
body.page-template-page-contact .page-hero.rc-interior-hero a:not(.btn):hover {
  color: #c9f1ff !important;
  text-decoration-color: #c9f1ff !important;
}

body.page-template-page-about .page-hero.rc-interior-hero a:focus-visible,
body.page-template-page-contact .page-hero.rc-interior-hero a:focus-visible {
  outline: 3px solid #ffd166 !important;
  outline-offset: 4px !important;
  border-radius: 2px !important;
}

@media (max-width: 980px) {
  body.page-template-page-about .rc-interior-hero-grid,
  body.page-template-page-contact .rc-interior-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .rc-interior-hero-card {
    max-width: 640px !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  body.page-template-page-about .page-hero.rc-interior-hero,
  body.page-template-page-contact .page-hero.rc-interior-hero {
    padding: 3.4rem 0 3.6rem !important;
  }
  body.page-template-page-about .page-hero.rc-interior-hero h1,
  body.page-template-page-contact .page-hero.rc-interior-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.05rem) !important;
    line-height: 0.98 !important;
  }
  body.page-template-page-about .page-hero.rc-interior-hero .page-hero-subtitle,
  body.page-template-page-contact .page-hero.rc-interior-hero .page-hero-subtitle {
    font-size: 1.06rem !important;
    line-height: 1.58 !important;
  }
  .rc-interior-hero-card {
    padding: 1.2rem !important;
    box-shadow: 8px 8px 0 rgba(255, 85, 0, 0.16) !important;
  }
  .rc-interior-hero-card strong {
    font-size: 2.25rem !important;
  }
  .rc-interior-hero-actions,
  .rc-interior-hero-actions .btn {
    width: 100% !important;
  }
}

/* ======================================================================
   v63.13 mobile and copy polish pass
   - Keeps 47% to 87% proof stats side by side on mobile
   - Improves small-screen spacing, card hierarchy and tap targets
   - Adds safer link/focus treatment across dark and light sections
   ====================================================================== */
:root {
  --rc-link-light-bg: #005fcc;
  --rc-link-dark-bg: #8bdcff;
  --rc-card-shadow-mobile: 0 10px 26px rgba(3, 18, 37, 0.10);
}

/* Stronger, consistent links */
.site-main a:not(.btn):not(.nav-link):not(.mobile-nav-link) {
  text-decoration-line: underline !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 0.18em !important;
}
.section-white a:not(.btn),
.section-gray a:not(.btn),
.section-gray-strong a:not(.btn),
.card a:not(.btn),
.final-cta-box a:not(.btn) {
  color: var(--rc-link-light-bg) !important;
  text-decoration-color: currentColor !important;
}
.hero-section a:not(.btn),
.services-hero a:not(.btn),
.page-hero a:not(.btn),
.pk-case-hero a:not(.btn),
.dark-band a:not(.btn),
.card-gradient a:not(.btn),
.site-footer a:not(.btn) {
  color: var(--rc-link-dark-bg) !important;
  text-decoration-color: currentColor !important;
}
.site-main a:not(.btn):focus-visible {
  outline: 3px solid var(--rc-bv2-focus) !important;
  outline-offset: 4px !important;
  border-radius: 2px;
}

/* Better default engagement states without making the site feel fussy. */
.card,
.pk-proof-pair-card,
.rc-nectar-proof,
.final-cta-box,
.pk-accordion-item {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .pk-proof-pair-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(3, 18, 37, 0.12) !important;
  }
}

/* Homepage and case-study 47% → 87% proof stays side by side on phones. */
.rc-nectar-flow,
.stats-row--inline,
.pk-br-stat-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(0.65rem, 3vw, 1.25rem) !important;
}
.rc-nectar-stat,
.stat-before,
.stat-after,
.pk-br-stat {
  min-width: 0 !important;
}
.rc-nectar-stat strong,
.stat-number,
.pk-br-stat-num {
  white-space: nowrap !important;
}
.rc-nectar-arrow,
.stat-arrow,
.pk-br-stat-arrow {
  display: grid !important;
  place-items: center !important;
}

/* Mobile optimisation across templates. */
@media (max-width: 900px) {
  .container,
  .max-w-7xl,
  .max-w-5xl {
    width: min(100% - 32px, 100%) !important;
  }
  .hero-section,
  .services-hero,
  .page-hero,
  .pk-case-hero {
    padding-top: clamp(3rem, 10vw, 4.5rem) !important;
    padding-bottom: clamp(3rem, 10vw, 4.5rem) !important;
  }
  h1,
  .hero-section h1,
  .services-hero h1,
  .page-hero h1,
  .pk-case-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.75rem) !important;
    line-height: 0.94 !important;
    max-width: 100% !important;
  }
  h2,
  .final-cta-box h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem) !important;
    line-height: 0.98 !important;
  }
  h3 {
    font-size: clamp(1.25rem, 6vw, 1.65rem) !important;
  }
  p, li, .card-copy, .hero-subtitle, .services-hero-sub, .lead {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }
  .four-card-grid,
  .three-columns-grid,
  .two-columns-grid,
  .pk-offer-row,
  .rc-interior-hero-grid,
  .services-hero-v637-grid,
  .rc-home-hero-layout {
    grid-template-columns: 1fr !important;
  }
  .card,
  .card-tight,
  .final-cta-box,
  .rc-nectar-proof,
  .pk-proof-pair-card,
  .contact-form-wrapper {
    padding: clamp(1.35rem, 6vw, 2rem) !important;
  }
  .hero-cta,
  .services-hero-actions,
  .rc-interior-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: stretch !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .btn,
  a.btn,
  button.btn {
    width: 100% !important;
    min-height: 54px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .pk-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }
  .pk-client-name {
    min-height: 44px;
    display: grid !important;
    place-items: center !important;
  }
  .site-footer .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 640px) {
  .container,
  .max-w-7xl,
  .max-w-5xl {
    width: min(100% - 24px, 100%) !important;
  }
  .section-white,
  .section-gray,
  .section-gray-strong,
  .py-section,
  .py-section-lg {
    padding-top: clamp(3rem, 12vw, 4.25rem) !important;
    padding-bottom: clamp(3rem, 12vw, 4.25rem) !important;
  }
  .authority-pill {
    font-size: 0.82rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.08em !important;
  }
  .rc-home-hero-statement {
    font-size: clamp(2.5rem, 12vw, 3rem) !important;
  }
  .rc-home-hero-proof {
    margin-top: 1.5rem !important;
  }
  .rc-proof-float {
    width: 100% !important;
    max-width: 100% !important;
  }
  .rc-nectar-proof {
    gap: 1.5rem !important;
  }
  .rc-nectar-flow,
  .stats-row--inline,
  .pk-br-stat-row {
    grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .rc-nectar-stat,
  .stat-before,
  .stat-after,
  .pk-br-stat {
    padding: 0.9rem 0.65rem !important;
  }
  .rc-nectar-stat strong,
  .stat-number,
  .pk-br-stat-num {
    font-size: clamp(2rem, 11vw, 3rem) !important;
    line-height: 0.95 !important;
  }
  .rc-nectar-stat span,
  .stat-label,
  .pk-br-stat-label {
    font-size: 0.78rem !important;
    letter-spacing: 0.08em !important;
  }
  .rc-nectar-arrow svg,
  .stat-arrow svg,
  .pk-br-stat-arrow svg {
    width: 24px !important;
    height: 24px !important;
  }
  .pk-proof-pair {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
  .pk-proof-pair-stat {
    font-size: clamp(2rem, 12vw, 3rem) !important;
  }
  .pk-accordion-button {
    padding: 1.15rem 1rem !important;
    min-height: 64px !important;
  }
  .pk-accordion-content {
    padding: 1rem !important;
  }
  .final-cta-box {
    text-align: left !important;
  }
  .final-cta-box .btn {
    margin-top: 0.25rem !important;
  }
}


/* ======================================================================
   v63.14 mobile and component refinement pass
   - Fixes 47% to 87% proof layout at 375px
   - Adds padding to active mobile menu state
   - Centres CTA arrows on mobile
   - Corrects About photo crop/box on mobile
   - Gives Contact/Bitforms safer mobile padding and orange CTA override
   ====================================================================== */

/* 47% to 87% proof module: always keep two stat columns visible on small phones. */
@media (max-width: 640px) {
  .rc-nectar-flow,
  .stats-row--inline,
  .pk-br-stat-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(24px, 30px) minmax(0, 1fr) !important;
    gap: 0.45rem !important;
    align-items: center !important;
    justify-content: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .rc-nectar-stat,
  .stat-before,
  .stat-after,
  .pk-br-stat {
    min-width: 0 !important;
    width: 100% !important;
    padding: 0.85rem 0.45rem !important;
    display: grid !important;
    place-items: center !important;
    text-align: center !important;
  }

  .rc-nectar-stat strong,
  .stat-before .stat-number,
  .stat-after .stat-number,
  .stat-number,
  .pk-br-stat-num {
    font-size: clamp(1.65rem, 8.2vw, 2.25rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    white-space: nowrap !important;
  }

  .rc-nectar-stat span,
  .stat-label,
  .pk-br-stat-label {
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
  }

  .rc-nectar-arrow,
  .stat-arrow,
  .pk-br-stat-arrow {
    min-width: 24px !important;
    width: 100% !important;
    display: grid !important;
    place-items: center !important;
  }

  .rc-nectar-arrow svg,
  .stat-arrow svg,
  .pk-br-stat-arrow svg {
    width: 22px !important;
    height: 22px !important;
  }
}

@media (max-width: 380px) {
  .rc-nectar-flow,
  .stats-row--inline,
  .pk-br-stat-row {
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) !important;
    gap: 0.35rem !important;
  }
  .rc-nectar-stat,
  .stat-before,
  .stat-after,
  .pk-br-stat {
    padding: 0.75rem 0.35rem !important;
  }
  .rc-nectar-stat strong,
  .stat-before .stat-number,
  .stat-after .stat-number,
  .stat-number,
  .pk-br-stat-num {
    font-size: clamp(1.45rem, 8vw, 2rem) !important;
  }
}

/* Mobile navigation active item: more left padding and cleaner hit area. */
.mobile-nav li.current-menu-item > a,
.mobile-nav li.current_page_item > a,
.mobile-nav a[aria-current="page"] {
  padding-left: 1.15rem !important;
  padding-right: 1rem !important;
  border-left-width: 5px !important;
}

@media (max-width: 767px) {
  .mobile-nav a {
    padding-top: 1.05rem !important;
    padding-bottom: 1.05rem !important;
  }
}

/* CTA arrow alignment, especially on mobile and in the mobile menu drawer. */
.btn,
a.btn,
button.btn,
.mobile-nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.7rem !important;
}
.btn .btn-label,
.mobile-nav-cta .btn-label {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1.15 !important;
}
.btn .arrow-icon,
.mobile-nav-cta .arrow-icon,
.btn svg,
.mobile-nav-cta svg {
  flex: 0 0 auto !important;
  display: block !important;
  width: 1.1em !important;
  height: 1.1em !important;
  margin: 0 !important;
  transform: none !important;
  position: static !important;
  vertical-align: middle !important;
}
@media (max-width: 767px) {
  .btn,
  a.btn,
  button.btn,
  .mobile-nav-cta {
    gap: 0.55rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* About page founder/photo card: remove the oversized empty image box on mobile. */
.page-template-page-about .pk-offer-row {
  align-items: center !important;
}
.page-template-page-about .pk-offer-image {
  overflow: hidden !important;
  background: #ffffff !important;
}
.page-template-page-about .pk-offer-image .pk-img-placeholder,
.page-template-page-about .pk-offer-image img {
  object-fit: cover !important;
  object-position: center 28% !important;
}
@media (max-width: 900px) {
  .page-template-page-about .pk-offer-row {
    gap: 1.75rem !important;
  }
  .page-template-page-about .pk-offer-image {
    width: 100% !important;
    max-width: 520px !important;
    min-height: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border: 1.5px solid #111827 !important;
    padding: 0 !important;
  }
  .page-template-page-about .pk-offer-image .pk-img-placeholder,
  .page-template-page-about .pk-offer-image img {
    width: 100% !important;
    height: clamp(260px, 62vw, 360px) !important;
    min-height: 0 !important;
    display: block !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .page-template-page-about .pk-offer-text h2 {
    font-size: clamp(2.5rem, 12vw, 3.75rem) !important;
    line-height: 0.96 !important;
  }
}

/* Contact form spacing: stop the form touching the viewport on mobile. */
.page-template-page-contact .section-gray-strong {
  background: #eef5fc !important;
}
.page-template-page-contact .contact-form-wrapper {
  max-width: 960px !important;
  width: min(100%, 960px) !important;
  padding: clamp(1.5rem, 4.8vw, 3rem) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: #ffffff !important;
  border: 1.5px solid #111827 !important;
}
.page-template-page-contact .contact-form-wrapper form,
.page-template-page-contact .contact-form-wrapper .bitform,
.page-template-page-contact .contact-form-wrapper [class*="bitform"],
.page-template-page-contact .contact-form-wrapper [class*="bf-"] {
  max-width: 100% !important;
}
.page-template-page-contact .contact-form-wrapper input,
.page-template-page-contact .contact-form-wrapper textarea,
.page-template-page-contact .contact-form-wrapper select {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Override Bitforms green submit button where possible. Inline plugin styles may still need changing inside Bitforms. */
.page-template-page-contact .contact-form-wrapper button[type="submit"],
.page-template-page-contact .contact-form-wrapper input[type="submit"],
.page-template-page-contact .contact-form-wrapper .bf-submit,
.page-template-page-contact .contact-form-wrapper .bf-submit-btn,
.page-template-page-contact .contact-form-wrapper [class*="submit"] button,
.page-template-page-contact .contact-form-wrapper [class*="submit"] input,
.page-template-page-contact .contact-form-wrapper [class*="button"] {
  background: var(--rc-bv2-orange) !important;
  background-color: var(--rc-bv2-orange) !important;
  border-color: var(--rc-bv2-orange) !important;
  color: #ffffff !important;
}
.page-template-page-contact .contact-form-wrapper button[type="submit"] *,
.page-template-page-contact .contact-form-wrapper .bf-submit *,
.page-template-page-contact .contact-form-wrapper .bf-submit-btn * {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}
@media (max-width: 640px) {
  .page-template-page-contact .section-gray-strong > .container,
  .page-template-page-contact .section-white > .container,
  .page-template-page-contact .page-hero > .container {
    width: min(100% - 24px, 100%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-template-page-contact .contact-form-wrapper {
    padding: clamp(1.25rem, 6vw, 1.75rem) !important;
    border-radius: 14px !important;
  }
  .page-template-page-contact .contact-form-wrapper h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem) !important;
    line-height: 0.95 !important;
  }
}

/* ======================================================================
   v63.15 mobile polish: contact submit icon, mobile menu CTA, Nectar arrow
   - Removes Bitforms grey icon tile in the submit button where possible
   - Keeps the mobile drawer CTA on one line by hiding the arrow on small screens
   - Positions the 47% to 87% arrow between the two stat boxes on iPhone SE
   ====================================================================== */

/* Contact form submit button: remove plugin-generated grey square/icon tile. */
.page-template-page-contact .contact-form-wrapper button[type="submit"] span,
.page-template-page-contact .contact-form-wrapper button[type="submit"] i,
.page-template-page-contact .contact-form-wrapper button[type="submit"] svg,
.page-template-page-contact .contact-form-wrapper input[type="submit"] span,
.page-template-page-contact .contact-form-wrapper .bf-submit span,
.page-template-page-contact .contact-form-wrapper .bf-submit i,
.page-template-page-contact .contact-form-wrapper .bf-submit svg,
.page-template-page-contact .contact-form-wrapper .bf-submit-btn span,
.page-template-page-contact .contact-form-wrapper .bf-submit-btn i,
.page-template-page-contact .contact-form-wrapper .bf-submit-btn svg,
.page-template-page-contact .contact-form-wrapper [class*="submit"] span,
.page-template-page-contact .contact-form-wrapper [class*="submit"] i,
.page-template-page-contact .contact-form-wrapper [class*="submit"] svg {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.page-template-page-contact .contact-form-wrapper button[type="submit"] [style*="background"],
.page-template-page-contact .contact-form-wrapper .bf-submit [style*="background"],
.page-template-page-contact .contact-form-wrapper .bf-submit-btn [style*="background"] {
  background: transparent !important;
  background-color: transparent !important;
}

.page-template-page-contact .contact-form-wrapper button[type="submit"]::after,
.page-template-page-contact .contact-form-wrapper .bf-submit::after,
.page-template-page-contact .contact-form-wrapper .bf-submit-btn::after {
  background: transparent !important;
  box-shadow: none !important;
}

/* Mobile drawer CTA: keep label on one line, remove arrow when space is tight. */
@media (max-width: 480px) {
  .mobile-nav-cta,
  .mobile-nav .mobile-nav-cta,
  .mobile-nav a.btn,
  .mobile-nav .btn-primary {
    width: 100% !important;
    min-height: 64px !important;
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
    gap: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
    font-size: clamp(1rem, 4.5vw, 1.18rem) !important;
    line-height: 1.1 !important;
  }

  .mobile-nav-cta svg,
  .mobile-nav .mobile-nav-cta svg,
  .mobile-nav a.btn svg,
  .mobile-nav .btn-primary svg,
  .mobile-nav-cta .arrow-icon,
  .mobile-nav .mobile-nav-cta .arrow-icon,
  .mobile-nav a.btn .arrow-icon,
  .mobile-nav .btn-primary .arrow-icon {
    display: none !important;
  }

  .mobile-nav-cta .btn-label,
  .mobile-nav .mobile-nav-cta .btn-label,
  .mobile-nav a.btn .btn-label,
  .mobile-nav .btn-primary .btn-label {
    display: inline !important;
    white-space: nowrap !important;
    max-width: 100% !important;
  }
}

/* Nectar proof mobile layout: force two stat boxes plus a centred arrow between them. */
@media (max-width: 640px) {
  .rc-nectar-flow {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) !important;
    align-items: center !important;
    justify-items: stretch !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .rc-nectar-flow .rc-nectar-stat {
    width: 100% !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0.65rem 0.25rem !important;
    align-self: stretch !important;
  }

  .rc-nectar-flow .rc-nectar-arrow {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    display: grid !important;
    place-items: center !important;
    align-self: center !important;
    justify-self: center !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .rc-nectar-flow .rc-nectar-arrow svg {
    width: 24px !important;
    height: 24px !important;
    transform: none !important;
    display: block !important;
  }
}

@media (max-width: 380px) {
  .rc-nectar-flow {
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) !important;
    gap: 0.4rem !important;
  }

  .rc-nectar-flow .rc-nectar-arrow {
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
  }

  .rc-nectar-flow .rc-nectar-arrow svg {
    width: 22px !important;
    height: 22px !important;
  }

  .rc-nectar-flow .rc-nectar-stat strong {
    font-size: clamp(1.85rem, 10.2vw, 2.35rem) !important;
  }

  .rc-nectar-flow .rc-nectar-stat span {
    font-size: 0.68rem !important;
  }
}

/* ======================================================================
   v63.16 Accent card emphasis system
   Adds a controlled hard-offset card language to increase emphasis without
   changing the one-offer journey. Includes dark-background variants with
   lighter shadows so cards remain visible on navy sections.
====================================================================== */
:root {
  --rc-accent-shadow-ink: 10px 10px 0 rgba(19, 23, 42, 0.12);
  --rc-accent-shadow-soft: 0 18px 38px rgba(15, 23, 42, 0.10);
  --rc-accent-shadow-sky-dark: 12px 12px 0 rgba(139, 220, 255, 0.20);
  --rc-accent-shadow-white-dark: 12px 12px 0 rgba(255, 255, 255, 0.14);
  --rc-accent-shadow-yellow-dark: 12px 12px 0 rgba(245, 230, 66, 0.20);
  --rc-accent-shadow-orange-dark: 12px 12px 0 rgba(255, 85, 0, 0.22);
  --rc-accent-card-cream: #fff8eb;
  --rc-accent-card-slate: #1d2438;
  --rc-accent-card-slate-2: #252d43;
  --rc-accent-dark-copy: #f8fafc;
  --rc-accent-dark-muted: #d7dee9;
}

/* Default editorial cards: keep the sharp style, but give selected boxes real presence. */
.card,
.pk-proof-pair-card,
.rc-nectar-proof,
.pk-logo-strip,
.pk-offer-image,
.pk-img-placeholder,
.pk-case-image-block,
.contact-form-wrapper {
  border-width: 2px !important;
  box-shadow: var(--rc-accent-shadow-ink) !important;
}

/* Cards inside grey sections need the strongest lift because the page background is close in tone. */
.section-gray .card,
.section-gray .pk-proof-pair-card,
.section-gray .final-cta-box,
.section-gray-strong .contact-form-wrapper {
  box-shadow: 10px 10px 0 rgba(19, 23, 42, 0.14) !important;
}

/* Dark / outcome cards: retain contrast but add a visible accent edge. */
.card-gradient,
.dark-band {
  border: 2px solid rgba(248, 250, 252, 0.78) !important;
  box-shadow: var(--rc-accent-shadow-sky-dark) !important;
  background: #111827 !important;
}
.card-gradient h3,
.card-gradient p,
.card-gradient .card-copy,
.dark-band h2,
.dark-band h3,
.dark-band p {
  color: var(--rc-accent-dark-copy) !important;
}
.dark-band p[style] {
  color: var(--rc-accent-dark-muted) !important;
}

/* Final CTAs should feel important, but orange stays reserved for buttons. */
.final-cta-box {
  border-width: 2px !important;
  box-shadow: 12px 12px 0 rgba(245, 230, 66, 0.22) !important;
}
.section-gray .final-cta-box,
.section-gray-strong .final-cta-box {
  box-shadow: 12px 12px 0 rgba(19, 23, 42, 0.14) !important;
}

/* Hero proof cards on navy: use lighter offset shadows so white cards do not disappear. */
.hero-section .rc-proof-float,
.rc-home-hero .rc-proof-float,
.hero-section .rc-delivery-row div,
.rc-home-hero .rc-delivery-row div,
.services-hero-card,
.rc-interior-hero-card {
  border: 2px solid rgba(248, 250, 252, 0.92) !important;
  box-shadow: var(--rc-accent-shadow-sky-dark) !important;
}

.rc-home-hero .rc-proof-float:nth-of-type(2),
.hero-section .rc-proof-float:nth-of-type(2) {
  box-shadow: var(--rc-accent-shadow-white-dark) !important;
}
.rc-home-hero .rc-proof-float:nth-of-type(3),
.hero-section .rc-proof-float:nth-of-type(3) {
  box-shadow: var(--rc-accent-shadow-yellow-dark) !important;
}
.rc-home-hero .rc-delivery-row div,
.hero-section .rc-delivery-row div {
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.12) !important;
}

/* Interior hero summary cards: cream paper card with a visible sky offset on dark navy. */
.rc-interior-hero-card,
.services-hero-card {
  background: var(--rc-accent-card-cream) !important;
  color: #07111f !important;
  border-color: rgba(248, 250, 252, 0.94) !important;
}
.rc-interior-hero-card *,
.services-hero-card * {
  color: #07111f !important;
}
.rc-interior-hero-card .rc-interior-card-label,
.services-hero-card-label {
  color: #334155 !important;
}

/* Case-study proof boxes: vary accent subtly so the proof section has rhythm. */
.pk-proof-pair-card:nth-child(odd) {
  box-shadow: 10px 10px 0 rgba(139, 220, 255, 0.26) !important;
}
.pk-proof-pair-card:nth-child(even) {
  box-shadow: 10px 10px 0 rgba(245, 230, 66, 0.26) !important;
}
.rc-nectar-proof {
  box-shadow: 12px 12px 0 rgba(19, 23, 42, 0.10) !important;
}

/* Accordions: keep the cleaner v63.11 behaviour but give the FAQ set more editorial weight. */
.pk-accordion-item {
  border-width: 2px !important;
  box-shadow: 8px 8px 0 rgba(19, 23, 42, 0.08) !important;
}
.pk-accordion-item[open],
.pk-accordion-item.is-open {
  box-shadow: 8px 8px 0 rgba(139, 220, 255, 0.18) !important;
}

/* Forms and quiz-like cards: softer elevation to avoid fighting the input fields. */
.contact-form-wrapper,
.quiz-container,
.scorecard-container,
.card-style-audit-shell {
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12) !important;
}

/* Small motion cue on desktop only. */
@media (hover: hover) and (min-width: 900px) {
  .card,
  .pk-proof-pair-card,
  .final-cta-box,
  .services-hero-card,
  .rc-interior-hero-card {
    transition: transform 160ms ease, box-shadow 160ms ease;
  }
  .card:hover,
  .pk-proof-pair-card:hover {
    transform: translate(-2px, -2px);
  }
}

/* Mobile: reduce offsets so cards do not create horizontal overflow on 375px screens. */
@media (max-width: 760px) {
  .card,
  .pk-proof-pair-card,
  .rc-nectar-proof,
  .pk-logo-strip,
  .pk-offer-image,
  .pk-img-placeholder,
  .pk-case-image-block,
  .contact-form-wrapper,
  .final-cta-box,
  .pk-accordion-item {
    box-shadow: 6px 6px 0 rgba(19, 23, 42, 0.10) !important;
  }
  .card-gradient,
  .dark-band,
  .services-hero-card,
  .rc-interior-hero-card,
  .hero-section .rc-proof-float,
  .rc-home-hero .rc-proof-float,
  .hero-section .rc-delivery-row div,
  .rc-home-hero .rc-delivery-row div {
    box-shadow: 6px 6px 0 rgba(139, 220, 255, 0.16) !important;
  }
  .final-cta-box {
    box-shadow: 6px 6px 0 rgba(245, 230, 66, 0.18) !important;
  }
}

/* Copy contraction cleanup from earlier automated pass. */
.pk-accordion-question,
.pk-accordion-content p {
  text-wrap: pretty;
}

/* ======================================================================
   v63.17 Group card restraint pass
   Less is more: in repeated card groups, only the dark/emphasis card keeps
   the hard-offset accent. Supporting white cards stay clean so the grouped
   layouts do not feel over-decorated.
====================================================================== */
.four-card-grid > .card:not(.card-gradient),
.three-card-grid > .card:not(.card-gradient),
.three-columns-grid > .card:not(.card-gradient),
.about-boxes > .card:not(.card-gradient),
.steps-grid > .card:not(.card-gradient),
.home-secondary-grid > .card:not(.card-gradient) {
  box-shadow: none !important;
}

.section-gray .four-card-grid > .card:not(.card-gradient),
.section-gray .three-card-grid > .card:not(.card-gradient),
.section-gray .three-columns-grid > .card:not(.card-gradient),
.section-gray .steps-grid > .card:not(.card-gradient),
.section-gray .home-secondary-grid > .card:not(.card-gradient) {
  box-shadow: none !important;
}

.four-card-grid > .card.card-gradient,
.three-card-grid > .card.card-gradient,
.three-columns-grid > .card.card-gradient,
.about-boxes > .card.card-gradient,
.steps-grid > .card.card-gradient,
.home-secondary-grid > .card.card-gradient {
  box-shadow: var(--rc-accent-shadow-sky-dark) !important;
}

@media (hover: hover) and (min-width: 900px) {
  .four-card-grid > .card:not(.card-gradient):hover,
  .three-card-grid > .card:not(.card-gradient):hover,
  .three-columns-grid > .card:not(.card-gradient):hover,
  .about-boxes > .card:not(.card-gradient):hover,
  .steps-grid > .card:not(.card-gradient):hover,
  .home-secondary-grid > .card:not(.card-gradient):hover {
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .four-card-grid > .card:not(.card-gradient),
  .three-card-grid > .card:not(.card-gradient),
  .three-columns-grid > .card:not(.card-gradient),
  .about-boxes > .card:not(.card-gradient),
  .steps-grid > .card:not(.card-gradient),
  .home-secondary-grid > .card:not(.card-gradient) {
    box-shadow: none !important;
  }

  .four-card-grid > .card.card-gradient,
  .three-card-grid > .card.card-gradient,
  .three-columns-grid > .card.card-gradient,
  .about-boxes > .card.card-gradient,
  .steps-grid > .card.card-gradient,
  .home-secondary-grid > .card.card-gradient {
    box-shadow: 6px 6px 0 rgba(139, 220, 255, 0.16) !important;
  }
}

/* ======================================================================
   v63.18 case study templates
   Full commercial proof pages for Nectar, Tara and Snooker TV
====================================================================== */
.rc-case-page {
  --rc-case-navy: #13172a;
  --rc-case-ink: #0b1220;
  --rc-case-muted: #334155;
  --rc-case-orange: #ff5500;
  --rc-case-yellow: #f5e642;
  --rc-case-sky: #7dd3fc;
  --rc-case-line: #111827;
  background: #ffffff;
  color: var(--rc-case-ink);
}

.rc-case-page .container {
  width: min(100% - 2rem, 1180px);
}

.rc-case-hero {
  background: var(--rc-case-navy);
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 6px solid var(--rc-case-orange);
  overflow: hidden;
}

.rc-case-hero--index {
  border-bottom-color: var(--rc-case-yellow);
}

.rc-case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.rc-case-hero-copy {
  min-width: 0;
}

.rc-case-eyebrow,
.rc-case-kicker,
.rc-case-index-label {
  margin: 0 0 1rem;
  color: #4b5563;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rc-case-hero .rc-case-eyebrow {
  color: #d8dee8;
}

.rc-case-page h1,
.rc-case-page h2,
.rc-case-page h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rc-case-page h1 {
  color: #ffffff;
  font-size: clamp(3.2rem, 6.5vw, 6.4rem);
  max-width: 900px;
}

.rc-case-page h2 {
  color: #05070d;
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  max-width: 900px;
}

.rc-case-page h3 {
  color: #05070d;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1.02;
}

.rc-case-intro {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: #f1f5f9;
  font-size: clamp(1.1rem, 1.35vw, 1.28rem);
  font-weight: 750;
  line-height: 1.62;
}

.rc-case-actions {
  margin-top: 1.6rem;
}

.rc-case-dark-link,
.rc-case-hero a:not(.btn) {
  color: var(--rc-case-sky) !important;
  font-weight: 900;
  text-decoration: underline !important;
  text-decoration-thickness: 0.11em !important;
  text-underline-offset: 0.18em !important;
}

.rc-case-dark-link:hover,
.rc-case-hero a:not(.btn):hover {
  color: #bae6fd !important;
}

.rc-case-stat-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.rc-case-stat {
  min-height: 142px;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: #ffffff;
  color: var(--rc-case-ink);
  border: 3px solid #05070d;
  box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.18);
}

.rc-case-stat--wide {
  grid-column: 1 / -1;
}

.rc-case-stat--yellow {
  background: var(--rc-case-yellow);
}

.rc-case-stat--dark {
  background: #0b1220;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 12px 12px 0 rgba(125, 211, 252, 0.24);
}

.rc-case-stat strong {
  display: block;
  color: inherit;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.rc-case-stat span {
  display: block;
  color: inherit;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.rc-case-short-card {
  max-width: 980px;
  margin: clamp(2.4rem, 5vw, 4.5rem) auto 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--rc-case-ink);
  border: 3px solid #05070d;
  box-shadow: 14px 14px 0 rgba(245, 230, 66, 0.75);
}

.rc-case-short-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: #0b1220;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-case-short-card p,
.rc-case-page p,
.rc-case-page li {
  margin: 0;
  color: #172033;
  font-size: clamp(1.05rem, 1.15vw, 1.16rem);
  font-weight: 650;
  line-height: 1.68;
}

.rc-case-short-card p {
  color: #172033;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 750;
}

.rc-case-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.rc-case-section--white {
  background: #ffffff;
}

.rc-case-section--grey {
  background: #eeeeef;
  border-top: 2px solid #111827;
  border-bottom: 2px solid #111827;
}

.rc-case-section--result {
  background: #f7f7f5;
  border-top: 2px solid #111827;
  border-bottom: 2px solid #111827;
}

.rc-case-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.rc-case-split--reverse > :first-child {
  order: 2;
}

.rc-case-split--reverse > :last-child {
  order: 1;
}

.rc-case-copy-block {
  display: grid;
  gap: 1.1rem;
}

.rc-case-copy-block--wide {
  max-width: 880px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.rc-case-copy-block p + p {
  margin-top: 0.2rem;
}

.rc-case-emphasis-card,
.rc-case-image-card,
.rc-case-mini-card,
.rc-case-index-card,
.rc-case-support-strip,
.rc-case-result-panel,
.rc-case-cta-box {
  border: 3px solid #111827;
}

.rc-case-emphasis-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--rc-case-yellow);
  box-shadow: 14px 14px 0 #d1d5db;
}

.rc-case-emphasis-card--dark {
  background: #0b1220;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 14px 14px 0 rgba(125, 211, 252, 0.35);
}

.rc-case-emphasis-card span {
  display: block;
  margin-bottom: 1rem;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-case-emphasis-card strong {
  display: block;
  color: inherit;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rc-case-image-card {
  padding: 1rem;
  background: #ffffff;
  box-shadow: 12px 12px 0 #d1d5db;
}

.rc-case-image,
.rc-case-image-card img,
.rc-case-image-card .pk-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 2px solid #111827;
  background: #f8fafc;
}

.rc-case-image-card p {
  margin-top: 0.9rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

.rc-case-card-grid {
  display: grid;
  gap: 1rem;
}

.rc-case-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rc-case-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc-case-card-grid--five,
.rc-case-card-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rc-case-mini-card,
.rc-case-index-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  background: #ffffff;
}

.rc-case-mini-card--dark,
.rc-case-index-card--dark {
  background: #0b1220;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 12px 12px 0 rgba(125, 211, 252, 0.3);
}

.rc-case-mini-card--dark h3,
.rc-case-mini-card--dark p,
.rc-case-index-card--dark h3,
.rc-case-index-card--dark p,
.rc-case-index-card--dark .rc-case-index-label {
  color: #ffffff;
}

.rc-case-result-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: #ffffff;
  box-shadow: 16px 16px 0 #d1d5db;
}

.rc-case-result-copy {
  display: grid;
  gap: 1rem;
}

.rc-case-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.rc-case-ba-card,
.rc-case-metric {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.6rem;
  padding: 1.2rem;
  text-align: center;
  background: #ffffff;
  border: 3px solid #111827;
}

.rc-case-ba-card--after,
.rc-case-metric--accent {
  background: var(--rc-case-yellow);
}

.rc-case-ba-card strong,
.rc-case-metric strong {
  display: block;
  color: #05070d;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 0.9;
}

.rc-case-ba-card span,
.rc-case-metric span {
  display: block;
  color: #111827;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-case-ba-arrow {
  display: grid;
  place-items: center;
  color: #08795f;
}

.rc-case-ba-arrow svg {
  width: 52px;
  height: 52px;
}

.rc-case-proof-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rc-case-metric strong {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.rc-case-cta {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: #ffffff;
}

.rc-case-cta-box {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: #ffffff;
  box-shadow: 16px 16px 0 rgba(255, 85, 0, 0.18);
}

.rc-case-cta-box h2 {
  max-width: 880px;
}

.rc-case-cta-box p {
  max-width: 680px;
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
}

.rc-case-index-grid {
  align-items: stretch;
}

.rc-case-index-card a,
.rc-case-page .rc-case-section a:not(.btn) {
  color: #005eb8;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.rc-case-index-card--dark a {
  color: var(--rc-case-sky);
}

.rc-case-support-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: #ffffff;
}

.rc-case-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rc-case-support-grid article {
  padding: 1.2rem;
  border: 2px solid #111827;
}

@media (max-width: 980px) {
  .rc-case-hero-grid,
  .rc-case-split,
  .rc-case-result-panel,
  .rc-case-support-strip {
    grid-template-columns: 1fr;
  }

  .rc-case-split--reverse > :first-child,
  .rc-case-split--reverse > :last-child {
    order: initial;
  }

  .rc-case-card-grid--three,
  .rc-case-card-grid--four,
  .rc-case-card-grid--five,
  .rc-case-card-grid--six,
  .rc-case-proof-metric-grid,
  .rc-case-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rc-case-page .container {
    width: min(100% - 1.35rem, 1180px);
  }

  .rc-case-hero {
    padding: 3rem 0 2.6rem;
  }

  .rc-case-page h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .rc-case-page h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .rc-case-stat-board {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .rc-case-stat {
    min-height: 124px;
    padding: 0.95rem;
    border-width: 2px;
    box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.16);
  }

  .rc-case-stat--dark {
    box-shadow: 7px 7px 0 rgba(125, 211, 252, 0.24);
  }

  .rc-case-stat strong {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .rc-case-stat span {
    font-size: 0.86rem;
  }

  .rc-case-short-card,
  .rc-case-emphasis-card,
  .rc-case-image-card,
  .rc-case-result-panel,
  .rc-case-cta-box,
  .rc-case-mini-card--dark,
  .rc-case-index-card--dark {
    box-shadow: 7px 7px 0 #d1d5db;
  }

  .rc-case-short-card {
    box-shadow: 7px 7px 0 rgba(245, 230, 66, 0.75);
  }

  .rc-case-emphasis-card--dark,
  .rc-case-mini-card--dark,
  .rc-case-index-card--dark {
    box-shadow: 7px 7px 0 rgba(125, 211, 252, 0.26);
  }

  .rc-case-before-after {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.55rem;
  }

  .rc-case-ba-card {
    min-height: 134px;
    padding: 0.75rem;
    border-width: 2px;
  }

  .rc-case-ba-card strong {
    font-size: clamp(2.4rem, 14vw, 3.4rem);
  }

  .rc-case-ba-card span {
    font-size: 0.84rem;
  }

  .rc-case-ba-arrow svg {
    width: 34px;
    height: 34px;
  }

  .rc-case-proof-metric-grid {
    grid-template-columns: 1fr;
  }

  .rc-case-metric {
    min-height: 140px;
  }
}


/* =========================================================
   v63.20 case study readability and image polish
   Fixes global !important heading/body overrides on case pages,
   removes note-like image captions, and prevents case images cropping.
   ========================================================= */
.rc-case-page .rc-case-hero h1,
.rc-case-page .rc-case-hero h2,
.rc-case-page .rc-case-hero h3 {
  color: #ffffff !important;
}

.rc-case-page .rc-case-hero h1 {
  font-family: "Barlow Condensed", Impact, sans-serif !important;
  font-size: clamp(3rem, 5.4vw, 5.7rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
  max-width: 760px !important;
}

.rc-case-page--tara .rc-case-hero h1 {
  font-size: clamp(2.85rem, 5vw, 5.25rem) !important;
  max-width: 780px !important;
}

.rc-case-page .rc-case-hero .rc-case-eyebrow,
.rc-case-page .rc-case-hero .rc-case-kicker {
  color: #d8dee8 !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-hero .rc-case-intro {
  color: #f1f5f9 !important;
  font-size: clamp(1.08rem, 1.28vw, 1.22rem) !important;
  line-height: 1.62 !important;
  font-weight: 750 !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-section h2,
.rc-case-page .rc-case-section h3,
.rc-case-page .rc-case-cta h2 {
  color: #05070d !important;
  font-family: "Barlow Condensed", Impact, sans-serif !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}

.rc-case-page .rc-case-section p,
.rc-case-page .rc-case-section li,
.rc-case-page .rc-case-short-card p,
.rc-case-page .rc-case-cta p,
.rc-case-page .rc-case-image-card p {
  color: #172033 !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-kicker,
.rc-case-page .rc-case-short-card span,
.rc-case-page .rc-case-emphasis-card span {
  color: #263244 !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-emphasis-card--dark,
.rc-case-page .rc-case-mini-card--dark,
.rc-case-page .rc-case-index-card--dark,
.rc-case-page .rc-case-stat--dark {
  background: #0b1220 !important;
  color: #ffffff !important;
}

.rc-case-page .rc-case-emphasis-card--dark *,
.rc-case-page .rc-case-mini-card--dark *,
.rc-case-page .rc-case-index-card--dark *,
.rc-case-page .rc-case-stat--dark * {
  color: #ffffff !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-stat:not(.rc-case-stat--dark) *,
.rc-case-page .rc-case-metric *,
.rc-case-page .rc-case-ba-card * {
  color: #05070d !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-hero-grid {
  align-items: center !important;
  gap: clamp(2rem, 5vw, 4.5rem) !important;
}

.rc-case-page .rc-case-stat-board {
  max-width: 560px !important;
  margin-inline: auto !important;
}

.rc-case-page .rc-case-image-card {
  overflow: hidden !important;
}

.rc-case-page .rc-case-image,
.rc-case-page .rc-case-image-card img,
.rc-case-page .rc-case-image-card .pk-img-placeholder {
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
  max-height: none !important;
}

/* Hide any legacy image guidance captions if older cached templates render them. */
.rc-case-page .rc-case-image-card p:empty {
  display: none !important;
}

@media (max-width: 760px) {
  .rc-case-page .rc-case-hero h1,
  .rc-case-page--tara .rc-case-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem) !important;
    line-height: 1.02 !important;
  }

  .rc-case-page .rc-case-hero .rc-case-intro,
  .rc-case-page .rc-case-short-card p,
  .rc-case-page .rc-case-section p,
  .rc-case-page .rc-case-section li {
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .rc-case-page .rc-case-stat-board {
    max-width: 100% !important;
  }

  .rc-case-page .rc-case-image,
  .rc-case-page .rc-case-image-card img,
  .rc-case-page .rc-case-image-card .pk-img-placeholder {
    aspect-ratio: 4 / 3 !important;
  }
}

/* =========================================================
   v63.21 case study and 404 polish
   - Snooker TV routes replace Jason Francis routes
   - Tara hero/result stats simplified
   - hard WCAG contrast fixes for dark cards and hero links
   - 404 page rebuilt in current visual system
   ========================================================= */
.rc-case-page .rc-case-dark-link,
.rc-case-page .rc-case-hero a.rc-case-dark-link,
.rc-case-page .rc-case-hero a:not(.btn),
.rc-404-page .rc-case-dark-link {
  color: #8bdcff !important;
  text-decoration: underline !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 0.11em !important;
  text-underline-offset: 0.18em !important;
  font-weight: 900 !important;
}

.rc-case-page .rc-case-dark-link:hover,
.rc-case-page .rc-case-hero a.rc-case-dark-link:hover,
.rc-case-page .rc-case-hero a:not(.btn):hover,
.rc-404-page .rc-case-dark-link:hover {
  color: #c7efff !important;
}

.rc-case-page .rc-case-dark-link:focus-visible,
.rc-case-page .rc-case-hero a:not(.btn):focus-visible,
.rc-404-page .rc-case-dark-link:focus-visible {
  outline: 3px solid #f5e642 !important;
  outline-offset: 4px !important;
}

.rc-case-page .rc-case-emphasis-card--dark,
.rc-case-page .rc-case-mini-card--dark,
.rc-case-page .rc-case-index-card--dark,
.rc-case-page .rc-case-stat--dark {
  background: #0b1220 !important;
  border-color: rgba(255, 255, 255, 0.82) !important;
  color: #ffffff !important;
}

.rc-case-page .rc-case-emphasis-card--dark span,
.rc-case-page .rc-case-emphasis-card--dark strong,
.rc-case-page .rc-case-emphasis-card--dark p,
.rc-case-page .rc-case-mini-card--dark h3,
.rc-case-page .rc-case-mini-card--dark p,
.rc-case-page .rc-case-index-card--dark h3,
.rc-case-page .rc-case-index-card--dark p,
.rc-case-page .rc-case-index-card--dark span,
.rc-case-page .rc-case-stat--dark strong,
.rc-case-page .rc-case-stat--dark span {
  color: #ffffff !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-emphasis-card--dark span,
.rc-case-page .rc-case-mini-card--dark h3,
.rc-case-page .rc-case-index-card--dark .rc-case-index-label {
  color: #d8dee8 !important;
}

.rc-case-page--tara .rc-case-hero h1 {
  font-size: clamp(2.8rem, 4.55vw, 4.65rem) !important;
  max-width: 720px !important;
  line-height: 1.01 !important;
}

.rc-case-page--tara .rc-case-stat-board--simple {
  grid-template-columns: 1fr 1fr !important;
  max-width: 520px !important;
  gap: 1rem !important;
}

.rc-case-page--tara .rc-case-stat-board--simple .rc-case-stat--wide {
  grid-column: 1 / -1 !important;
}

.rc-case-page--tara .rc-case-stat-board--simple .rc-case-stat {
  min-height: 158px !important;
  align-content: center !important;
}

.rc-case-page--tara .rc-case-stat-board--simple .rc-case-stat strong {
  font-size: clamp(3rem, 4.4vw, 4.5rem) !important;
}

.rc-case-page--tara .rc-case-stat-board--simple .rc-case-stat:not(.rc-case-stat--wide) strong {
  font-size: clamp(2.65rem, 4vw, 4rem) !important;
}

.rc-case-result-panel {
  overflow: hidden !important;
}

.rc-case-page--tara .rc-case-result-panel {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr) !important;
  gap: clamp(2rem, 4vw, 3rem) !important;
}

.rc-case-page--tara .rc-case-proof-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.8rem !important;
  align-items: stretch !important;
}

.rc-case-page--tara .rc-case-metric {
  min-height: 170px !important;
  padding: 1rem !important;
  overflow: hidden !important;
}

.rc-case-page--tara .rc-case-metric strong {
  font-size: clamp(2.2rem, 4.1vw, 3.55rem) !important;
  line-height: 0.92 !important;
  white-space: nowrap !important;
}

.rc-case-page--tara .rc-case-metric span {
  font-size: clamp(0.78rem, 0.9vw, 0.92rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.06em !important;
}

.rc-case-page--tara .rc-case-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.rc-case-page--tara .rc-case-card-grid--five .rc-case-mini-card {
  padding: clamp(1rem, 1.7vw, 1.35rem) !important;
}

.rc-case-page--tara .rc-case-card-grid--five .rc-case-mini-card h3 {
  font-size: clamp(1.35rem, 1.65vw, 1.8rem) !important;
}

.rc-case-page--tara .rc-case-card-grid--five .rc-case-mini-card p {
  font-size: clamp(0.98rem, 1vw, 1.05rem) !important;
  line-height: 1.52 !important;
}

.rc-case-page .rc-case-image,
.rc-case-page .rc-case-image-card img,
.rc-case-page .rc-case-image-card .pk-img-placeholder {
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

/* 404 page */
.rc-404-page {
  background: #ffffff;
  color: #0b1220;
}

.rc-404-hero {
  background: #13172a;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 6px solid #ff5500;
}

.rc-404-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.rc-404-code {
  margin: 0 0 1rem;
  color: #f5e642 !important;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(4.5rem, 11vw, 8rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0.04em;
}

.rc-404-copy h1 {
  margin: 0;
  max-width: 760px;
  color: #ffffff !important;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 6.8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rc-404-copy p:not(.rc-404-code) {
  max-width: 700px;
  margin: 1.4rem 0 0;
  color: #f1f5f9 !important;
  font-size: clamp(1.08rem, 1.28vw, 1.24rem);
  font-weight: 750;
  line-height: 1.62;
}

.rc-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 2rem;
}

.rc-404-card,
.rc-404-panel {
  border: 3px solid #111827;
  background: #ffffff;
  box-shadow: 14px 14px 0 rgba(125, 211, 252, 0.32);
}

.rc-404-card {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.rc-404-card span {
  display: block;
  margin-bottom: 0.4rem;
  color: #263244;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-404-card a,
.rc-404-links a {
  color: #005eb8 !important;
  font-weight: 900;
  text-decoration: underline !important;
  text-decoration-thickness: 0.1em !important;
  text-underline-offset: 0.18em !important;
}

.rc-404-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: #f7f7f5;
}

.rc-404-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.rc-404-panel h2 {
  margin: 0;
  color: #05070d;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rc-404-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1180px) {
  .rc-case-page--tara .rc-case-card-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .rc-case-page--tara .rc-case-result-panel,
  .rc-404-grid,
  .rc-404-panel {
    grid-template-columns: 1fr !important;
  }

  .rc-case-page--tara .rc-case-proof-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .rc-case-page--tara .rc-case-stat-board--simple,
  .rc-case-page--tara .rc-case-card-grid--five,
  .rc-case-page--tara .rc-case-proof-metric-grid,
  .rc-404-links {
    grid-template-columns: 1fr !important;
  }

  .rc-case-page--tara .rc-case-stat-board--simple .rc-case-stat {
    min-height: 126px !important;
  }

  .rc-case-page--tara .rc-case-metric {
    min-height: 128px !important;
  }

  .rc-404-actions,
  .rc-404-actions .btn {
    width: 100%;
  }

  .rc-404-card,
  .rc-404-panel {
    box-shadow: 7px 7px 0 rgba(125, 211, 252, 0.26);
  }
}


/* =========================================================
   v63.22 case study accessibility and layout correction
   Applies Claude build rules: three hero stats, WCAG AA links,
   smaller hero H1s, money stat full-width, no overflowing stats.
   ========================================================= */
.rc-case-page {
  --rc-case-sky-link: #8bdcff;
  --rc-case-sky-link-hover: #c7efff;
  --rc-case-light-link: #005eb8;
}

.rc-case-page .rc-case-hero .rc-case-dark-link,
.rc-case-page .rc-case-hero a.rc-case-dark-link,
.rc-case-page .rc-case-hero a:not(.btn),
.rc-case-page .rc-case-dark-link {
  color: var(--rc-case-sky-link) !important;
  text-decoration: underline !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 0.1em !important;
  text-underline-offset: 0.18em !important;
  font-weight: 900 !important;
}

.rc-case-page .rc-case-hero .rc-case-dark-link:hover,
.rc-case-page .rc-case-hero a.rc-case-dark-link:hover,
.rc-case-page .rc-case-hero a:not(.btn):hover,
.rc-case-page .rc-case-dark-link:hover {
  color: var(--rc-case-sky-link-hover) !important;
}

.rc-case-page .rc-case-section a:not(.btn),
.rc-case-page .rc-case-index-card a {
  color: var(--rc-case-light-link) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 0.1em !important;
  text-underline-offset: 0.18em !important;
}

.rc-case-page .rc-case-section a:not(.btn):hover,
.rc-case-page .rc-case-index-card a:hover {
  color: #003d78 !important;
}

.rc-case-page .rc-case-hero h1,
.rc-case-page--tara .rc-case-hero h1,
.rc-case-page--jason .rc-case-hero h1,
.rc-case-page--nectar .rc-case-hero h1 {
  font-size: clamp(3rem, 4.55vw, 5.05rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0.035em !important;
  max-width: 780px !important;
}

.rc-case-page--jason .rc-case-hero h1 {
  font-size: clamp(2.9rem, 4.25vw, 4.75rem) !important;
  max-width: 700px !important;
}

.rc-case-page--tara .rc-case-hero h1 {
  font-size: clamp(2.85rem, 4.15vw, 4.65rem) !important;
  max-width: 720px !important;
}

.rc-case-page .rc-case-stat-board,
.rc-case-page--tara .rc-case-stat-board--simple {
  max-width: 520px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

.rc-case-page .rc-case-stat {
  min-height: 138px !important;
  align-content: center !important;
  padding: clamp(1rem, 1.8vw, 1.25rem) !important;
  overflow: hidden !important;
}

.rc-case-page .rc-case-stat strong {
  font-size: clamp(2.55rem, 3.65vw, 3.75rem) !important;
  line-height: 0.95 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.rc-case-page--jason .rc-case-stat strong,
.rc-case-page--tara .rc-case-stat:not(.rc-case-stat--wide) strong {
  font-size: clamp(2.15rem, 3.15vw, 3.15rem) !important;
  white-space: normal !important;
}

.rc-case-page .rc-case-stat span {
  font-size: clamp(0.88rem, 0.95vw, 1rem) !important;
  line-height: 1.18 !important;
}

.rc-case-page .rc-case-stat--wide {
  grid-column: 1 / -1 !important;
}

.rc-case-page .rc-case-emphasis-card--dark span,
.rc-case-page .rc-case-mini-card--dark h3,
.rc-case-page .rc-case-mini-card--dark p,
.rc-case-page .rc-case-emphasis-card--dark strong,
.rc-case-page .rc-case-emphasis-card--dark p {
  color: #ffffff !important;
  opacity: 1 !important;
}

.rc-case-page .rc-case-mini-card--dark h3,
.rc-case-page .rc-case-emphasis-card--dark span {
  color: #e5edf7 !important;
}

.rc-case-page--tara .rc-case-card-grid--five {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

.rc-case-page--tara .rc-case-card-grid--five .rc-case-mini-card--dark {
  grid-column: span 1 !important;
}

.rc-case-proof-metric-grid,
.rc-case-page--tara .rc-case-proof-metric-grid,
.rc-case-page--jason .rc-case-proof-metric-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  align-items: stretch !important;
}

.rc-case-proof-metric-grid--money-first .rc-case-metric--money {
  grid-column: 1 / -1 !important;
}

.rc-case-page--tara .rc-case-result-panel,
.rc-case-page--jason .rc-case-result-panel,
.rc-case-page--nectar .rc-case-result-panel {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr) !important;
}

.rc-case-page .rc-case-metric {
  min-height: 154px !important;
  padding: clamp(1rem, 1.7vw, 1.35rem) !important;
  overflow: hidden !important;
}

.rc-case-page .rc-case-metric strong,
.rc-case-page--tara .rc-case-metric strong,
.rc-case-page--jason .rc-case-metric strong {
  font-size: clamp(2.35rem, 4.1vw, 4.05rem) !important;
  line-height: 0.95 !important;
  white-space: normal !important;
  max-width: 100% !important;
}

.rc-case-proof-metric-grid--money-first .rc-case-metric--money strong {
  font-size: clamp(3.1rem, 5.4vw, 5.15rem) !important;
}

.rc-case-page .rc-case-metric span,
.rc-case-page--tara .rc-case-metric span,
.rc-case-page--jason .rc-case-metric span {
  font-size: clamp(0.82rem, 0.95vw, 1rem) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.055em !important;
}

.rc-case-page .rc-case-image,
.rc-case-page .rc-case-image-card img,
.rc-case-page .rc-case-image-card .pk-img-placeholder {
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

@media (max-width: 980px) {
  .rc-case-page--tara .rc-case-card-grid--five,
  .rc-case-page .rc-case-card-grid--five,
  .rc-case-page .rc-case-card-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .rc-case-page--tara .rc-case-result-panel,
  .rc-case-page--jason .rc-case-result-panel,
  .rc-case-page--nectar .rc-case-result-panel {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .rc-case-page .rc-case-hero h1,
  .rc-case-page--tara .rc-case-hero h1,
  .rc-case-page--jason .rc-case-hero h1,
  .rc-case-page--nectar .rc-case-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.55rem) !important;
    line-height: 1.04 !important;
  }

  .rc-case-page .rc-case-stat-board,
  .rc-case-page--tara .rc-case-stat-board--simple {
    grid-template-columns: 1fr !important;
  }

  .rc-case-page .rc-case-stat {
    min-height: 112px !important;
  }

  .rc-case-page--tara .rc-case-card-grid--five,
  .rc-case-page .rc-case-card-grid--five,
  .rc-case-page .rc-case-card-grid--six,
  .rc-case-proof-metric-grid,
  .rc-case-page--tara .rc-case-proof-metric-grid,
  .rc-case-page--jason .rc-case-proof-metric-grid {
    grid-template-columns: 1fr !important;
  }

  .rc-case-page .rc-case-metric {
    min-height: 128px !important;
  }
}

/* =========================================================
   v63.23 case-study and free-tool hardening
   - WCAG safe links on navy
   - no clipped Snooker/Tara metric text
   - cleaner scorecard/checklist/free-tool mobile layouts
   ========================================================= */
:root {
  --rc-link-on-navy: #9fe8ff;
  --rc-link-on-navy-hover: #d7f7ff;
}

.rc-case-page .rc-case-hero a.rc-case-dark-link,
.rc-case-page .rc-case-hero .rc-case-actions a,
.rc-case-page .rc-case-hero a:not(.btn),
body .rc-case-page .rc-case-dark-link {
  color: var(--rc-link-on-navy) !important;
  text-decoration: underline !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 0.1em !important;
  text-underline-offset: 0.18em !important;
  font-weight: 900 !important;
}

.rc-case-page .rc-case-hero a.rc-case-dark-link:hover,
.rc-case-page .rc-case-hero .rc-case-actions a:hover,
.rc-case-page .rc-case-hero a:not(.btn):hover,
body .rc-case-page .rc-case-dark-link:hover {
  color: var(--rc-link-on-navy-hover) !important;
}

.rc-case-page .rc-case-hero a.rc-case-dark-link:focus-visible,
.rc-case-page .rc-case-hero .rc-case-actions a:focus-visible,
body .rc-case-page .rc-case-dark-link:focus-visible {
  outline: 3px solid #f5e642 !important;
  outline-offset: 5px !important;
}

.rc-case-page .rc-case-hero h1,
.rc-case-page--nectar .rc-case-hero h1,
.rc-case-page--tara .rc-case-hero h1,
.rc-case-page--jason .rc-case-hero h1 {
  font-size: clamp(2.7rem, 3.9vw, 4.35rem) !important;
  line-height: 1.04 !important;
  letter-spacing: 0.03em !important;
  max-width: 680px !important;
}

.rc-case-page--jason .rc-case-hero h1 {
  max-width: 640px !important;
  font-size: clamp(2.55rem, 3.55vw, 4rem) !important;
}

.rc-case-page .rc-case-stat-board,
.rc-case-page--tara .rc-case-stat-board--simple {
  max-width: 560px !important;
}

.rc-case-page .rc-case-stat {
  min-width: 0 !important;
  overflow: hidden !important;
}

.rc-case-page--jason .rc-case-stat strong,
.rc-case-page--jason .rc-case-metric strong {
  font-size: clamp(2rem, 2.7vw, 2.9rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  letter-spacing: 0.01em !important;
}

.rc-case-page--jason .rc-case-stat span,
.rc-case-page--jason .rc-case-metric span {
  font-size: clamp(0.86rem, 0.92vw, 0.98rem) !important;
  line-height: 1.15 !important;
  max-width: 100% !important;
}

.rc-case-page--jason .rc-case-result-panel,
.rc-case-page--tara .rc-case-result-panel,
.rc-case-page--nectar .rc-case-result-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr) !important;
  gap: clamp(2rem, 5vw, 4rem) !important;
  align-items: center !important;
}

.rc-case-page--jason .rc-case-proof-metric-grid {
  grid-template-columns: 1fr !important;
  max-width: 360px !important;
  margin-inline: auto !important;
}

.rc-case-page--jason .rc-case-metric {
  min-height: 118px !important;
  padding: 1.1rem !important;
  display: grid !important;
  align-content: center !important;
  text-align: center !important;
}

.rc-case-page--tara .rc-case-proof-metric-grid--money-first {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 520px !important;
  margin-inline: auto !important;
}

.rc-case-page--tara .rc-case-proof-metric-grid--money-first .rc-case-metric--money {
  grid-column: 1 / -1 !important;
  min-height: 130px !important;
}

.rc-case-page--tara .rc-case-metric strong {
  font-size: clamp(2.2rem, 4vw, 3.8rem) !important;
  white-space: nowrap !important;
}

.rc-case-page--tara .rc-case-metric--money strong {
  font-size: clamp(3rem, 5.4vw, 5rem) !important;
}

.rc-case-page--tara .rc-case-metric span,
.rc-case-page--jason .rc-case-metric span {
  letter-spacing: 0.04em !important;
}

.rc-case-emphasis-card--dark,
.rc-case-mini-card--dark,
.rc-case-stat--dark {
  background: #081423 !important;
  color: #ffffff !important;
}

.rc-case-emphasis-card--dark *,
.rc-case-mini-card--dark *,
.rc-case-stat--dark * {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Free tool pages */
.rc-tool-page {
  background: #f5f5f3;
}

.rc-tool-hero {
  background: #13172a;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 5px solid #ff5500;
}

.rc-tool-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.rc-tool-eyebrow {
  margin: 0 0 1rem;
  color: #e5edf7;
  font: 900 0.95rem/1.1 Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rc-tool-eyebrow--dark {
  color: #1f2937;
}

.rc-tool-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font: 800 clamp(3rem, 6vw, 5.4rem)/0.98 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rc-tool-subtitle {
  max-width: 760px;
  margin: 1.4rem 0 0;
  color: #f2f5fb;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  font-weight: 800;
}

.rc-tool-hero-card,
.rc-tool-panel,
.rc-tool-cta-box {
  background: #ffffff;
  color: #101828;
  border: 3px solid #101828;
  box-shadow: 12px 12px 0 rgba(16, 24, 40, 0.16);
}

.rc-tool-hero-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.rc-tool-hero-card strong {
  display: block;
  color: #101828;
  font: 900 clamp(2.4rem, 5vw, 4.2rem)/0.95 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rc-tool-hero-card span {
  display: block;
  margin-top: 0.65rem;
  color: #1f2937;
  font-weight: 850;
  line-height: 1.35;
}

.rc-tool-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(16,24,40,0.16);
}

.rc-tool-section--muted {
  background: #eeeeec;
}

.rc-tool-panel,
.rc-tool-cta-box {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.rc-tool-panel h2,
.rc-tool-cta-box h2 {
  margin: 0;
  color: #050914;
  font: 800 clamp(2.3rem, 5vw, 4.2rem)/1 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rc-tool-list {
  margin-top: 1.5rem !important;
}

.rc-tool-list li {
  color: #162033 !important;
  font-size: clamp(1rem, 1.3vw, 1.16rem) !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
}

.rc-tool-cta-box {
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}

.rc-tool-cta-box p {
  max-width: 680px;
  margin: 1rem auto 1.5rem;
  color: #162033;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.55;
  font-weight: 750;
}

@media (max-width: 980px) {
  .rc-case-page--jason .rc-case-result-panel,
  .rc-case-page--tara .rc-case-result-panel,
  .rc-case-page--nectar .rc-case-result-panel,
  .rc-tool-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .rc-case-page--jason .rc-case-proof-metric-grid,
  .rc-case-page--tara .rc-case-proof-metric-grid--money-first {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .rc-case-page .rc-case-hero h1,
  .rc-case-page--nectar .rc-case-hero h1,
  .rc-case-page--tara .rc-case-hero h1,
  .rc-case-page--jason .rc-case-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem) !important;
    line-height: 1.04 !important;
  }

  .rc-case-page--tara .rc-case-proof-metric-grid--money-first,
  .rc-case-page--jason .rc-case-proof-metric-grid {
    grid-template-columns: 1fr !important;
  }

  .rc-case-page--jason .rc-case-stat strong,
  .rc-case-page--jason .rc-case-metric strong,
  .rc-case-page--tara .rc-case-metric strong,
  .rc-case-page--tara .rc-case-metric--money strong {
    font-size: clamp(2.25rem, 12vw, 3.4rem) !important;
    white-space: normal !important;
  }

  .rc-tool-hero {
    padding: 3rem 0;
  }

  .rc-tool-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.85rem);
  }

  .rc-tool-hero-card,
  .rc-tool-panel,
  .rc-tool-cta-box {
    box-shadow: 7px 7px 0 rgba(16, 24, 40, 0.14);
    border-width: 2px;
  }
}


/* =========================================================
   v63.24 case-study cosmetic QA pass
   - Nectar before/after numbers align without overlap
   - tighter result metric cards across all case studies
   - Snooker cards no longer clip words
   ========================================================= */
.rc-case-page--nectar .rc-case-before-after {
  width: min(100%, 560px) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: center !important;
  justify-items: stretch !important;
}

.rc-case-page--nectar .rc-case-ba-card {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
  min-height: clamp(150px, 12vw, 190px) !important;
  padding: clamp(0.85rem, 1.5vw, 1.2rem) !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  overflow: visible !important;
}

.rc-case-page--nectar .rc-case-ba-card strong {
  font-size: clamp(3.4rem, 5.6vw, 5.2rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
  max-width: none !important;
}

.rc-case-page--nectar .rc-case-ba-card span {
  font-size: clamp(0.9rem, 1vw, 1.05rem) !important;
  line-height: 1 !important;
}

.rc-case-page--nectar .rc-case-ba-arrow {
  position: relative !important;
  z-index: 3 !important;
  width: 58px !important;
  min-width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  color: #08795f !important;
  background: #ffffff !important;
  border-radius: 999px !important;
  margin-inline: -2px !important;
}

.rc-case-page--nectar .rc-case-ba-arrow svg {
  width: 42px !important;
  height: 42px !important;
  display: block !important;
}

.rc-case-page--nectar .rc-case-result-panel {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr) !important;
}

.rc-case-page--jason .rc-case-stat-board,
.rc-case-page--jason .rc-case-proof-metric-grid {
  min-width: 0 !important;
}

.rc-case-page--jason .rc-case-stat,
.rc-case-page--jason .rc-case-metric,
.rc-case-page--tara .rc-case-metric,
.rc-case-page--nectar .rc-case-ba-card {
  box-sizing: border-box !important;
}

.rc-case-page--jason .rc-case-stat strong,
.rc-case-page--jason .rc-case-metric strong {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  white-space: normal !important;
  font-size: clamp(2rem, 2.25vw, 2.65rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.01em !important;
}

.rc-case-page--jason .rc-case-stat span,
.rc-case-page--jason .rc-case-metric span {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  font-size: clamp(0.82rem, 0.86vw, 0.94rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.035em !important;
}

.rc-case-page--jason .rc-case-stat-board {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 540px !important;
}

.rc-case-page--jason .rc-case-stat--wide {
  grid-column: 1 / -1 !important;
}

.rc-case-page--jason .rc-case-proof-metric-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.85rem !important;
  max-width: 320px !important;
}

.rc-case-page--jason .rc-case-metric {
  min-height: 112px !important;
  padding: 1rem !important;
}

.rc-case-page--jason .rc-case-metric strong {
  font-size: clamp(2.2rem, 3.1vw, 3.35rem) !important;
}

.rc-case-page--jason .rc-case-metric span {
  font-size: clamp(0.84rem, 0.9vw, 0.96rem) !important;
}

.rc-case-page--tara .rc-case-proof-metric-grid--money-first {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.85rem !important;
}

.rc-case-page--tara .rc-case-proof-metric-grid--money-first .rc-case-metric--money {
  grid-column: 1 / -1 !important;
}

.rc-case-page--tara .rc-case-metric strong {
  font-size: clamp(2.1rem, 3.6vw, 3.35rem) !important;
  line-height: 0.95 !important;
}

.rc-case-page--tara .rc-case-metric--money strong {
  font-size: clamp(2.8rem, 4.7vw, 4.6rem) !important;
}

.rc-case-page--tara .rc-case-metric span {
  font-size: clamp(0.8rem, 0.86vw, 0.94rem) !important;
  line-height: 1.16 !important;
}

.rc-case-result-panel .rc-case-metric,
.rc-case-result-panel .rc-case-ba-card {
  overflow: hidden !important;
}

@media (max-width: 1080px) {
  .rc-case-page--nectar .rc-case-result-panel,
  .rc-case-page--jason .rc-case-result-panel,
  .rc-case-page--tara .rc-case-result-panel {
    grid-template-columns: 1fr !important;
  }

  .rc-case-page--nectar .rc-case-before-after {
    max-width: 520px !important;
  }
}

@media (max-width: 640px) {
  .rc-case-page--nectar .rc-case-before-after {
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) !important;
    width: 100% !important;
  }

  .rc-case-page--nectar .rc-case-ba-card {
    min-height: 128px !important;
    padding: 0.7rem !important;
  }

  .rc-case-page--nectar .rc-case-ba-card strong {
    font-size: clamp(2.55rem, 12vw, 3.25rem) !important;
  }

  .rc-case-page--nectar .rc-case-ba-card span {
    font-size: 0.76rem !important;
  }

  .rc-case-page--nectar .rc-case-ba-arrow {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
  }

  .rc-case-page--nectar .rc-case-ba-arrow svg {
    width: 30px !important;
    height: 30px !important;
  }

  .rc-case-page--jason .rc-case-stat-board,
  .rc-case-page--tara .rc-case-stat-board,
  .rc-case-page .rc-case-stat-board {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .rc-case-page--tara .rc-case-proof-metric-grid--money-first,
  .rc-case-page--jason .rc-case-proof-metric-grid {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .rc-case-page--jason .rc-case-stat strong,
  .rc-case-page--jason .rc-case-metric strong,
  .rc-case-page--tara .rc-case-metric strong,
  .rc-case-page--tara .rc-case-metric--money strong {
    font-size: clamp(2.15rem, 11vw, 3.2rem) !important;
    white-space: normal !important;
  }
}


/* v63.26 absolute fix: Nectar before/after arrow must never render a white tile on case-study result panels. */
body .rc-case-page--nectar .rc-case-result-panel .rc-case-before-after .rc-case-ba-arrow,
body .rc-case-page--nectar .rc-case-result-panel .rc-case-before-after .rc-case-ba-arrow:hover,
body .rc-case-page--nectar .rc-case-result-panel .rc-case-before-after .rc-case-ba-arrow:focus,
body .rc-case-page--nectar .rc-case-result-panel .rc-case-before-after .rc-case-ba-arrow:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body .rc-case-page--nectar .rc-case-result-panel .rc-case-before-after .rc-case-ba-arrow svg {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #08795f !important;
}

/* =========================================================
   v63.27 homepage image replacement
   - replaces constructed proof-board infographic with supplied before/after image
   - keeps the image contained, accessible and mobile-safe
   ========================================================= */
.rc-home-hero-image {
  grid-area: proof !important;
  justify-self: end !important;
  width: min(100%, 620px) !important;
  margin: 0 !important;
  position: relative !important;
  border: 2px solid rgba(255,255,255,0.22) !important;
  background: #0f1426 !important;
  box-shadow: 16px 16px 0 rgba(139,220,255,0.18) !important;
  overflow: hidden !important;
}
.rc-home-hero-image picture,
.rc-home-hero-image img {
  display: block !important;
  width: 100% !important;
}
.rc-home-hero-image img {
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  object-position: center center !important;
}
@media (max-width: 1120px) {
  .rc-home-hero-image {
    justify-self: center !important;
    width: min(100%, 680px) !important;
  }
}
@media (max-width: 760px) {
  .rc-home-hero-image {
    width: 100% !important;
    max-width: 540px !important;
    box-shadow: 8px 8px 0 rgba(139,220,255,0.16) !important;
  }
}


/* =========================================================
   v63.31 homepage logo wall
   - restores the homepage logo wall after the copywriting rewrite
   - uses real transparent PNG logo assets, greyscale with #111111 as the main colour
   - keeps the wall visually balanced across two rows on desktop
   ========================================================= */
.rc-logo-wall-section {
  overflow: hidden !important;
}

.pk-logo-strip--image-wall {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-items: center !important;
  gap: clamp(0.85rem, 1.8vw, 1.35rem) clamp(1rem, 2.6vw, 2.2rem) !important;
  width: min(100%, 1120px) !important;
  margin: 0 auto !important;
  padding: 1.25rem 0.5rem 1.1rem !important;
}

.pk-logo-strip--image-wall .pk-client-logo {
  --rc-logo-wall-height: 2.25rem;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 3.5rem !important;
  padding: 0.35rem 0.45rem !important;
}

.pk-logo-strip--image-wall .pk-client-logo-img {
  display: block !important;
  width: auto !important;
  height: var(--rc-logo-wall-height) !important;
  max-width: 100% !important;
  object-fit: contain !important;
  opacity: 0.94 !important;
  filter: none !important;
}

/* Optical balancing for very wide or compact marks. */
.pk-logo-strip--image-wall .pk-client-logo--meta { --rc-logo-wall-height: 2.15rem; }
.pk-logo-strip--image-wall .pk-client-logo--natwest { --rc-logo-wall-height: 2.2rem; }
.pk-logo-strip--image-wall .pk-client-logo--santander { --rc-logo-wall-height: 2.08rem; }
.pk-logo-strip--image-wall .pk-client-logo--nationwide { --rc-logo-wall-height: 1.7rem; }
.pk-logo-strip--image-wall .pk-client-logo--nectar { --rc-logo-wall-height: 3rem; }
.pk-logo-strip--image-wall .pk-client-logo--playstation { --rc-logo-wall-height: 1.85rem; }
.pk-logo-strip--image-wall .pk-client-logo--ebay { --rc-logo-wall-height: 2.45rem; }
.pk-logo-strip--image-wall .pk-client-logo--vodafone { --rc-logo-wall-height: 2.15rem; }
.pk-logo-strip--image-wall .pk-client-logo--sky { --rc-logo-wall-height: 2.55rem; }
.pk-logo-strip--image-wall .pk-client-logo--govuk { --rc-logo-wall-height: 2rem; }

.pk-logo-strip--image-wall .pk-client-logo::before,
.pk-logo-strip--image-wall .pk-client-logo::after,
.pk-logo-strip--image-wall .pk-client-logo-img::before,
.pk-logo-strip--image-wall .pk-client-logo-img::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 920px) {
  .pk-logo-strip--image-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(100%, 760px) !important;
  }
}

@media (max-width: 640px) {
  .pk-logo-strip--image-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.85rem 1rem !important;
    padding-top: 0.9rem !important;
  }

  .pk-logo-strip--image-wall .pk-client-logo {
    --rc-logo-wall-height: 2rem;
    min-height: 3.25rem !important;
    padding-inline: 0.25rem !important;
  }

  .pk-logo-strip--image-wall .pk-client-logo--meta,
  .pk-logo-strip--image-wall .pk-client-logo--natwest,
  .pk-logo-strip--image-wall .pk-client-logo--santander,
  .pk-logo-strip--image-wall .pk-client-logo--nationwide,
  .pk-logo-strip--image-wall .pk-client-logo--playstation,
  .pk-logo-strip--image-wall .pk-client-logo--govuk {
    --rc-logo-wall-height: 1.72rem;
  }

  .pk-logo-strip--image-wall .pk-client-logo--nectar,
  .pk-logo-strip--image-wall .pk-client-logo--sky,
  .pk-logo-strip--image-wall .pk-client-logo--ebay {
    --rc-logo-wall-height: 2.22rem;
  }
}
