/* ============================================================
   SpikeCrest Child Theme — theme.css
   Brand: Navy #1B3A6B | Teal #2EC4B6 | Orange #F4A261
   Font: Inter (400 500 600 700 800)
============================================================ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --brand-primary:   #1B3A6B;
  --brand-secondary: #2EC4B6;
  --brand-accent:    #F4A261;
  --text-dark:       #1a1a2e;
  --text-body:       #374151;
  --text-muted:      #6b7280;
  --bg-light:        #f9fafb;
  --bg-white:        #ffffff;
  --border:          #e5e7eb;
  --radius:          8px;
  --shadow:          0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-lg:       0 10px 25px rgba(0,0,0,.1);
  --max-width:       1120px;
  --font-heading:    'Inter', system-ui, -apple-system, sans-serif;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--bg-white); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--brand-accent); color: var(--text-dark); border-color: var(--brand-accent); }
.btn-primary:hover { background: #e8913f; border-color: #e8913f; text-decoration: none; }
.btn-outline { background: transparent; color: var(--bg-white); border-color: var(--bg-white); }
.btn-outline:hover { background: var(--bg-white); color: var(--brand-primary); text-decoration: none; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; text-decoration: none; }

/* ── Site Header ─────────────────────────────────────────────── */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.logo span { color: var(--brand-secondary); }
.logo:hover { text-decoration: none; }

/* ── Desktop Nav ─────────────────────────────────────────────── */
.primary-nav { display: flex; flex: 1; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-link:hover,
.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link { color: var(--brand-primary); background: var(--bg-light); text-decoration: none; }
.nav-caret { font-size: 0.5rem; color: var(--text-muted); transition: transform .2s; line-height: 1; }
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

/* ── Dropdown ────────────────────────────────────────────────── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 300;
  list-style: none;
  margin: 0;
}
.dropdown--wide { min-width: 240px; columns: 2; column-gap: 0; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 0.86rem;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
  break-inside: avoid;
  transition: color .13s, background .13s;
}
.dropdown a:hover { color: var(--brand-primary); background: var(--bg-light); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; break-inside: avoid; }
.dropdown-header {
  display: block;
  padding: 6px 16px 2px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  break-inside: avoid;
}

/* ── Nav Actions & Hamburger ─────────────────────────────────── */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta { font-size: 0.875rem !important; padding: 10px 18px !important; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s;
}
.hamburger:hover { background: var(--bg-light); }
.hamburger span { display: block; height: 2px; background: var(--text-dark); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Overlay & Drawer ─────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 290;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--bg-white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 32px rgba(0,0,0,.14);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 72px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mobile-close {
  background: none; border: 1px solid var(--border);
  font-size: 1.1rem; color: var(--text-muted);
  cursor: pointer; padding: 6px 10px; border-radius: var(--radius);
  line-height: 1; transition: color .15s, background .15s;
}
.mobile-close:hover { color: var(--text-dark); background: var(--bg-light); }
.mobile-nav-list { flex: 1; list-style: none; margin: 0; padding: 8px 0; overflow-y: auto; }
.mobile-item { border-bottom: 1px solid var(--border); }
.mobile-item:last-child { border-bottom: none; }
.mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 20px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-dark); text-decoration: none;
  background: transparent; border: none; cursor: pointer; text-align: left;
  transition: background .15s; line-height: 1.4;
}
.mobile-link:hover { background: var(--bg-light); }
.mobile-caret { font-size: 0.5rem; color: var(--text-muted); transition: transform .2s; flex-shrink: 0; }
.mobile-toggle[aria-expanded="true"] .mobile-caret { transform: rotate(180deg); }
.mobile-toggle[aria-expanded="true"] { background: var(--bg-light); color: var(--brand-primary); }
.mobile-sub {
  list-style: none; margin: 0; padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.mobile-sub.is-open { max-height: 600px; }
.mobile-sub li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px 10px 28px;
  font-size: 0.875rem; color: var(--text-body); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .13s, background .13s;
}
.mobile-sub li:last-child a { border-bottom: none; }
.mobile-sub li a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brand-secondary); flex-shrink: 0; }
.mobile-sub li a:hover { color: var(--brand-primary); background: rgba(46,196,182,.07); }
.mobile-sub .mobile-sub-hub a { font-weight: 600; color: var(--brand-primary); }
.mobile-sub .mobile-sub-hub a::before { background: var(--brand-primary); }
.mobile-menu-footer { padding: 16px 20px; border-top: 1px solid var(--border); flex-shrink: 0; }
.mobile-menu-footer .btn { display: block; text-align: center; width: 100%; }

