/* ================================================================
   PrimDocs Theme — screen.css  v2  April 2026
   ----------------------------------------------------------------
   PORTABLE DESIGN SYSTEM
   To adopt for a new site: update the :root token block only.
   All sizes, colors, and spacing reference variables — no hunting
   through hundreds of lines to change a brand color or max-width.
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Serif+4:ital,wght@0,300;0,400;1,300&display=swap');

/* ================================================================
   DESIGN TOKENS — edit here to adopt for a new site
================================================================ */
:root {
  /* Brand colors */
  --blue:       #0069b4;
  --indigo:     #0f0f5a;
  --steel:      #0f69a5;
  --gold:       #c9a96e;
  --blue-mid:   #c2ddf2;
  --white:      #fff;
  --off-white:  #f6f9fc;
  --border:     #d0dde8;
  --bg-page:    #e8edf2;

  /* Text */
  --text-body:  #1a1a4a;
  --text-muted: #1e3a5a;
  --text-light: #2a4a6a;

  /* Layout */
  --max-width:         1200px;
  --nav-height:        97px;
  --container-pad:     48px;
  --container-pad-mob: 20px;

  /* Spacing scale */
  --space-xs:  16px;
  --space-sm:  24px;
  --space-md:  48px;
  --space-lg:  72px;
  --space-xl:  96px;

  /* Type scale */
  --text-2xs:  11px;
  --text-xs:   12px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   16px;
  --text-lg:   17px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  32px;
  --text-4xl:  42px;
  --text-5xl:  48px;
}

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--indigo); }

/* ================================================================
   LAYOUT — page column & container
================================================================ */
.pd-page-column {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #fff;
  /* overflow-x: clip — does NOT create a scroll container (unlike overflow:hidden),
     so position:sticky on the nav keeps working. Clips content that bleeds past
     the column edge (e.g. full-bleed pricing card on mobile). */
  overflow-x: clip;
  box-shadow: -6px 0 24px rgba(0,0,0,0.08), 6px 0 24px rgba(0,0,0,0.08);
}

.pd-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--container-pad);
  box-sizing: border-box;
}

/* ================================================================
   NAV
================================================================ */
.pd-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Nav height lives here only — not duplicated on pd-nav */
.pd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.pd-nav-logo img { height: 72px; width: auto; }
.pd-nav-logo svg { display: none; }

.pd-nav-links {
  display: flex;
  gap: 28px;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
}
.pd-nav-links a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.pd-nav-links a:hover { color: var(--blue); }
.pd-nav-links a.active {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
}
/* Ghost navigation helper wraps links in a ul */
.pd-nav-links ul { list-style: none; display: flex; flex-direction: row; gap: 28px; margin: 0; padding: 0; }
.pd-nav-links ul li { margin: 0; padding: 0; }
.pd-nav-links ul li a { color: var(--text-body); text-decoration: none; font-size: var(--text-sm); letter-spacing: 0.06em; }
.pd-nav-links ul li a:hover { color: var(--blue); }

.pd-nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 22px;
  font-family: 'Source Serif 4', serif;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.pd-nav-cta:hover { background: var(--indigo); color: #fff !important; }
.pd-hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 26px; color: var(--text-body); }

/* ================================================================
   HERO
================================================================ */
.pd-hero { border-bottom: 1px solid var(--border); }
.pd-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.pd-hero-left {
  padding: 60px var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.pd-hero-right {
  padding: 60px var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--off-white);
}
.pd-eyebrow {
  font-size: var(--text-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.pd-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-4xl);
  line-height: 1.2;
  color: var(--indigo);
  margin-bottom: 20px;
}
.pd-hero-h1 em { color: var(--blue); font-style: italic; }
.pd-hero-p {
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 38px;
  max-width: 520px;
}

