
/* Tier 2 industry-page-specific styles (supplement tier1/assets/styles.css) */

/* ---------- Subpage nav (top-of-page horizontal nav bar) ---------- */
.subpage-nav {
  position: sticky;
  top: 68px; /* below sticky main site header */
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e5ecf3;
  box-shadow: 0 1px 0 rgba(15,34,58,.03);
}
.subpage-nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .7rem;
  flex-wrap: wrap;
}
.subpage-nav-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: #7a8ba0;
  white-space: nowrap;
}
.subpage-nav-links {
  display: flex;
  gap: .3rem;
  flex-wrap: wrap;
}
.subpage-nav-link {
  display: inline-block;
  padding: .5rem .95rem;
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.subpage-nav-link:hover {
  background: #f2f7fc;
  color: var(--navy);
}
.subpage-nav-link.is-active {
  background: var(--green);
  color: #fff;
}
.subpage-nav-link.is-active:hover {
  background: var(--green-600);
  color: #fff;
}
@media (max-width: 720px) {
  .subpage-nav-inner { gap: .5rem; padding-block: .55rem; }
  .subpage-nav-label { display: none; }
  .subpage-nav-link { padding: .4rem .7rem; font-size: .9rem; }
}

/* ---------- Services (icon rows) ---------- */
.section-lede {
  color: #4c5f76;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 720px;
  margin: .8rem auto 0;
}
/* All section heads are centered across tier2 attorney sub-pages */
.section-head { text-align: center; margin-inline: auto; max-width: 820px; }
.section-head p { margin-inline: auto; }
.service-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
  max-width: 1080px;
  margin: 2.4rem auto 0;
}
@media (max-width: 820px) { .service-rows { grid-template-columns: 1fr; gap: 1.2rem; } }
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 1.4rem 1.35rem;
  background: #f6f9fb;
  border: 1px solid #eaf0f5;
  border-radius: 12px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  color: inherit;
}
a.service-row:hover .service-row-body h3 { color: var(--green); }
.service-row:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15,34,58,.06);
}
.service-row-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: var(--green);
  box-shadow: 0 1px 3px rgba(15,34,58,.06);
}
.service-row-icon svg { width: 22px; height: 22px; }
.service-row-body { flex: 1; min-width: 0; }
.service-row-body h3 {
  font-size: 1.08rem;
  margin: 0 0 .35rem;
  color: var(--ink);
  line-height: 1.3;
}
.service-row-body p {
  margin: 0;
  color: #4c5f76;
  font-size: .96rem;
  line-height: 1.6;
}