/* ── Responsive nav breakpoints ─────────────────────────────── */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-overlay { display: none !important; }
}

/* ── Shared Section Styles ───────────────────────────────────── */
section { padding: 80px 0; }
.section-label {
  font-size: 0.875rem; font-weight: 600;
  color: var(--brand-secondary);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.section-heading { margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 48px; }

/* ── Homepage Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0f2444 100%);
  color: var(--bg-white);
  padding: 80px 0 100px;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-block;
  background: rgba(46,196,182,.15);
  color: var(--brand-secondary);
  border: 1px solid rgba(46,196,182,.3);
  border-radius: 100px;
  padding: 6px 16px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { color: var(--bg-white); margin-bottom: 20px; }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,.85); margin-bottom: 32px; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.15); list-style: none; padding-left: 0; }
.hero-stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--brand-secondary); }
.hero-stat-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,.7); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-placeholder {
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 0.9rem;
}
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image-placeholder { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ── Page Hero (service / standard pages) ────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0f2444 100%);
  color: var(--bg-white);
  padding: 56px 0 64px;
}
.page-hero h1 { color: var(--bg-white); margin-bottom: 16px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.page-hero p.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 680px; margin-bottom: 32px; }
.page-hero .hero-ctas { margin-top: 8px; }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb { margin-bottom: 20px; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb ol li { font-size: 0.85rem; color: rgba(255,255,255,.6); }
.breadcrumb ol li + li::before { content: '›'; margin-right: 4px; }
.breadcrumb ol li a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb ol li a:hover { color: var(--bg-white); }
.breadcrumb ol li[aria-current="page"] { color: rgba(255,255,255,.9); }
/* RankMath breadcrumb output override */
.rank-math-breadcrumb { margin-bottom: 20px; }
.rank-math-breadcrumb p { font-size: 0.85rem; color: rgba(255,255,255,.6); margin: 0; }
.rank-math-breadcrumb p a { color: rgba(255,255,255,.7); text-decoration: none; }
.rank-math-breadcrumb p a:hover { color: var(--bg-white); }
.rank-math-breadcrumb p .separator { margin: 0 4px; }

/* ── Services Grid ───────────────────────────────────────────── */
.services-section { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; list-style: none; padding-left: 0; }
.services-grid > li { display: contents; }
.service-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: box-shadow .2s; }
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.service-link { font-size: 0.9rem; font-weight: 600; color: var(--brand-primary); }

/* ── Why Us ──────────────────────────────────────────────────── */
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; margin-top: 48px; list-style: none; padding-left: 0; }
.why-us-grid > li { display: block; }
.why-item { padding: 8px 0; }
.why-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--brand-secondary); }
.why-label { font-weight: 700; font-size: 1.1rem; color: var(--text-dark); margin: 4px 0; }
.why-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials { background: var(--brand-primary); color: var(--bg-white); }
.testimonials .section-heading { color: var(--bg-white); }
.testimonials .section-sub { color: rgba(255,255,255,.75); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; list-style: none; padding-left: 0; }
.testimonials-grid > li { display: contents; }
.testimonial-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 28px; margin: 0; }
.testimonial-stars { color: var(--brand-accent); font-size: 1.25rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,.85); margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--brand-secondary); }
blockquote.testimonial-card { quotes: none; }
blockquote.testimonial-card footer { background: none; padding: 0; border: none; }

