/* =========================================================
   PRO ASSIST — Design System
   Palette: charcoal + signal green, built around the logo's
   "speed line" motif (a call coming in, answered instantly).
   ========================================================= */

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

:root{
  /* core palette, drawn from the mark */
  --charcoal-900: #263542;
  --charcoal-800: #2F3E4A;
  --charcoal-700: #3B4955;
  --charcoal-500: #67717A;
  --charcoal-300: #A4AAB0;

  --green-700: #008C4C;
  --green-600: #00A65A;
  --green-500: #18AE6A;
  --green-400: #3FBC83;
  --green-100: #E1F4EB;
  --green-highlight: #00A65A;

  --paper: #F5F6F2;
  --paper-dim: #ECEEE8;
  --paper-line: #DCDFD8;
  --white: #FFFFFF;

  --ink: #1D2124;
  --ink-soft: #565D62;
  --heading-color: #263542;

  --font-display: 'Sora', 'Arial', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --font-hand: 'Caveat', cursive;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-card: 0 1px 2px rgba(38,53,66,0.04), 0 8px 24px rgba(38,53,66,0.06);
  --shadow-pop: 0 6px 16px rgba(38,53,66,0.10), 0 20px 48px rgba(38,53,66,0.10);

  --max: 1180px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--heading-color);
  margin: 0 0 0.4em;
}
/* main headings — Poppins ExtraBold, responsive up to 56px */
h1{ font-size: clamp(2.25rem, 1.6rem + 2.5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 22px; }
h2{ font-size: clamp(1.85rem, 1.4rem + 1.8vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 22px; }
/* card headings — Poppins Bold, 22px */
h3{ font-size: clamp(1.15rem, 1rem + 0.5vw, 1.375rem); font-weight: 700; line-height: 1.25; letter-spacing: normal; }
h4{ font-size: 1rem; font-weight: 700; line-height: 1.3; letter-spacing: normal; }
/* body text — Poppins Regular, 17px, 1.7 line-height */
p{ margin: 0 0 1em; color: var(--ink-soft); font-weight: 400; font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem); line-height: 1.7; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}

/* ---------- speed-line motif ---------- */
.speedlines{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.speedlines svg{ position:absolute; }
.sl-stroke{
  stroke: var(--green-500);
  stroke-width: 2;
  fill: none;
  opacity: 0;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: slDraw 1.1s cubic-bezier(.2,.7,.3,1) forwards;
}
.sl-stroke.c{ stroke: var(--charcoal-700); }
@keyframes slDraw{
  to{ opacity: 0.55; stroke-dashoffset: 0; }
}
.sl-stroke:nth-child(1){ animation-delay: .05s; }
.sl-stroke:nth-child(2){ animation-delay: .16s; }
.sl-stroke:nth-child(3){ animation-delay: .27s; }
.sl-stroke:nth-child(4){ animation-delay: .38s; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--green-600); color: #fff; }
.btn-primary:hover{ background: var(--green-500); }
.btn-dark{ background: var(--charcoal-900); color: #fff; }
.btn-dark:hover{ background: var(--charcoal-700); }
.btn-ghost{ background: transparent; border-color: var(--charcoal-700); color: var(--charcoal-900); }
.btn-ghost:hover{ border-color: var(--green-600); color: var(--green-600); }
.btn-ghost-light{ background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-ghost-light:hover{ border-color: var(--green-400); color: var(--green-400); }
.btn-lg{ padding: 16px 30px; font-size: 1.02rem; }
.btn-block{ width: 100%; }

/* ---------- top nav ---------- */
.trust-bar{
  background: var(--charcoal-900);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
}
.trust-bar .wrap{
  display: flex; align-items: center; justify-content: center;
  gap: 22px; height: 34px;
}
.trust-bar a{ color: inherit; text-decoration: none; }
.trust-bar a:hover{ color: var(--green-400); }
.trust-bar .trust-sep{ color: rgba(255,255,255,0.3); }
.trust-bar .trust-badge{ color: var(--green-400); }
@media (max-width: 620px){
  .trust-bar .wrap{ gap: 12px; font-size: 0.74rem; }
}

.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,246,242,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-line);
}
.nav-row{
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand img{ height: 30px; width: auto; }
.brand-name{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--charcoal-900); }

.nav-main{ display: flex; align-items: center; gap: 2px; }
.nav-main > li{ position: relative; }
.nav-main > li > a, .nav-main .nav-drop > button{
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  font-size: 0.93rem; font-weight: 500;
  color: var(--charcoal-800);
  border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: color .15s ease;
}
.nav-main > li > a:hover, .nav-main .nav-drop > button:hover{ color: var(--green-600); }
.nav-drop{ position: relative; }
.nav-drop .caret{ font-size: 0.6rem; transition: transform .15s ease; }
.nav-drop:hover .caret{ transform: rotate(180deg); }
.nav-drop-panel{
  position: absolute; top: 100%; left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .15s ease;
}
.nav-drop:hover .nav-drop-panel, .nav-drop:focus-within .nav-drop-panel{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop-panel a{
  display: block; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--charcoal-800); font-weight: 500;
}
.nav-drop-panel a:hover{ background: var(--paper); color: var(--green-600); }
.nav-drop-panel a small{ display:block; font-weight: 400; color: var(--ink-soft); font-size: 0.8rem; margin-top: 2px; }

.nav-cta{ display: flex; align-items: center; gap: 18px; }
.nav-phone{ font-family: var(--font-mono); font-weight: 600; font-size: 0.95rem; color: var(--charcoal-900); }
.nav-phone span{ display:block; font-family: var(--font-body); font-weight: 400; font-size: 0.68rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

.nav-toggle{ display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg{ width: 26px; height: 26px; }

@media (max-width: 980px){
  .nav-main, .nav-cta .nav-phone{ display: none; }
  .nav-toggle{ display: block; }
  .nav-cta{ gap: 10px; }
}
@media (max-width: 420px){
  .brand-name{ display: none; }
  .nav-cta .btn{ padding: 11px 16px; font-size: 0.86rem; }
}

/* mobile drawer */
.mobile-drawer{
  position: fixed; inset: 0; z-index: 200;
  background: var(--charcoal-900);
  color: #fff;
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex; flex-direction: column;
  padding: 26px;
  overflow-y: auto;
}
.mobile-drawer.open{ transform: translateX(0); }
.mobile-drawer .close-row{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-drawer a.top-link{ font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-drawer .sub-link{ padding: 8px 0 8px 14px; font-size: 0.98rem; color: rgba(255,255,255,0.75); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  padding: 104px 0 108px;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1{ margin-bottom: 20px; }
.hero .lede{ font-size: 1.125rem; max-width: 46ch; }
.hero-actions{ display: flex; gap: 14px; margin: 30px 0 26px; flex-wrap: wrap; }
.hero-trust{ display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.hero-trust .trust-item{ font-size: 0.84rem; color: var(--ink-soft); display:flex; align-items:center; gap:7px; }
.hero-trust .trust-item svg{ width: 16px; height: 16px; color: var(--green-600); flex: none; }

@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero > .speedlines{ display: none; }
}

/* live call card — signature element */
.call-card{
  position: relative;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  padding: 26px;
  max-width: 420px;
  margin-left: auto;
}
.call-card-top{ display:flex; align-items:center; justify-content: space-between; margin-bottom: 18px; }
.call-status{ display:flex; align-items:center; gap:8px; font-family: var(--font-mono); font-size: 0.78rem; font-weight:600; color: var(--green-600); text-transform: uppercase; letter-spacing: .06em; }
.dot{ width:8px; height:8px; border-radius:50%; background: var(--green-500); animation: pulse 1.4s infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity: .35; } }
.call-timer{ font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink-soft); }
.call-person{ display:flex; align-items:center; gap:12px; margin-bottom: 18px; }
.avatar{
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--charcoal-700));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family: var(--font-display); font-weight:700; font-size: 0.95rem;
  flex: none;
}
.call-person .name{ font-weight: 600; font-size: 0.98rem; color: var(--charcoal-900); }
.call-person .role{ font-size: 0.8rem; color: var(--ink-soft); }
.call-transcript{ background: var(--paper); border-radius: var(--radius-md); padding: 16px; font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 16px; }
.call-transcript .line{ margin-bottom: 8px; }
.call-transcript .line:last-child{ margin-bottom: 0; }
.call-checklist{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.call-checklist li{ display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--charcoal-900); font-weight: 500; }
.call-checklist svg{ width: 16px; height: 16px; color: var(--green-600); flex: none; }
.call-transcript .who{ font-weight: 600; color: var(--charcoal-900); }
.call-foot{ display:flex; align-items:center; justify-content: space-between; border-top: 1px dashed var(--paper-line); padding-top: 14px; }
.answered-badge{ display:inline-flex; align-items:center; gap:6px; background: var(--green-100); color: var(--green-700); font-family: var(--font-mono); font-size: 0.72rem; font-weight:600; padding: 5px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; line-height: 1.3; white-space: nowrap; }
.answered-badge svg{ flex: none; width: 14px; height: 14px; }

/* ---------- sections ---------- */
section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

@media (max-width: 760px){
  .wrap{ padding: 0 22px; }
  section{ padding: 68px 0; }
  .hero{ padding: 64px 0 68px; }
  .page-header{ padding: 56px 0 40px; }
  .section-head{ margin-bottom: 32px; }
}
.bg-white{ background: #fff; }
.bg-dim{ background: var(--paper-dim); }
.bg-dark{ background: var(--charcoal-900); color: #fff; }
.bg-dark h2, .bg-dark h3{ color: #fff; }
.bg-dark p{ color: rgba(255,255,255,0.68); }

.divider-line{ height: 1px; background: var(--paper-line); border: none; margin: 0; }

table svg{ width: 18px; height: 18px; color: var(--green-600); vertical-align: middle; }

/* safeguard: any bare checkmark svg dropped into a plain <li><span> without a sized
   wrapper (icon-tile, pricing-card li, compare-table) still needs explicit dimensions,
   or it renders at browser default / collapses depending on context */
li span svg, p span svg{ width: 16px; height: 16px; flex: none; vertical-align: middle; display: inline-block; }

/* ---------- grids & cards ---------- */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-grid{ display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 24px; align-items: start; }
@media (max-width: 900px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .grid-2, .grid-3, .grid-4, .contact-grid{ grid-template-columns: 1fr; }
}

.card{
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.icon-tile{
  width: 54px; height: 54px; border-radius: var(--radius-md);
  background: var(--charcoal-900); color: var(--green-400);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 14px rgba(38,53,66,0.18);
}
.icon-tile svg{ width: 26px; height: 26px; stroke-width: 2.1; }
.icon-tile.tile-green{ background: var(--green-600); color: #fff; box-shadow: 0 6px 14px rgba(0,166,90,0.28); }
.card .icon-tile{ margin-bottom: 18px; }
.card h3{ margin-bottom: 8px; }
.card p{ margin-bottom: 0; font-size: 0.94rem; }

/* process steps — circular photo + overlapping step-number badge */
.card.process-card{ text-align: center; }
.process-photo{
  position: relative;
  width: 128px; height: 128px;
  margin: 0 auto 20px;
  background: var(--paper-dim);
}
.process-photo img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(38,53,66,0.16);
}
.process-badge{
  position: absolute; right: -2px; bottom: -2px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,166,90,0.32);
}
.process-chip{ margin: 0 0 10px; justify-content: center; }
.card.process-card h3{ margin-bottom: 6px; }

/* restrained capability grid — for lists of features that don't need to read
   as separate floating objects (icon-tiles stay consistent, but no per-item
   card background/border/shadow; a thin top rule replaces the card border) */
.capability-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.capability-item{
  padding-top: 24px;
  border-top: 1px solid var(--paper-line);
}
.capability-item .icon-tile{ margin-bottom: 16px; transition: transform .18s ease; }
.capability-item:hover .icon-tile{ transform: translateY(-2px); }
.capability-item h3{ margin-bottom: 8px; }
.capability-item p{ margin-bottom: 0; font-size: 0.94rem; }
@media (max-width: 900px){
  .capability-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .capability-grid{ grid-template-columns: 1fr; gap: 28px; }
}

/* photo-led service cards (homepage "what pro assist does" redesign) */
.service-photo-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-photo-card{
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.service-photo-card:hover{
  box-shadow: var(--shadow-pop);
  border-color: var(--charcoal-300);
  transform: translateY(-2px);
}
.service-photo-card .service-photo{
  aspect-ratio: 4 / 3;
  background: var(--paper-dim);
}
.service-photo-card .service-photo img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.service-photo-card .service-body{ padding: 24px; }
.service-photo-card h3{ font-size: 1.15rem; margin-bottom: 8px; }
.service-photo-card p{ font-size: 0.94rem; margin-bottom: 0; }
@media (max-width: 900px){
  .service-photo-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .service-photo-grid{ grid-template-columns: 1fr; gap: 22px; }
  .service-photo-card .service-body{ padding: 20px; }
}

/* bold full-bleed stat band — replaces the quiet boxed stat-bar as the primary treatment */
.stat-band{
  background: var(--charcoal-900);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 54px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-band .stat{ text-align: center; position: relative; z-index: 1; }
.stat-band .stat + .stat{ border-left: 1px solid rgba(255,255,255,0.12); }
.stat-band .num{ font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--green-400); line-height: 1; }
.stat-band .label{ font-size: 0.86rem; color: rgba(255,255,255,0.62); margin-top: 10px; }
@media (max-width: 760px){
  .stat-band{ grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .stat-band .stat:nth-child(odd){ border-left: none; }
}

/* featured quote — a single large testimonial instead of three identical boxes */
.feature-quote{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-pop);
  position: relative;
  border-top: 4px solid var(--green-500);
}
.feature-quote .stars{ color: var(--green-500); font-size: 1rem; margin-bottom: 18px; letter-spacing: 3px; }
.feature-quote p.quote-text{ font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--charcoal-900); font-style: normal; line-height: 1.4; margin-bottom: 22px; }
.feature-quote .quote-person .name{ font-size: 1rem; }

/* mini supporting quotes strip beside the feature quote */
.mini-quote{ padding: 18px 0; border-top: 1px solid var(--paper-line); }
.mini-quote:first-child{ border-top: none; padding-top: 0; }
.mini-quote p{ font-size: 0.92rem; color: var(--charcoal-900); font-style: italic; margin-bottom: 8px; }
.mini-quote .biz-line{ font-size: 0.8rem; color: var(--ink-soft); font-family: var(--font-mono); }

/* connected step path — replaces boxed step cards on the homepage */
.step-path{ position: relative; }
.step-path::before{
  content: "";
  position: absolute;
  left: 27px; top: 30px; bottom: 30px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--green-500) 0 8px, transparent 8px 16px);
}
.step-path .step-row{ position: relative; z-index: 1; padding-bottom: 34px; }
.step-path .step-row:last-child{ padding-bottom: 0; }
.step-path .step-num{ background: var(--green-600); color: #fff; box-shadow: 0 6px 14px rgba(0,166,90,0.3); }

/* industry strip — single connected band instead of four separate cards */
.industry-strip{
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.industry-strip a{
  background: #fff;
  padding: 34px 26px;
  border-right: 1px solid var(--paper-line);
  transition: background .15s ease;
}
.industry-strip a:last-child{ border-right: none; }
.industry-strip a:hover{ background: var(--green-100); }
.industry-strip .icon-tile{ background: var(--charcoal-900); }
.industry-strip .industry-photo{
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.industry-strip .industry-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.industry-strip .industry-photo::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,53,66,0) 50%, rgba(38,53,66,0.55) 100%);
  pointer-events: none;
}
.industry-strip a:hover .industry-photo img{ transform: scale(1.04); }
@media (max-width: 900px){
  .industry-strip{ grid-template-columns: repeat(2,1fr); }
  .industry-strip a:nth-child(2){ border-right: none; }
  .industry-strip a:nth-child(3), .industry-strip a:nth-child(4){ border-top: 1px solid var(--paper-line); }
}
@media (max-width: 560px){
  .industry-strip{ grid-template-columns: 1fr; }
  .industry-strip a{ border-right: none !important; border-top: 1px solid var(--paper-line); }
  .industry-strip a:first-child{ border-top: none; }
}

/* vertical flow diagram — customer call -> Pro Assist -> your business */
.flow-wrap{ display:flex; flex-direction:column; align-items:center; gap:0; max-width: 620px; margin: 0 auto; }
.flow-node{
  background:#fff; border:1px solid var(--paper-line); border-radius: var(--radius-md);
  padding: 16px 32px; font-family: var(--font-display); font-weight:700; font-size:1.05rem;
  color: var(--charcoal-900); box-shadow: var(--shadow-card); text-align:center;
}
.flow-node.dark{ background: var(--charcoal-900); color:#fff; border-color: var(--charcoal-900); }
.flow-connector{ width:2px; height:38px; background: repeating-linear-gradient(to bottom, var(--green-500) 0 6px, transparent 6px 12px); }
.flow-pills{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; padding: 22px 10px; max-width: 560px; }
.flow-pill{
  background: var(--green-100); color: var(--green-700); font-family: var(--font-mono);
  font-size:0.76rem; font-weight:600; padding:9px 16px; border-radius:20px;
  text-transform:uppercase; letter-spacing:.04em; white-space:nowrap;
}
@media (max-width:560px){
  .flow-node{ font-size:0.92rem; padding:14px 22px; }
}
.flow-node-sub{ font-size:0.85rem; color:var(--ink-soft); text-align:center; margin-top:8px; max-width:280px; }

/* contrast block: "not this / but this" */
.contrast-panel .panel-dark .not-buying{ font-size:0.95rem; color:rgba(255,255,255,0.55); text-decoration:line-through; margin-bottom:10px; position:relative; z-index:1; }
.contrast-panel .panel-dark .buying{ font-family:var(--font-display); font-weight:700; font-size:1.3rem; color:#fff; position:relative; z-index:1; }

/* comparison table */
.compare-table{ width:100%; border-collapse:collapse; font-size:0.92rem; min-width:560px; line-height: 1.35; }
.compare-table th{ text-align:left; padding:18px 22px; color:var(--charcoal-900); font-family:var(--font-display); }
.compare-table th.col{ text-align:center; }
.compare-table td{ padding:14px 22px; border-top:1px solid var(--paper-line); color:var(--ink-soft); }
.compare-table td.col{ text-align:center; }
.compare-table td.col svg{ width:18px; height:18px; color:var(--green-600); vertical-align:middle; }
.compare-table thead tr{ border-bottom:1px solid var(--paper-line); }
.compare-table .col-highlight{ background: var(--green-100); border-left: 2px solid var(--green-500); border-right: 2px solid var(--green-500); }
.compare-table th.col-highlight{ font-weight: 700; color: var(--green-700); border-top: 2px solid var(--green-500); }
.compare-table tbody tr:last-child td.col-highlight{ border-bottom: 2px solid var(--green-500); }

/* "why pro assist" plan comparison — in-house / answering service / Pro Assist */
.sr-only{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.compare2-frame{
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.compare2-scroll{ overflow-x: auto; }
.compare2{ width: 100%; border-collapse: collapse; min-width: 720px; }
.compare2 th, .compare2 td{ padding: 20px 18px; text-align: center; vertical-align: middle; line-height: 1.35; }
.compare2 thead th{
  font-family: var(--font-display); font-size: 0.95rem; color: var(--charcoal-900);
  border-bottom: 1px solid var(--paper-line);
  background: #fff;
}
.compare2-feature{ text-align: left !important; width: 26%; }
.compare2 thead .compare2-feature{ color: var(--charcoal-500); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.compare2-badge{
  display: inline-block; background: var(--charcoal-900); color: #fff;
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; padding: 9px 20px;
  border-radius: 999px;
}
.compare2 tbody th.compare2-feature{
  font-family: var(--font-body); font-weight: 600; color: var(--charcoal-900); font-size: 0.95rem;
}
.compare2 tbody tr td, .compare2 tbody tr th{ border-top: 1px solid var(--paper-line); color: var(--ink-soft); font-size: 0.92rem; }
.compare2 tbody tr:first-child td, .compare2 tbody tr:first-child th{ border-top: none; }
.compare2-highlight{ padding: 10px 14px; }
.compare2-pill{
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--green-100); border: 1.5px solid var(--green-500);
  border-radius: var(--radius-md); padding: 12px 14px; color: var(--charcoal-900); font-weight: 600;
}
.compare2-check{
  width: 22px; height: 22px; border-radius: 50%; background: #fff; color: var(--green-600);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.compare2-check svg{ width: 13px; height: 13px; }
.cell-label{ display: none; }

@media (max-width: 820px){
  .compare2-scroll{ overflow-x: visible; }
  .compare2{ min-width: 0; display: block; }
  .compare2 thead{ display: none; }
  .compare2 tbody{ display: block; }
  .compare2 tbody tr{
    display: block; padding: 18px 18px 16px; border-top: 1px solid var(--paper-line);
  }
  .compare2 tbody tr:first-child{ border-top: none; }
  .compare2 tbody tr th, .compare2 tbody tr td{
    display: block; border-top: none; padding: 0; text-align: left;
  }
  .compare2 tbody tr th.compare2-feature{
    font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 12px;
  }
  .compare2 tbody tr td{
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 9px 0; border-top: 1px dashed var(--paper-line);
  }
  .cell-label{
    display: inline-block; font-family: var(--font-mono); font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: .04em; color: var(--charcoal-500); font-weight: 600;
  }
  .compare2-highlight{ padding: 12px 0 0; margin-top: 4px; border-top: 1px dashed var(--paper-line); }
  .compare2-pill{ flex-direction: row; justify-content: flex-start; }
}

/* utility: gives an h3 the visual weight of h2 without the semantic heading level */
.h2-size{
  font-family: var(--font-display); color: var(--charcoal-900);
  font-size: clamp(2rem, 3.2vw, 2.75rem); font-weight: 700; line-height: 1.15;
  margin: 0 0 22px; letter-spacing: -0.01em;
}

/* FAQ accordion */
.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary{
  cursor: pointer; padding: 18px 22px; font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; color: var(--charcoal-900); list-style: none; display: flex;
  align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+"; font-family: var(--font-mono); font-size: 1.2rem; color: var(--green-600);
  flex: none; transition: transform .15s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item .faq-answer{ padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.94rem; }

/* stat bar */
.stat-bar{
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.stat-bar .stat{ padding: 26px 22px; border-right: 1px solid var(--paper-line); text-align: center; }
.stat-bar .stat:last-child{ border-right: none; }
.stat .num{ font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--green-600); }
.stat .label{ font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 760px){
  .stat-bar{ grid-template-columns: repeat(2,1fr); }
  .stat-bar .stat:nth-child(2){ border-right: none; }
}

/* steps / how it works */
.step-row{ display: flex; gap: 22px; align-items: flex-start; }
.step-num{
  font-family: var(--font-mono); font-weight: 600;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal-900); color: var(--green-400);
  display: flex; align-items: center; justify-content: center;
  flex: none; font-size: 0.95rem;
}
.step-connector{ width: 1px; background: var(--paper-line); flex: none; margin: 4px 0 4px 21.5px; }

/* pricing */
.pricing-card{
  background:#fff; border: 1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; position: relative;
}
.pricing-card.featured{ border-color: var(--green-500); box-shadow: var(--shadow-pop); }
.pricing-card .ribbon{
  position: absolute; top: -13px; left: 28px;
  background: var(--green-600); color:#fff; font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.pricing-card .price{ font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--charcoal-900); margin: 12px 0 2px; }
.pricing-card .price span{ font-size: 1rem; font-weight: 500; color: var(--ink-soft); }
.pricing-card .plan-name{ font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; font-size: 0.78rem; color: var(--green-600); font-weight: 600; }
.pricing-card ul{ margin: 22px 0; flex: 1; }
.pricing-card li{ display: flex; gap: 10px; padding: 8px 0; font-size: 0.92rem; color: var(--ink-soft); border-top: 1px solid var(--paper-line); }
.pricing-card li:first-child{ border-top: none; }
.pricing-card li svg{ width: 17px; height: 17px; color: var(--green-600); flex: none; margin-top: 2px; }

/* testimonial */
.quote-card{
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-card);
}
.quote-card .stars{ color: var(--green-500); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.quote-card p.quote-text{ font-size: 1.02rem; color: var(--charcoal-900); font-style: italic; }
.quote-person{ display:flex; align-items:center; gap: 12px; margin-top: 16px; }
.quote-person .name{ font-weight: 600; font-size: 0.92rem; color: var(--charcoal-900); }
.quote-person .biz{ font-size: 0.82rem; color: var(--ink-soft); }

/* CTA banner */
.cta-banner{
  background: var(--charcoal-900);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: grid; grid-template-columns: 1.3fr auto; gap: 30px; align-items: center;
}
.cta-banner h2, .cta-banner p{ color: #fff; position: relative; z-index: 1; }
.cta-banner p{ color: rgba(255,255,255,0.68); margin-bottom: 0; }
.cta-banner .actions{ position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px){
  .cta-banner{ grid-template-columns: 1fr; text-align: left; padding: 36px 26px; }
}

/* signature onboarding steps — large numbers, horizontal on desktop, dark brand background */
.signature-steps{
  background: var(--charcoal-900);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}
.signature-steps .step-number{
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-400);
  line-height: 1;
  margin-bottom: 16px;
}
.signature-steps h3{ color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.signature-steps p{ color: rgba(255,255,255,0.68); font-size: 0.92rem; margin-bottom: 0; }
@media (max-width: 900px){
  .signature-steps{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .signature-steps{ grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
}

/* split panel — big stat visual + list, breaks the card-grid repetition */
.split-panel{
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.split-panel .panel-dark{
  background: var(--charcoal-900);
  color: #fff;
  padding: 50px 44px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-panel .panel-dark .big-stat{ font-family: var(--font-display); font-weight: 700; font-size: 4.4rem; color: var(--green-400); line-height: 1; position: relative; z-index: 1; }
.split-panel .panel-dark .big-stat-label{ font-size: 0.98rem; color: rgba(255,255,255,0.7); margin-top: 14px; max-width: 26ch; position: relative; z-index: 1; }
.split-panel .panel-dark .stat-divider{ width: 46px; height: 3px; background: var(--green-500); border-radius: 2px; margin: 20px 0 14px; position: relative; z-index: 1; }
.split-panel .panel-dark .big-stat-caption{ font-family: var(--font-hand); font-weight: 600; font-size: 1.4rem; line-height: 1.25; color: #fff; position: relative; z-index: 1; }
.split-panel .panel-list{ background: #fff; padding: 44px; }
.split-panel .pain-row{ display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--paper-line); align-items: flex-start; }
.split-panel .pain-row:first-child{ border-top: none; padding-top: 0; }
.split-panel .pain-row .icon-tile{ margin-bottom: 0; flex: none; width: 42px; height: 42px; }
.split-panel .pain-row .icon-tile svg{ width: 20px; height: 20px; }
.split-panel .pain-row .pain-photo{
  flex: none; width: 56px; height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(38,53,66,0.16);
}
.split-panel .pain-row .pain-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.split-panel .pain-row h3{ font-size: 1.05rem; margin-bottom: 4px; }
.split-panel .pain-row p{ font-size: 0.9rem; margin-bottom: 0; }
@media (max-width: 860px){
  .split-panel{ grid-template-columns: 1fr; }
}
.split-panel .panel-dark.has-photo{
  background-size: cover;
  background-position: center;
}
.split-panel .panel-dark.has-photo::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(38,53,66,0.93), rgba(38,53,66,0.78));
  z-index: 0;
}
/* horizontal navy fade: opaque on the left (behind headline text), transparent on the right (photo subject stays visible) */
.split-panel .panel-dark.has-photo.fade-left::before{
  background: linear-gradient(to right, rgba(38,53,66,0.95), rgba(38,53,66,0));
}

/* services comparison cards — photo header + overlapping circular marker */
.service-compare-photo{
  margin: -28px -28px 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--paper-dim);
}
.service-compare-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.service-compare-photo::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(28,40,50,0.18) 0%, rgba(28,40,50,0.62) 100%);
  z-index: 1;
  pointer-events: none;
}
.service-compare-caption{
  position: absolute; left: 24px; right: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  font-family: var(--font-hand);
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2rem);
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
}
.service-compare-caption .accent{ position: relative; display: inline-block; }
.service-compare-caption .accent::after{
  content: "";
  position: absolute; left: -2px; right: -2px; bottom: -5px; height: 5px;
  background: var(--green-500);
  border-radius: 3px;
  opacity: 0.9;
  transform: rotate(-0.6deg);
}
.service-compare-marker{
  position: absolute; left: 24px; bottom: -26px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(0,166,90,0.35);
  border: 3px solid #fff;
  z-index: 2;
}
.service-compare-marker svg{ width: 24px; height: 24px; }
.service-compare-body{ margin-top: 30px; }
.logo-strip{ display: flex; flex-wrap: wrap; gap: 34px; align-items: center; justify-content: space-between; }
.logo-strip span{ font-family: var(--font-mono); font-size: 0.85rem; color: var(--charcoal-500); letter-spacing: 0.02em; }

/* forms */
.form-card{ background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-size: 0.86rem; font-weight: 600; color: var(--charcoal-900); margin-bottom: 6px; }
.field input, .field select, .field textarea{
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--paper-line);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--green-500); background: #fff;
}
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.radio-group{ display: flex; flex-direction: column; gap: 10px; }
.radio-option{ display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1.5px solid var(--paper-line); border-radius: var(--radius-sm); cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.radio-option:hover{ border-color: var(--green-500); }
.radio-option input[type="radio"]{ width: 17px; height: 17px; accent-color: var(--green-600); flex: none; }
.radio-option span{ font-size: 0.92rem; color: var(--charcoal-900); }
.radio-option:has(input:checked){ border-color: var(--green-600); background: var(--green-100); }

.consent-row{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.consent-row input[type="checkbox"]{ width: 17px; height: 17px; margin-top: 2px; accent-color: var(--green-600); flex: none; }
.consent-row label{ font-size: 0.78rem; line-height: 1.55; color: var(--ink-soft); }
.consent-row label a{ color: var(--green-700); text-decoration: underline; }
@media (max-width: 560px){ .field-row{ grid-template-columns: 1fr; } }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--green-600); outline-offset: 2px;
}

/* footer */
.site-footer{ background: var(--charcoal-900); color: rgba(255,255,255,0.7); padding: 64px 0 26px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 46px; }
.footer-grid h4{ color: #fff; font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-weight: 600; }
.footer-grid a{ display: block; padding: 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.62); }
.footer-grid a:hover{ color: var(--green-400); }
.footer-brand img{ height: 28px; margin-bottom: 14px; }
.footer-brand p{ font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 30ch; }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a{ color: rgba(255,255,255,0.55); }
.footer-bottom a:hover{ color: var(--green-400); }
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

/* breadcrumb / page header (interior pages) */
.page-header{ padding: 88px 0 56px; border-bottom: 1px solid var(--paper-line); }
.breadcrumb{ font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 16px; }
.breadcrumb a:hover{ color: var(--green-600); }

/* blog / resources list */
.post-card{ background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.post-card .post-tag{ padding: 20px 22px 0; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green-600); font-weight: 600; }
.post-card .post-body{ padding: 10px 22px 22px; }
.post-card h3{ margin-bottom: 8px; }
.post-card .post-meta{ font-size: 0.78rem; color: var(--charcoal-300); margin-top: 14px; }

/* utility */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.text-center{ text-align: center; }
.center-col{ max-width: 640px; margin: 0 auto; }
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 20px; }
.tag-pill{ font-family: var(--font-mono); font-size: 0.74rem; font-weight:600; text-transform: uppercase; letter-spacing:.04em; background: var(--paper-dim); color: var(--charcoal-700); padding: 7px 13px; border-radius: 20px; border: 1px solid var(--paper-line); }
.tag-pill.active{ background: var(--charcoal-900); color: #fff; border-color: var(--charcoal-900); }