/* ---------- Types served list ---------- */
.types-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem 1.6rem; max-width: 960px; }
.types-list li { padding: .5rem .8rem; border-left: 3px solid var(--green); background: #f6f9fb; font-size: 1rem; color: var(--ink); border-radius: 0 6px 6px 0; }
@media (max-width: 900px) { .types-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .types-list { grid-template-columns: 1fr; } }

/* ---------- Benchmarks table ---------- */
.benchmark-wrap { overflow-x: auto; }
.benchmark-table { width: 100%; border-collapse: collapse; font-size: .98rem; max-width: 820px; margin: 0 auto; }
.benchmark-table th, .benchmark-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid #e5ecf3; }
.benchmark-table th { background: #f6f9fb; font-weight: 700; color: var(--ink); }
.benchmark-table td:last-child { font-weight: 600; color: var(--navy); white-space: nowrap; }

/* ---------- Why us cards (navy) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: rgba(255,255,255,.04); border: 1px solid var(--navy-line); padding: 1.4rem 1.4rem 1.5rem; border-radius: 10px; }
.why-card h3 { color: #fff; font-size: 1.08rem; margin: 0 0 .55rem; letter-spacing: .01em; }
.why-card p { color: #dfe9f3; font-size: .96rem; line-height: 1.6; margin: 0; }
.section--paper .why-card { background: #fff; border-color: rgba(10,38,70,.09); }
.section--paper .why-card h3 { color: var(--navy, #0a2646); }
.section--paper .why-card p { color: var(--ink-2, #4a5563); }
.section--white .why-card { background: #fff; border-color: rgba(10,38,70,.09); }
.section--white .why-card h3 { color: var(--navy, #0a2646); }
.section--white .why-card p { color: var(--ink-2, #4a5563); }

/* ---------- Portfolio grid (uniform inline cards with thumbnails) ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5ecf3;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.portfolio-card:hover {
  box-shadow: 0 10px 28px rgba(15,34,58,.10);
  transform: translateY(-3px);
  border-color: var(--green);
}
.portfolio-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f8;
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .3s ease;
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.02); }
.portfolio-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--green);
  color: #0b1d33;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  padding: .35rem .7rem;
  border-radius: 4px;
  margin-bottom: .25rem;
}
.portfolio-body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.portfolio-body h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}
.portfolio-meta {
  font-size: .82rem;
  color: #7a8ba0;
  margin: 0;
  letter-spacing: .02em;
}
.portfolio-blurb {
  font-size: .93rem;
  color: #4c5f76;
  margin: .4rem 0 .6rem;
  line-height: 1.5;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  margin-top: .3rem;
}
.portfolio-link svg { width: 1rem; height: 1rem; }

/* Case study card variant - no thumbnail, text fills full height */
.portfolio-card--case {
  background: linear-gradient(160deg, #f5faf4 0%, #eaf5e6 100%);
  border-color: #cfe0d1;
}
.portfolio-body--case {
  padding: 1.4rem 1.3rem;
  height: 100%;
  justify-content: center;
  gap: .55rem;
}
.portfolio-card--case .portfolio-body h3 {
  color: var(--navy);
  font-size: 1.15rem;
}
.portfolio-card--case .portfolio-blurb { margin: .1rem 0 .3rem; }
.portfolio-card--case:hover { border-color: var(--green); }

/* Bottom "see full portfolio" CTA row */
.section--pt-tight { padding-top: 1.5rem; padding-bottom: 4.5rem; }
.portfolio-cta {
  display: grid;
  grid-template-columns: 1.5fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 2.4rem;
  background: linear-gradient(135deg, #f6f9fb 0%, #eef3f8 100%);
  border: 1px solid #e5ecf3;
  border-radius: 14px;
}
.portfolio-cta h2 { margin: .4rem 0 .6rem; font-size: 1.5rem; line-height: 1.25; }
.portfolio-cta p { margin: 0; color: #4c5f76; line-height: 1.6; }
.portfolio-cta .eyebrow { margin: 0; }
.portfolio-cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
@media (max-width: 780px) {
  .portfolio-cta { grid-template-columns: 1fr; padding: 1.8rem 1.6rem; }
  .portfolio-cta-actions { justify-content: flex-start; }
}

/* Ghost button on light background */
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid #c8d5e2;
}
.btn-ghost-dark:hover {
  background: #fff;
  border-color: var(--green);
  color: var(--green-600);
}

/* Ensure section--intro/white alternation reads cleanly */
.section--intro + .section--intro { padding-top: 0; }

/* Related services card grid + Features card grid hover state */
.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 38, 70, .08);
  border-color: rgba(10, 38, 70, .18);
  outline: none;
}
.feature-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 38, 70, .08);
  border-color: rgba(10, 38, 70, .18);
}

/* ---------- Related services grid: even 4-across, 2x2 fallback ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}
@media (max-width: 1080px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }
.related-grid.related-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
@media (max-width: 900px) { .related-grid.related-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-grid.related-grid--3 { grid-template-columns: 1fr; } }

/* ---------- Features / info grids: 3-across, avoid orphans ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
/* 6-item variant fits 3x2 evenly */
.features-grid.features-grid--3x2 { grid-template-columns: repeat(3, 1fr); }
/* 5-item variant -- 3-column grid, last 2 items span full row centered */
.features-grid.features-grid--5 { grid-template-columns: repeat(6, 1fr); max-width: 1200px; }
.features-grid.features-grid--5 > * { grid-column: span 2; }
.features-grid.features-grid--5 > *:nth-child(4) { grid-column: 2 / span 2; }
.features-grid.features-grid--5 > *:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 900px) { .features-grid.features-grid--5 { grid-template-columns: repeat(2, 1fr); } .features-grid.features-grid--5 > *, .features-grid.features-grid--5 > *:nth-child(4), .features-grid.features-grid--5 > *:nth-child(5) { grid-column: auto; } }
@media (max-width: 560px) { .features-grid.features-grid--5 { grid-template-columns: 1fr; } }