/* ── Industries Grid ─────────────────────────────────────────── */
.industries-section { background: var(--bg-light); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 40px; list-style: none; padding-left: 0; }
.industries-grid > li { display: contents; }
.industry-tag { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 20px; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); text-align: center; transition: all .2s; }
.industry-tag:hover { border-color: var(--brand-secondary); color: var(--brand-primary); text-decoration: none; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q { font-weight: 600; font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.faq-a { font-size: 0.95rem; color: var(--text-body); }
.faq-list dt, .faq-list dd { margin-left: 0; }

/* ── CTA Strip ───────────────────────────────────────────────── */
.cta-strip { background: var(--brand-secondary); padding: 72px 0; text-align: center; }
.cta-strip h2 { color: var(--bg-white); margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 32px; }
.cta-strip .btn-primary { background: var(--bg-white); color: var(--brand-primary); border-color: var(--bg-white); }

/* ── Trust Bar (service / industry pages) ────────────────────── */
.trust-bar { background: var(--brand-primary); border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.trust-bar__list { list-style: none; padding: 0; margin: 0; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; align-items: center; }
.trust-bar__list li { text-align: center; }
.trust-bar__stat { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; }
.trust-bar__label { font-size: 0.75rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; display: block; }

/* ── Service / Industry Page Layout ─────────────────────────── */
.sp-layout { padding: 64px 0 80px; }
.sp-layout__grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
@media (max-width: 960px) { .sp-layout__grid { grid-template-columns: 1fr; } }

/* ── Entry Content Typography ────────────────────────────────── */
.entry-content { font-size: 1rem; line-height: 1.8; color: var(--text-body); }

.entry-content h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--brand-primary);
  margin-top: 48px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--bg-light);
}
.entry-content h2:first-child { margin-top: 0; }

.entry-content h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--text-dark);
  margin-top: 28px; margin-bottom: 10px;
}

.entry-content p { margin-bottom: 16px; line-height: 1.8; }

.entry-content ul { list-style: none; padding: 0; margin: 0 0 20px; }
.entry-content ul li {
  position: relative; padding-left: 24px;
  margin-bottom: 10px; line-height: 1.7; color: var(--text-body);
}
.entry-content ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--brand-secondary); font-weight: 700; font-size: .9rem;
}

.entry-content ol { list-style: none; padding: 0; margin: 0 0 20px; counter-reset: ec-ol; }
.entry-content ol li {
  position: relative; padding-left: 36px;
  margin-bottom: 10px; line-height: 1.7; color: var(--text-body);
  counter-increment: ec-ol;
}
.entry-content ol li::before {
  content: counter(ec-ol); position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-primary); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.entry-content hr { border: none; border-top: 2px solid var(--bg-light); margin: 40px 0; }

.entry-content strong { font-weight: 700; color: var(--text-dark); }

.entry-content a { color: var(--brand-secondary); text-decoration: underline; }
.entry-content a:hover { color: var(--brand-primary); }

.entry-content blockquote {
  position: relative; border-left: 4px solid var(--brand-secondary);
  padding: 20px 24px 20px 56px; background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0;
  font-style: italic; color: var(--text-muted);
}
.entry-content blockquote::before {
  content: '\201C'; font-family: Georgia, serif; font-size: 3.5rem; line-height: 1;
  color: var(--brand-secondary); opacity: .25; position: absolute; top: 8px; left: 14px;
}
.entry-content blockquote p:last-child em { font-style: normal; font-size: .85rem; font-weight: 600; color: var(--brand-primary); }

.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.9rem; overflow-x: auto; display: block; }
.entry-content table th { background: var(--brand-primary); color: var(--bg-white); padding: 10px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
.entry-content table td { padding: 10px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.entry-content table tr:nth-child(even) td { background: var(--bg-light); }

.entry-content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* Bold-lead paragraphs — "Phase 1 —", "Month 1 —" etc. */
.entry-content p > strong:first-child {
  display: block; padding: 6px 14px; margin-bottom: .5rem;
  background: var(--bg-light); border-left: 3px solid var(--brand-secondary);
  border-radius: 0 4px 4px 0; color: var(--brand-primary); font-size: .9rem;
}
/* Stats list items that open with a bold stat — keep inline */
.entry-content ul li > strong:first-child { color: var(--brand-secondary); font-size: 1.05rem; display: inline; background: none; border: none; padding: 0; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.sp-layout__sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }

.sp-sidebar-card {
  background: var(--bg-light); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 22px;
}
.sp-sidebar-card__label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--brand-secondary);
  margin-bottom: 14px;
}

/* Stats inside sidebar */
.sp-sidebar-stats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.sp-sidebar-stats li {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.sp-sidebar-stats li:last-child { border-bottom: none; padding-bottom: 0; }
.sp-sidebar-stats li strong { font-size: 1.5rem; font-weight: 800; color: var(--brand-primary); flex-shrink: 0; line-height: 1; }
.sp-sidebar-stats li span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }

/* Checklist inside sidebar */
.sp-sidebar-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.sp-sidebar-checklist li {
  font-size: 0.875rem; color: var(--text-body);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.sp-sidebar-checklist li::before { content: '✓'; color: var(--brand-secondary); font-weight: 700; flex-shrink: 0; font-size: .85rem; }

/* Sidebar CTA card */
.sp-sidebar-cta {
  background: var(--brand-primary); border-radius: var(--radius); padding: 24px;
}
.sp-sidebar-cta__eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.sp-sidebar-cta__heading { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sp-sidebar-cta__body { font-size: 0.875rem; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 18px; }
.sp-sidebar-cta__btn { display: block; text-align: center; margin-bottom: 10px; font-size: 0.875rem; padding: 11px 20px; }
.sp-sidebar-cta__btn:last-child { margin-bottom: 0; }

/* Service / industry links in sidebar */
.sp-sidebar-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.sp-sidebar-service-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; background: #fff;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.85rem; color: var(--text-dark);
  text-decoration: none; transition: all .18s;
}
.sp-sidebar-service-link:hover {
  background: var(--brand-primary); color: #fff;
  border-color: var(--brand-primary); text-decoration: none;
}
.sp-sidebar-service-link__icon { font-size: 1rem; flex-shrink: 0; }
.sp-sidebar-service-link__arrow { margin-left: auto; color: var(--text-muted); font-size: .8rem; transition: color .18s; }
.sp-sidebar-service-link:hover .sp-sidebar-service-link__arrow { color: rgba(255,255,255,.7); }

/* Page Content fallback (non-service pages using old .page-content) */
.page-content { padding: 64px 0; }
.page-content .container { max-width: 860px; }

/* ── Services Hub Content ────────────────────────────────────── */
.hub-intro { padding: 48px 0 0; }
.hub-intro .section-sub { max-width: 720px; }
.hub-grid-section { background: var(--bg-light); }

/* ── Article / Blog ──────────────────────────────────────────── */
.article-hero { background: var(--brand-primary); color: var(--bg-white); padding: 48px 0 56px; }
.article-hero h1 { color: var(--bg-white); font-size: clamp(1.75rem, 3vw, 2.5rem); max-width: 820px; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px; }
.article-meta span { font-size: 0.85rem; color: rgba(255,255,255,.65); }
.article-body { padding: 56px 0; }
.article-body .container { max-width: 780px; }
.article-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body ul li, .article-body ol li { margin-bottom: 0.5rem; }
.article-body blockquote { border-left: 4px solid var(--brand-secondary); padding: 16px 20px; background: var(--bg-light); border-radius: 0 var(--radius) var(--radius) 0; margin: 2rem 0; font-style: italic; }
.article-body p { font-size: 1.05rem; line-height: 1.75; }
.author-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: 12px; padding: 28px; margin-top: 48px; display: flex; gap: 24px; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.author-bio { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
.toc { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 40px; }
.toc h3 { font-size: 0.95rem; margin-bottom: 12px; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.toc ol li { margin-bottom: 6px; font-size: 0.875rem; }
.toc ol li a { color: var(--brand-primary); }

/* ── Blog Archive ────────────────────────────────────────────── */
.archive-hero { background: var(--brand-primary); color: var(--bg-white); padding: 48px 0; }
.archive-hero h1 { color: var(--bg-white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; padding: 56px 0; }
.blog-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-light); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category { font-size: 0.78rem; font-weight: 700; color: var(--brand-secondary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card h2 a { color: var(--text-dark); }
.blog-card h2 a:hover { color: var(--brand-primary); text-decoration: none; }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.8rem; color: var(--text-muted); }
.pagination { display: flex; justify-content: center; gap: 8px; padding: 32px 0; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; color: var(--text-body); text-decoration: none; }
.pagination .current { background: var(--brand-primary); color: var(--bg-white); border-color: var(--brand-primary); }
.pagination a:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

/* ── 404 Page ────────────────────────────────────────────────── */
.error-404 { padding: 120px 0; text-align: center; }
.error-404 .error-code { font-size: 8rem; font-weight: 800; color: var(--brand-primary); opacity: .12; line-height: 1; display: block; }
.error-404 h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.error-404 p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }

/* ── Contact Page ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 64px 0; }
.contact-info h2 { margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-item .icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 4px; }
.contact-info-item strong { display: block; font-size: 0.875rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 1rem; color: var(--text-dark); margin: 0; }
.contact-form-wrap { background: var(--bg-light); border: 1px solid var(--border); border-radius: 12px; padding: 36px; }
.contact-form-wrap h2 { margin-bottom: 24px; font-size: 1.35rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; font-size: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: var(--bg-white); font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: var(--bg-white); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.8rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Misc Process Steps ──────────────────────────────────────── */
.process-steps { list-style: none; padding-left: 0; counter-reset: step; }
.process-steps > li { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); counter-increment: step; }
.process-steps > li:last-child { border-bottom: none; }
.step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-primary); color: var(--bg-white); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
.step-body h3 { margin-bottom: 6px; }
.step-body p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* ── Signs Grid ──────────────────────────────────────────────── */
.signs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; list-style: none; padding-left: 0; }
.sign-item { background: var(--bg-light); border-radius: var(--radius); padding: 20px; border-left: 4px solid var(--brand-secondary); }
.sign-item h3 { font-size: 1rem; margin-bottom: 6px; }
.sign-item p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ── Image Placeholders (remove on go-live) ──────────────────── */
.img-placeholder { margin: 32px 0; }
.img-placeholder-inner { background: #f0f4f8; border: 2px dashed #94a3b8; border-radius: var(--radius); padding: 28px 20px; text-align: center; font-size: 0.8rem; color: #475569; font-family: monospace; line-height: 1.6; }

/* ── Gravity Forms brand overrides ───────────────────────────── */
.gform_wrapper .gform_body input[type="text"],
.gform_wrapper .gform_body input[type="email"],
.gform_wrapper .gform_body input[type="tel"],
.gform_wrapper .gform_body textarea,
.gform_wrapper .gform_body select {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  padding: 10px 14px !important;
}
.gform_wrapper .gform_body input:focus,
.gform_wrapper .gform_body textarea:focus {
  border-color: var(--brand-secondary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(46,196,182,.15) !important;
}
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_footer button[type="submit"] {
  background: var(--brand-accent) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 14px 28px !important;
  color: var(--text-dark) !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer button[type="submit"]:hover { background: #e8913f !important; }

/* ══════════════════════════════════════════════════════════
   SERVICE / INDUSTRY PAGE — svc-* components
══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.svc-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0f2444 100%);
  padding: 56px 0 64px;
  color: #fff;
}
.svc-hero h1 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.svc-hero__sub { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 680px; margin-bottom: 28px; }
.svc-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.svc-hero__stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15);
  list-style: none; padding-left: 0;
}
.svc-hero__stats li { text-align: center; }
.svc-hero__stats strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--brand-secondary); line-height: 1; margin-bottom: 4px; }
.svc-hero__stats span { font-size: 0.75rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 600px) { .svc-hero__stats { gap: 20px; } }

/* ── Page body wrapper ───────────────────────────────────── */
.svc-body { padding: 64px 0 80px; background: var(--bg-light); }
.svc-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: 1fr; } }

/* ── Main content card ───────────────────────────────────── */
.svc-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 48px;
  font-size: 1rem; line-height: 1.8; color: var(--text-body);
}
.svc-content h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--brand-primary);
  margin-top: 48px; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 2px solid var(--bg-light);
}
.svc-content h2:first-child { margin-top: 0; }
.svc-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-top: 28px; margin-bottom: 10px; }
.svc-content h3:first-child { margin-top: 0; }
.svc-content p { margin-bottom: 16px; }
.svc-content p:last-child { margin-bottom: 0; }
.svc-content ul { list-style: none; padding: 0; margin: 0 0 20px; }
.svc-content ul li { position: relative; padding-left: 24px; margin-bottom: 10px; line-height: 1.7; }
.svc-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-secondary); font-weight: 700; }
.svc-content ol { list-style: decimal; padding-left: 22px; margin: 0 0 20px; }
.svc-content ol li { margin-bottom: 10px; line-height: 1.7; padding-left: 4px; }
.svc-content strong { font-weight: 700; color: var(--text-dark); }
.svc-content a { color: var(--brand-secondary); text-decoration: underline; }
.svc-content a:hover { color: var(--brand-primary); }
.svc-content blockquote {
  border-left: 4px solid var(--brand-secondary); padding: 16px 20px;
  background: var(--bg-light); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0; font-style: italic; color: var(--text-muted);
}
.svc-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.9rem; }
.svc-content table th { background: var(--brand-primary); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
.svc-content table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.svc-content table tr:nth-child(even) td { background: var(--bg-light); }
.svc-content hr { border: none; border-top: 2px solid var(--bg-light); margin: 40px 0; }
@media (max-width: 680px) { .svc-content { padding: 24px 20px; } }

/* ── Sidebar ─────────────────────────────────────────────── */
.svc-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }

/* Dark CTA card */
.svc-cta-card { background: var(--brand-primary); border-radius: 12px; padding: 26px; }
.svc-cta-card__eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: rgba(255,255,255,.5); margin-bottom: 6px;
}
.svc-cta-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.4; }
.svc-cta-card p { font-size: 0.875rem; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 18px; }
.svc-cta-card .btn {
  display: block; text-align: center; margin-bottom: 10px;
  font-size: 0.875rem !important; padding: 11px 20px !important;
}
.svc-cta-card .btn:last-child { margin-bottom: 0; }

/* White info cards */
.svc-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
.svc-card__label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--brand-secondary); margin-bottom: 14px;
}

/* Checklist */
.svc-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.svc-checklist li { font-size: 0.875rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.svc-checklist li::before { content: '✓'; color: var(--brand-secondary); font-weight: 700; flex-shrink: 0; font-size: .85rem; margin-top: 1px; }

/* Stats list */
.svc-stats-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.svc-stats-list li { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.svc-stats-list li:last-child { border-bottom: none; padding-bottom: 0; }
.svc-stats-list strong { font-size: 1.5rem; font-weight: 800; color: var(--brand-primary); flex-shrink: 0; line-height: 1; }
.svc-stats-list span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.35; }

/* Related links list */
.svc-link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.svc-link-list a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.85rem; color: var(--text-dark); text-decoration: none;
  transition: background .16s, color .16s, border-color .16s;
}
.svc-link-list a:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); text-decoration: none; }
.svc-link-list__icon { font-size: 1rem; flex-shrink: 0; }
.svc-link-list__arrow { margin-left: auto; color: var(--text-muted); font-size: .8rem; flex-shrink: 0; transition: color .16s; }
.svc-link-list a:hover .svc-link-list__arrow { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════
   PG-CARD DESIGN SYSTEM — Service & Industry Pages
   Tokens live on each .pg-card so mobile override is scoped
══════════════════════════════════════════════════════════ */

/* ── PG Hero Split ───────────────────────────────────────── */
.pg-hero-split {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0f2444 100%);
  color: #fff;
  padding: 56px 0 64px;
}
.pg-hero-split__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  margin-top: 20px;
}
.pg-hero-split__left h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}
.pg-hero-split__left p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 28px;
}
.pg-hero-split__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Booking card (hero right panel) ─────────────────────── */
.pg-book-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 28px 24px;
}
.pg-book-card__eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 6px;
}
.pg-book-card__heading { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pg-book-card__body { font-size: 0.875rem; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 18px; }
.pg-book-card__btn { display: block; text-align: center; margin-bottom: 10px; font-size: 0.875rem !important; padding: 11px 20px !important; }
.pg-book-card__btn:last-child { margin-bottom: 0; }

/* ── Credentials bar ─────────────────────────────────────── */
.pg-creds-bar {
  background: var(--brand-primary);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.pg-creds-bar__scroll {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: center;
  padding-bottom: 2px;
}
.pg-creds-bar__scroll::-webkit-scrollbar { display: none; }
.pg-creds-pill {
  flex-shrink: 0;
  white-space: nowrap;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Cards wrapper ───────────────────────────────────────── */
.pg-cards-wrap { padding: 48px 0; background: var(--bg-light); }

/* ── Base card ───────────────────────────────────────────── */
.pg-card {
  --pg-px: 32px;
  --pg-py: 36px;
  --pg-r: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--pg-r);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  padding: var(--pg-py) var(--pg-px);
  margin-bottom: 24px;
}
.pg-card:last-child { margin-bottom: 0; }
.pg-card__header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pg-card__header h2 { font-size: 1.4rem; font-weight: 800; color: var(--brand-primary); margin: 0; }
.pg-card__intro { margin-bottom: 20px; }

/* ── Eyebrow label ───────────────────────────────────────── */
.pg-eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--brand-secondary); margin-bottom: 6px;
}