/* ================================================================
   BUTTONS
================================================================ */
.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff !important;
  padding: 15px 30px;
  font-family: 'Source Serif 4', serif;
  font-size: var(--text-base);
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
}
.pd-btn-primary:hover { background: var(--indigo); color: #fff !important; }

.pd-btn-gold {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--indigo) !important;
  padding: 15px 36px;
  font-family: 'Source Serif 4', serif;
  font-size: var(--text-base);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.pd-btn-gold:hover { background: #b8904a; }

/* ================================================================
   STAT CARDS
================================================================ */
.pd-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
.pd-stat-card { border: 1px solid #1a1a6a; padding: var(--space-sm); background: var(--indigo); }
.pd-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-5xl);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.pd-stat-label { font-size: var(--text-sm); color: var(--blue-mid); }
.pd-stat-cred {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: var(--text-xs);
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.9;
}

/* ================================================================
   IMAGE SEPARATORS
================================================================ */
.pd-sep { width: 100%; position: relative; line-height: 0; }
.pd-sep img { width: 100%; height: auto; display: block; object-fit: unset; }
.pd-sep-overlay { position: absolute; inset: 0; }

/* Caption bar — sits BELOW the image as its own element, not overlaid.
   In templates: place .pd-sep-caption-bar as a sibling after .pd-sep */
.pd-sep-caption-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--container-pad);
  text-align: center;
}
.pd-sep-caption {
  font-size: var(--text-2xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ================================================================
   SECTIONS
================================================================ */
.pd-section { padding: var(--space-lg) 0; }
.pd-section-sm { padding: 64px 0; background: #fff; }
.pd-section-indigo { background: var(--indigo); padding: 64px 0; }

/* How It Works section — replaces previous inline style on the element */
.pd-hiw-section {
  background: #fff;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
}

.pd-section-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  color: var(--indigo);
  margin-bottom: 12px;
}
.pd-section-title-white {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: 16px;
}
.pd-hiw-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--indigo);
  margin-bottom: 56px;
}

/* ================================================================
   GRIDS
================================================================ */
.pd-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.pd-col-card { border-top: 2px solid var(--blue); padding-top: 20px; }
.pd-col-title { font-size: var(--text-md); color: var(--indigo); margin-bottom: 10px; }
.pd-col-body { font-size: 14px; line-height: 1.7; color: var(--text-muted); font-weight: 300; }

.pd-2col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); align-items: center; }
.pd-2col-start { align-items: start; }

/* ================================================================
   TESTIMONIAL
================================================================ */
.pd-quote {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  line-height: 1.55;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
}
.pd-quote-attr { font-size: var(--text-sm); color: var(--blue-mid); letter-spacing: 0.06em; }

/* ================================================================
   CHECK BULLETS
   Both icon variants share identical dimensions — standardized to 18px.
================================================================ */
.pd-checks { display: flex; flex-direction: column; gap: 14px; }
.pd-check { display: flex; align-items: flex-start; gap: 12px; }

.pd-check-icon {
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-check-icon-blue {
  width: 18px; height: 18px;
  border: 1px solid var(--blue);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-check-text { font-size: var(--text-base); color: var(--blue-mid); font-weight: 300; line-height: 1.5; }
.pd-check-text-dark { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.5; }

/* ================================================================
   HOW IT WORKS
================================================================ */
.pd-hiw-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border);
}
.pd-hiw-step { padding: 32px 28px; border-right: 1px solid var(--border); }
.pd-hiw-step:last-child { border-right: none; }
.pd-step-num {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-5xl);
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.pd-step-title { font-size: var(--text-base); color: var(--indigo); margin-bottom: 10px; font-weight: 400; }
.pd-step-body { font-size: 14px; line-height: 1.7; color: var(--text-muted); font-weight: 300; margin-bottom: var(--space-xs); }
.pd-hiw-cta { text-align: center; margin-top: var(--space-md); }