/* Info callout cards (for breaking up long prose sections) */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}
.info-cards.info-cards--4 { grid-template-columns: repeat(2, 1fr); max-width: 1000px; }
/* 7-item variant -- 3+3+1 with last item centered across full row */
.info-cards.info-cards--7 > *:nth-child(7):last-child { grid-column: 1 / -1; max-width: calc((100% - 2 * 1.25rem) / 3); justify-self: center; }
@media (max-width: 900px) { .info-cards, .info-cards.info-cards--4 { grid-template-columns: 1fr; } .info-cards.info-cards--7 > *:nth-child(7):last-child { max-width: none; } }
.info-card {
  background: #fff;
  border: 1px solid rgba(10, 38, 70, .09);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 1.4rem 1.4rem 1.45rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 38, 70, .08);
}
.info-card h3 {
  margin: 0 0 .55rem;
  color: var(--navy, #0a2646);
  font-size: 1.12rem;
  line-height: 1.3;
}
.info-card p {
  margin: 0 0 .6rem;
  color: var(--ink-2, #4a5563);
  font-size: .96rem;
  line-height: 1.6;
}
.info-card p:last-child { margin-bottom: 0; }
.info-card .eyebrow { display: block; margin: 0 0 .5rem; font-size: .72rem; letter-spacing: .14em; font-weight: 800; text-transform: uppercase; color: var(--green); }

/* ---------- Pricing tier cards (Core / Pro / Priority) ---------- */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1080px;
  margin: 2.2rem auto 1.5rem;
}
@media (max-width: 900px) { .plan-cards { grid-template-columns: 1fr; max-width: 460px; } }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 38, 70, .09);
  border-radius: 14px;
  padding: 1.6rem 1.5rem 1.7rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 38, 70, .10);
  border-color: rgba(10, 38, 70, .18);
}
.plan-card--featured {
  border-color: var(--green);
  box-shadow: 0 8px 22px rgba(91, 189, 63, .12);
}
.plan-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #0b1d33;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .3rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-card .plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy, #0a2646);
  margin: 0 0 .35rem;
  text-align: center;
}
.plan-card .plan-tag {
  font-size: .82rem;
  color: #7a8ba0;
  text-align: center;
  margin: 0 0 1rem;
  letter-spacing: .02em;
}
.plan-card .plan-price {
  text-align: center;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  padding: .8rem 0;
  border-top: 1px solid rgba(10, 38, 70, .09);
  border-bottom: 1px solid rgba(10, 38, 70, .09);
  margin: 0 0 1.1rem;
}
.plan-card .plan-price small { display: block; font-size: .78rem; font-weight: 500; color: #7a8ba0; margin-top: .2rem; }
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.plan-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink-2, #4a5563);
}
.plan-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: .85rem;
  height: .85rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235bbd3f'><path fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/></svg>") no-repeat center / contain;
}