/* ── pg-card body typography ─────────────────────────────── */
.pg-card__body { font-size: 1rem; line-height: 1.8; color: var(--text-body); }
.pg-card__body h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
  margin-top: 24px; margin-bottom: 10px;
}
.pg-card__body h3:first-child { margin-top: 0; }
.pg-card__body p { margin-bottom: 16px; }
.pg-card__body p:last-child { margin-bottom: 0; }
.pg-card__body ul { list-style: none; padding: 0; margin: 0 0 16px; }
.pg-card__body ul li { position: relative; padding-left: 24px; margin-bottom: 9px; line-height: 1.7; }
.pg-card__body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-secondary); font-weight: 700; font-size: .9rem; }
.pg-card__body ol { list-style: none; padding: 0; margin: 0 0 16px; counter-reset: pg-ol; }
.pg-card__body ol li { position: relative; padding-left: 36px; margin-bottom: 9px; line-height: 1.7; counter-increment: pg-ol; }
.pg-card__body ol li::before {
  content: counter(pg-ol); position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-primary); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pg-card__body strong { font-weight: 700; color: var(--text-dark); }
.pg-card__body a { color: var(--brand-secondary); text-decoration: underline; }

/* ── Sub-cards (2-col accent-border feature grid) ────────── */
.pg-subcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.pg-subcard {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-secondary);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
}
.pg-subcard h3, .pg-subcard h4 { font-size: 0.95rem; font-weight: 700; color: var(--brand-primary); margin-bottom: 7px; margin-top: 0; }
.pg-subcard p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.pg-subcard ul { list-style: none; padding: 0; margin: 0; }
.pg-subcard ul li { font-size: 0.875rem; color: var(--text-muted); padding-left: 14px; position: relative; margin-bottom: 5px; }
.pg-subcard ul li::before { content: '›'; position: absolute; left: 0; color: var(--brand-secondary); font-weight: 700; }