/* ================================================================
   BLOG GRID
================================================================ */
.pd-blog-section { padding: var(--space-lg) 0; }
.pd-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.pd-post-card {
  border: 1px solid var(--border);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s;
}
.pd-post-card:hover { border-color: var(--blue); color: inherit; }
.pd-post-tag { font-size: var(--text-2xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.pd-post-title { font-family: 'Playfair Display', serif; font-size: var(--text-xl); color: var(--indigo); line-height: 1.3; margin-bottom: 12px; }
.pd-post-excerpt { font-size: 14px; line-height: 1.7; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; }
.pd-post-meta { font-size: var(--text-xs); color: var(--text-light); letter-spacing: 0.05em; }

/* ================================================================
   SINGLE POST (ARTICLE)
================================================================ */
.pd-article-wrap { max-width: 760px; margin: 0 auto; padding: 64px 32px 80px; }
.pd-article-back { font-size: var(--text-sm); color: var(--blue); margin-bottom: 20px; display: inline-block; }
.pd-article-tag { font-size: var(--text-2xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.pd-article-title { font-family: 'Playfair Display', serif; font-size: 40px; line-height: 1.2; color: var(--indigo); margin-bottom: 20px; }
.pd-article-meta { font-size: 14px; color: var(--text-light); margin-bottom: 40px; }
.pd-article-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.pd-article-body { font-size: var(--text-lg); line-height: 1.8; color: var(--text-muted); font-weight: 300; }
.pd-article-body h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--indigo); margin: 40px 0 16px; }
.pd-article-body p { margin-bottom: 20px; }
.pd-article-body ul, .pd-article-body ol { padding-left: 24px; margin-bottom: 20px; line-height: 2; }
.pd-article-cta { background: var(--off-white); border: 1px solid var(--border); padding: 32px; margin-top: var(--space-md); }
.pd-article-cta-title { font-family: 'Playfair Display', serif; font-size: var(--text-xl); color: var(--indigo); margin-bottom: 12px; }
.pd-article-cta-body { font-size: var(--text-base); line-height: 1.75; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; }

/* ================================================================
   PAGE HERO (pricing, faq, etc.)
================================================================ */
.pd-page-hero { background: var(--indigo); padding: 64px 0 56px; }
.pd-page-hero-eyebrow { font-size: var(--text-2xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 16px; }
.pd-page-hero-h1 { font-family: 'Playfair Display', serif; font-size: 46px; line-height: 1.2; color: #fff; margin-bottom: 18px; }
.pd-page-hero-h1 em { color: var(--gold); }
.pd-page-hero-p { font-size: var(--text-lg); line-height: 1.75; color: var(--blue-mid); font-weight: 300; max-width: 560px; }

/* ================================================================
   PRICING
================================================================ */
.pd-pricing-wrapper { width: 100%; }
.pd-pricing-wrapper .pd-pricing-card { width: 100%; }
.pd-pricing-wrapper .pd-price-note { width: 100%; }

.pd-pricing-card { background: var(--indigo); padding: 48px; width: 100%; box-sizing: border-box; }
.pd-price-label { font-size: var(--text-2xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.pd-price-name { font-family: 'Playfair Display', serif; font-size: var(--text-2xl); color: #fff; margin-bottom: 16px; }
.pd-price-amount { font-family: 'Playfair Display', serif; font-size: 72px; color: var(--gold); line-height: 1; }
.pd-price-desc { font-size: var(--text-md); color: var(--blue-mid); }
.pd-price-sub { font-size: 14px; color: var(--gold); margin-top: 4px; }
.pd-price-divider { height: 1px; background: #1a1a6a; margin: 28px 0; }
.pd-price-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; margin-bottom: 36px; }
.pd-price-note {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 20px 28px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 0;
}

/* ================================================================
   ADD-ON CARDS
================================================================ */
.pd-addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; }
.pd-addon-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.pd-addon-title { font-size: var(--text-base); color: var(--indigo); margin-bottom: 4px; }
.pd-addon-desc { font-size: var(--text-sm); color: var(--text-muted); font-weight: 300; line-height: 1.5; }
.pd-addon-price { font-family: 'Playfair Display', serif; font-size: var(--text-xl); color: var(--blue); white-space: nowrap; flex-shrink: 0; }

/* ================================================================
   FAQ
================================================================ */
.pd-faq-layout { min-height: 600px; }
.pd-faq-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-md);
  min-height: 600px;
}
.pd-faq-nav {
  padding: 48px 0;
  border-right: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  align-self: start;
}
.pd-faq-nav-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.pd-faq-nav a { display: block; font-size: var(--text-sm); color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.pd-faq-nav a:hover { color: var(--blue); }
.pd-faq-body { padding: 48px 0; }
.pd-faq-group { margin-bottom: 56px; }
.pd-faq-group-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--indigo);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}
.pd-faq-item { margin-bottom: 32px; }
.pd-faq-q { font-size: var(--text-md); color: var(--indigo); margin-bottom: 10px; line-height: 1.4; }
.pd-faq-a { font-size: var(--text-base); line-height: 1.8; color: var(--text-muted); font-weight: 300; }

/* ================================================================
   FOOTER
================================================================ */
.pd-footer { background: #fff; padding: 40px 0; border-top: 1px solid var(--border); }
.pd-footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.pd-footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.pd-footer-tagline { font-size: var(--text-sm); color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.pd-footer-label { font-size: var(--text-2xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.pd-footer-contact { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.9; }
.pd-footer-contact a { color: var(--text-muted); text-decoration: none; }
.pd-footer-contact a.pd-book { color: var(--blue); }
.pd-copyright { background: #fff; padding: 14px 0; border-top: 1px solid var(--border); text-align: center; font-size: var(--text-xs); color: var(--text-light); }

/* ================================================================
   CTA BAND
================================================================ */
.pd-cta-band { background: var(--indigo); padding: 56px 0; }
.pd-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.pd-cta-band-title { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 8px; }
.pd-cta-band-sub { font-size: var(--text-base); color: var(--blue-mid); font-weight: 300; }

/* ================================================================
   GHOST EDITOR CLASSES (required by Ghost)
================================================================ */
.kg-width-wide { margin-left: -8vw; margin-right: -8vw; width: calc(100% + 16vw); max-width: calc(100% + 16vw); }
.kg-width-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; max-width: 100vw; }
.kg-image-card img { width: 100%; height: auto; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 8px; margin-bottom: 8px; }
.kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { border: 1px solid var(--border); padding: 20px; display: flex; gap: 20px; }
.kg-bookmark-title { font-size: var(--text-base); color: var(--indigo); margin-bottom: 6px; }
.kg-bookmark-description { font-size: var(--text-sm); color: var(--text-muted); font-weight: 300; }
.kg-video-card video { width: 100%; }
.kg-callout-card { background: var(--off-white); border-left: 4px solid var(--blue); padding: 20px 24px; margin: 24px 0; }
.kg-toggle-card .kg-toggle-heading { cursor: pointer; font-size: var(--text-md); color: var(--indigo); }
.kg-button-card { text-align: center; margin: 24px 0; }
.kg-button-card a { display: inline-block; background: var(--blue); color: #fff; padding: 12px 28px; font-family: 'Source Serif 4', serif; font-size: var(--text-base); text-decoration: none; }

/* Ghost pagination (hidden — single-page blog) */
.pd-pagination .pagination { display: none; }

/* ================================================================
   RESPONSIVE — 1024px (tablet landscape)
================================================================ */
@media (max-width: 1024px) {
  .pd-nav-inner { padding: 0 24px; }
  .pd-hero-inner { grid-template-columns: 1fr; }
  .pd-hero-left { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .pd-hero-right { padding: 32px 24px; }
  .pd-hiw-grid { grid-template-columns: repeat(2,1fr); }
  .pd-hiw-step:nth-child(2) { border-right: none; }
  .pd-hiw-step:nth-child(1),
  .pd-hiw-step:nth-child(2) { border-bottom: 1px solid var(--border); }
  .pd-faq-nav { display: none; }
  .pd-faq-layout { grid-template-columns: 1fr; }
  .pd-faq-body { padding: 40px 24px; }
  .pd-cta-inner { flex-direction: column; align-items: flex-start; }
  .pd-pricing-card { padding: 32px 24px; }
}

/* ================================================================
   RESPONSIVE — 768px (mobile)
   All mobile rules in ONE block for maintainability.
================================================================ */
@media (max-width: 768px) {

  /* Layout */
  .pd-page-column { max-width: 100%; box-shadow: none; }
  .pd-container { padding: 0 var(--container-pad-mob); }
  body { background: #fff; }

  /* Nav */
  .pd-nav-links { display: none; }
  .pd-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .pd-hamburger { display: block; }
  .pd-nav-cta { display: none; }

  /* Hero */
  .pd-hero-inner { grid-template-columns: 1fr; }
  .pd-hero-left { padding: 40px var(--container-pad-mob); border-right: none; border-bottom: none; }
  .pd-hero-right { display: none; }
  .pd-hero-h1 { font-size: 32px; }

  /* Sections — consistent padding on all sides on mobile */
  .pd-section        { padding: 48px var(--container-pad-mob); }
  .pd-section-sm     { padding: 48px var(--container-pad-mob); }
  .pd-section-indigo { padding: 48px var(--container-pad-mob); }
  .pd-hiw-section    { padding: 48px var(--container-pad-mob); }
  .pd-blog-section   { padding: 48px var(--container-pad-mob); }

  /* Grids */
  .pd-3col { grid-template-columns: 1fr; }
  .pd-2col { grid-template-columns: 1fr; gap: 32px; }
  .pd-hiw-grid { grid-template-columns: 1fr; }
  .pd-hiw-step { border-right: none !important; border-bottom: 1px solid var(--border); }
  .pd-blog-grid { grid-template-columns: 1fr; }
  .pd-addon-grid { grid-template-columns: 1fr; }
  .pd-price-checks { grid-template-columns: 1fr; }
  .pd-footer-inner { grid-template-columns: 1fr; }

  /* Typography */
  .pd-page-hero { padding: 48px var(--container-pad-mob) 40px; }
  .pd-page-hero-h1 { font-size: 34px; }
  .pd-article-wrap { padding: 40px 16px 60px; }
  .pd-article-title { font-size: 30px; }

  /* Caption bar */
  .pd-sep-caption-bar { padding: 12px var(--container-pad-mob); }

  /* FAQ */
  .pd-faq-container { grid-template-columns: 1fr; }
  .pd-faq-nav { display: none; }
  .pd-faq-body { padding: 40px var(--container-pad-mob); }

  /* Pricing — full bleed on mobile.
     width: calc(100% + 40px) is required alongside negative margins.
     Without it, the element width stays at content-width and only
     the left edge extends, leaving a gap on the right. */
  .pd-pricing-wrapper {
    margin: 0 calc(-1 * var(--container-pad-mob));
    width: calc(100% + 40px);
  }
  .pd-price-note {
    margin: 0 calc(-1 * var(--container-pad-mob));
    width: calc(100% + 40px);
  }
}

/* ── FAQ anchor offset for sticky nav ──────────────────────────── */
.pd-faq-group { scroll-margin-top: calc(var(--nav-height) + 24px); }

/* ── HOW IT WORKS — FULL PAGE STEPS ────────────────────────────── */
.pd-hiw-full-step { display: grid; grid-template-columns: 80px 1fr; gap: 0 40px; padding: 48px 0; }
.pd-hiw-full-num { font-family: "Playfair Display", serif; font-size: 64px; color: var(--blue-mid); line-height: 1; padding-top: 4px; }
.pd-hiw-full-title { font-family: "Playfair Display", serif; font-size: 26px; color: var(--indigo); margin-bottom: 16px; }
.pd-hiw-full-text { font-size: 16px; line-height: 1.8; color: var(--text-muted); font-weight: 300; margin-bottom: 24px; max-width: 680px; }
.pd-hiw-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; }
.pd-hiw-divider { height: 1px; background: var(--border); width: 100%; }
.pd-hiw-callout { background: var(--off-white); border-left: 3px solid var(--blue); padding: 20px 24px; margin-bottom: 4px; max-width: 680px; }
.pd-hiw-callout-title { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.pd-hiw-callout-text { font-size: 14px; line-height: 1.75; color: var(--text-muted); font-weight: 300; }
@media (max-width: 768px) {
  .pd-hiw-full-step { grid-template-columns: 1fr; gap: 8px; padding: 36px 0; }
  .pd-hiw-full-num { font-size: 48px; }
  .pd-hiw-detail-grid { grid-template-columns: 1fr; }
  .pd-hiw-callout { max-width: 100%; }
  .pd-hiw-full-text { max-width: 100%; }
}