/* ---------- Pricing range cards (Web Design / SEO / PPC) ---------- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1080px;
  margin: 2rem auto 0;
}
/* 4-item variant: 2x2 */
.pricing-cards.pricing-cards--4 { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
/* 5-item variant: 3+2 with second row centered */
.pricing-cards.pricing-cards--5 { grid-template-columns: repeat(6, 1fr); max-width: 1200px; }
.pricing-cards.pricing-cards--5 > * { grid-column: span 2; }
.pricing-cards.pricing-cards--5 > *:nth-child(4) { grid-column: 2 / span 2; }
.pricing-cards.pricing-cards--5 > *:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 900px) { .pricing-cards { grid-template-columns: 1fr; max-width: 480px; } .pricing-cards.pricing-cards--4 { grid-template-columns: 1fr; max-width: 480px; } .pricing-cards.pricing-cards--5 { grid-template-columns: 1fr; max-width: 480px; } .pricing-cards.pricing-cards--5 > *, .pricing-cards.pricing-cards--5 > *:nth-child(4), .pricing-cards.pricing-cards--5 > *:nth-child(5) { grid-column: auto; } }
.pricing-card {
  background: #fff;
  border: 1px solid rgba(10, 38, 70, .09);
  border-radius: 12px;
  padding: 1.5rem 1.45rem 1.55rem;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 38, 70, .08);
  border-color: rgba(10, 38, 70, .18);
}
.pricing-card .pricing-eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 .55rem;
}
.pricing-card h3 {
  margin: 0 0 .7rem;
  font-size: 1.05rem;
  color: var(--navy, #0a2646);
  line-height: 1.4;
}
.pricing-card .pricing-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: auto 0 .3rem;
  line-height: 1.15;
}
.pricing-card .pricing-cadence {
  font-size: .85rem;
  color: #7a8ba0;
  margin: 0;
}
.pricing-note {
  max-width: 820px;
  margin: 1.6rem auto 0;
  text-align: center;
  color: var(--ink-2, #4a5563);
  font-size: .95rem;
  line-height: 1.65;
}

/* ---------- Timeline stepper ---------- */
.timeline-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 2.2rem auto 0;
  position: relative;
}
.timeline-stepper.timeline-stepper--4 { grid-template-columns: repeat(4, 1fr); max-width: 1200px; }
@media (max-width: 900px) { .timeline-stepper.timeline-stepper--4 { grid-template-columns: 1fr; } }
@media (min-width: 901px) {
  .timeline-stepper::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(91, 189, 63, .25), var(--green) 50%, rgba(91, 189, 63, .25));
    z-index: 0;
  }
}
@media (max-width: 900px) { .timeline-stepper { grid-template-columns: 1fr; } }
.timeline-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(10, 38, 70, .09);
  border-radius: 12px;
  padding: 1.5rem 1.4rem 1.55rem;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.timeline-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 38, 70, .08);
  border-color: var(--green);
}
.timeline-marker,
.timeline-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #0b1d33;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto .9rem;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px rgba(10, 38, 70, .09);
}
.timeline-step h3 {
  margin: 0 0 .55rem;
  color: var(--navy, #0a2646);
  font-size: 1.1rem;
}
.timeline-step p {
  margin: 0;
  color: var(--ink-2, #4a5563);
  font-size: .95rem;
  line-height: 1.6;
}

/* ---------- Numbered process steps (5-step Web Design process) ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 2.2rem auto 0;
}
.process-step {
  background: #fff;
  border: 1px solid rgba(10, 38, 70, .09);
  border-radius: 12px;
  padding: 1.5rem 1.4rem 1.55rem;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 38, 70, .08);
  border-color: rgba(10, 38, 70, .18);
}
.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(91, 189, 63, .12);
  color: var(--green);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin: 0 0 .9rem;
}
.process-step h3 {
  margin: 0 0 .55rem;
  color: var(--navy, #0a2646);
  font-size: 1.1rem;
  line-height: 1.3;
}
.process-step p {
  margin: 0;
  color: var(--ink-2, #4a5563);
  font-size: .95rem;
  line-height: 1.6;
}

/* ---------- Conversion tweaks (July 2026) ---------- */

/* Pricing-card "Get a proposal" link */
.pricing-card-cta {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 38, 70, .08);
  font-size: .95rem;
  font-weight: 600;
}
.pricing-card-cta a {
  color: var(--green, #5bbd3f);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .15s ease;
}
.pricing-card-cta a:hover {
  color: var(--green-600, #4aa332);
  text-decoration: underline;
}
.pricing-card-cta a svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mid-page CTA band -- shows after pricing sections */
.section--mid-cta {
  background: linear-gradient(135deg, rgba(91, 189, 63, .08) 0%, rgba(10, 38, 70, .04) 100%);
  border-top: 1px solid rgba(10, 38, 70, .08);
  border-bottom: 1px solid rgba(10, 38, 70, .08);
  padding-block: 2.5rem;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.mid-cta-text h3 {
  margin: 0 0 .3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy, #0a2646);
}
.mid-cta-text p {
  margin: 0;
  color: var(--ink-2, #4a5563);
  font-size: 1.02rem;
}
.mid-cta-btn {
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .mid-cta-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
  .mid-cta-text h3 { font-size: 1.25rem; }
}

/* Proof strip -- shows above final CTA */
.section--proof-strip {
  background: #f8fafc;
  border-top: 1px solid rgba(10, 38, 70, .06);
  padding-block: 2.5rem 3rem;
}
.proof-strip-inner {
  text-align: center;
}
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.proof-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.proof-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy, #0a2646);
  line-height: 1;
}
.proof-label {
  font-size: .88rem;
  color: var(--ink-2, #4a5563);
  line-height: 1.35;
}
.proof-links {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-links a {
  color: var(--green, #5bbd3f);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color .15s ease;
}
.proof-links a:hover {
  color: var(--green-600, #4aa332);
  text-decoration: underline;
}
.proof-links a svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 720px) {
  .proof-metrics { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .proof-num { font-size: 1.6rem; }
  .proof-links { gap: 1.5rem; margin-top: 1.4rem; }
}

/* FAQ closer -- last thing inside the FAQ section */
.faq-closer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 38, 70, .08);
  text-align: center;
}
.faq-closer p {
  margin: 0;
  color: var(--ink-2, #4a5563);
  font-size: 1.02rem;
}
.faq-closer a {
  color: var(--green, #5bbd3f);
  font-weight: 600;
  text-decoration: none;
}
.faq-closer a:hover {
  color: var(--green-600, #4aa332);
  text-decoration: underline;
}

/* ============================================================
   INDUSTRY QUOTE SECTION -- Real client testimonial per vertical
   ============================================================ */
.section--industry-quote {
  padding: 0;
  background: transparent;
}
.section--industry-quote .industry-quote-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.5rem 1rem;
}
.industry-quote-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-left: 4px solid #4aa332;
  border-radius: 10px;
  padding: 2rem 2rem 1.75rem;
  margin: 0;
  box-shadow: 0 2px 12px rgba(10, 38, 70, 0.04);
}
.industry-quote-card .stars {
  color: #f5a623;
  margin: 0 0 0.85rem;
  display: flex;
  gap: 0.15rem;
}
.industry-quote-card .stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.industry-quote-text {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
}
.industry-quote-text p {
  font-size: 1.125rem;
  line-height: 1.55;
  color: #0a2646;
  margin: 0;
  font-weight: 500;
}
.industry-quote-attr {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #495a70;
}
.industry-quote-attr strong {
  display: block;
  color: #0a2646;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.industry-quote-attr span {
  display: block;
  color: #6a7788;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}
.industry-quote-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #4aa332;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}
.industry-quote-source:hover {
  border-bottom-color: #4aa332;
}
.industry-quote-source svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .section--industry-quote .industry-quote-inner {
    padding: 3rem 1rem 0.5rem;
  }
  .industry-quote-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .industry-quote-text p {
    font-size: 1rem;
  }
}

/* ============================================================
   BLOG PICKS SECTION -- Industry-tagged blog content
   Variant A: Card grid | Variant B: Editorial list
   ============================================================ */
.section--blog-picks {
  padding: 4rem 1rem 3rem;
  background: #fbfcfd;
  border-top: 1px solid #e6ebf1;
}
.section--blog-picks .section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section--blog-picks .section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4aa332;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section--blog-picks h2 {
  font-size: 1.75rem;
  color: #0a2646;
  margin: 0 0 0.5rem;
}
.section--blog-picks .section-lede {
  color: #495a70;
  max-width: 620px;
  margin: 0 auto;
}

/* Variant A -- card grid */
.blog-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
  box-shadow: 0 1px 4px rgba(10, 38, 70, 0.03);
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 38, 70, 0.08);
  border-color: #cfe4c5;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
  color: #6a7788;
}
.blog-card-tag {
  background: #eaf5e3;
  color: #3d7a1c;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.blog-card-time {
  color: #97a3b2;
}
.blog-card-title {
  font-size: 1.0625rem;
  line-height: 1.4;
  color: #0a2646;
  margin: 0 0 1rem;
  font-weight: 700;
  flex-grow: 1;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #4aa332;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
}
.blog-card-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 150ms ease;
}
.blog-card:hover .blog-card-cta svg {
  transform: translateX(3px);
}

/* Variant B -- editorial list */
.section--blog-picks-alt {
  background: #fff;
  border-top: 1px solid #e6ebf1;
}
.section--blog-picks-alt .section-head {
  text-align: left;
  margin-bottom: 1.75rem;
}
.section--blog-picks-alt .container--narrow {
  max-width: 780px;
  margin: 0 auto;
}
.blog-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e6ebf1;
}
.blog-list-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e6ebf1;
  text-decoration: none;
  color: inherit;
  transition: padding-left 200ms ease;
}
.blog-list-item:hover {
  padding-left: 0.5rem;
}
.blog-list-num {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.5rem;
  color: #97a3b2;
  font-weight: 400;
  min-width: 40px;
}
.blog-list-body {
  flex-grow: 1;
}
.blog-list-cat {
  display: block;
  font-size: 0.75rem;
  color: #4aa332;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.blog-list-title {
  font-size: 1.0625rem;
  color: #0a2646;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}
.blog-list-arrow {
  width: 18px;
  height: 18px;
  color: #97a3b2;
  stroke: currentColor;
  transition: transform 150ms ease, color 150ms ease;
  flex-shrink: 0;
}
.blog-list-item:hover .blog-list-arrow {
  transform: translateX(4px);
  color: #4aa332;
}

/* Blog picks CTA link (bottom of both variants) */
.blog-picks-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0a2646;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #4aa332;
  padding-bottom: 2px;
  transition: color 150ms ease;
}
.blog-picks-all:hover {
  color: #4aa332;
}
.blog-picks-all svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-picks-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
@media (max-width: 640px) {
  .section--blog-picks {
    padding: 3rem 1rem 2rem;
  }
  .section--blog-picks h2 {
    font-size: 1.5rem;
  }
  .blog-list-item {
    gap: 1rem;
    padding: 1rem 0;
  }
  .blog-list-num {
    font-size: 1.25rem;
    min-width: 32px;
  }
  .blog-list-title {
    font-size: 1rem;
  }
}

/* Section CTA row -- multi-button variant for wp-maintenance pages */
.section-cta-row--multi {
  flex-wrap: wrap;
  gap: .75rem;
}
.section-cta-row--multi .btn {
  flex: 0 1 auto;
}