/* ── FAQ Accordion ───────────────────────────────────────── */
.pg-faq { list-style: none; padding: 0; margin: 0; }
.pg-faq__item { border-bottom: 1px solid var(--border); }
.pg-faq__item:first-child { border-top: 1px solid var(--border); }
.pg-faq__preamble { padding: 16px 0; font-size: 1rem; line-height: 1.7; }
.pg-faq__btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 20px 0;
  background: none; border: none; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--text-dark);
  cursor: pointer; gap: 16px; line-height: 1.4;
  font-family: var(--font-body);
}
.pg-faq__btn:hover { color: var(--brand-primary); }
.pg-faq__icon {
  flex-shrink: 0; width: 26px; height: 26px;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; color: var(--text-muted);
  transition: transform .25s, background .2s, border-color .2s, color .2s;
}
.pg-faq__btn[aria-expanded="true"] .pg-faq__icon {
  background: var(--brand-primary); border-color: var(--brand-primary);
  color: #fff; transform: rotate(45deg);
}
.pg-faq__body { padding-bottom: 20px; font-size: 0.95rem; color: var(--text-body); line-height: 1.75; }
.pg-faq__body[hidden] { display: none; }
.pg-faq__body p { margin-bottom: 12px; }
.pg-faq__body p:last-child { margin-bottom: 0; }

/* ── Link cards grid (related services / industries) ─────── */
.pg-link-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.pg-link-card {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none; color: var(--text-dark);
  font-size: 0.875rem; font-weight: 500; line-height: 1.3;
  transition: transform .18s, box-shadow .18s, color .15s, border-color .15s;
}
.pg-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.09);
  color: var(--brand-primary); border-color: var(--brand-secondary);
  text-decoration: none;
}
.pg-link-card__icon { font-size: 1.2rem; flex-shrink: 0; }
.pg-link-card__arrow { margin-left: auto; color: var(--text-muted); font-size: .8rem; flex-shrink: 0; }

/* ── Responsive: pg-card system ──────────────────────────── */
@media (max-width: 1024px) {
  .pg-link-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .pg-hero-split__grid { grid-template-columns: 1fr; }
  .pg-link-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .pg-card { --pg-px: 18px; --pg-py: 22px; }
  .pg-subcards { grid-template-columns: 1fr; }
  .pg-hero-split { padding: 40px 0 48px; }
}
