/* ── BOX MODEL RESET — ALWAYS FIRST ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --accent: #e8530a;
  --accent-dark: #c44208;
  --off-black: #1c1c1c;
  --surface: #f7f6f4;
  --white: #ffffff;
  --mid-grey: #6b6b6b;
  --border: #e2e0dc;
  --nav-bg: #111111;
  --footer-bg: #111111;
  --max-width: 1140px;
}

/* ── BASE ── */
html {
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--off-black);
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ── SCREEN-READER ONLY ── */
.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;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  max-width: 68ch;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── FOCUS STATES ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.cms2026-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  min-height: 50px;
  border: 1.5px solid var(--border);
  color: var(--off-black);
  background: var(--white);
  transition: background 0.18s ease;
}

.cms2026-btn-secondary:hover {
  background: var(--surface);
  text-decoration: none;
}

.cms2026-hero-trust {
  font-size: 0.8125rem;
  color: var(--off-black);
  margin: 0;
  max-width: none;
}

.cms2026-hero-trust a {
  color: var(--accent);
  text-decoration: none;
}

.cms2026-hero-trust a:hover {
  text-decoration: underline;
}

.cms2026-hero-trust .stars {
  color: #00b67a;
  letter-spacing: 1px;
}

.stucco-hero.cms2026-hero {
  background: #fff;
  padding: 12px 16px 48px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .stucco-hero.cms2026-hero {
    padding: 12px 20px 56px;
  }
}

@media (min-width: 1200px) {
  .stucco-hero.cms2026-hero {
    padding: 22px 24px 56px;
  }
}

.stucco-hero .cms2026-hero-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  grid-template-columns: unset;
  max-width: var(--max-width);
}

.stucco-hero .wd-hero-badge {
  width: 100%;
}

.stucco-hero .wd-hero-badge .cms2026-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.stucco-hero .wd-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 56px);
  row-gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

.stucco-hero .wd-hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  min-height: 100%;
}

.stucco-hero .wd-hero-copy h1,
.stucco-hero .wd-hero-copy .cms2026-hero-lead {
  margin-bottom: 0;
  max-width: none;
}

.stucco-hero .wd-hero-cta {
  padding-top: 4px;
}

.stucco-hero .wd-hero-cta .cms2026-cta-row {
  margin-bottom: 0;
}

.stucco-hero .wd-hero-split .cms2026-hero-figure {
  height: 100%;
  min-height: 100%;
  aspect-ratio: unset;
  align-self: stretch;
  margin: 0;
}

.stucco-hero .wd-hero-split .cms2026-hero-figure img {
  height: 100%;
  object-fit: cover;
}

.stucco-hero .wd-hero-meta {
  width: 100%;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.stucco-hero .wd-hero-meta .cms2026-author {
  max-width: none;
  border-top: none;
  margin-bottom: 0;
  padding: 0;
  gap: 10px;
  flex: 1 1 220px;
}

.stucco-hero .wd-hero-meta .cms2026-avatar {
  width: 36px;
  height: 36px;
  font-size: 0.75rem;
}

.stucco-hero .wd-hero-meta .cms2026-author-meta {
  font-size: 0.75rem;
  line-height: 1.45;
}

.stucco-hero .wd-hero-meta .cms2026-author-meta strong {
  font-size: 0.8125rem;
  margin-bottom: 1px;
}

.stucco-hero .wd-hero-meta .cms2026-author-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stucco-hero .wd-hero-meta .cms2026-author-meta span {
  color: var(--mid-grey);
}

.stucco-hero .wd-hero-meta .cms2026-hero-trust {
  padding-left: 20px;
  border-left: 1px solid var(--border);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--mid-grey);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  flex: 0 1 auto;
}

.stucco-hero .wd-hero-meta .cms2026-hero-trust strong {
  color: var(--off-black);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--off-black);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 27px;
  border-radius: 6px;
  border: 2px solid var(--off-black);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── SPLIT LAYOUTS ── */
.split-band {
  padding: clamp(48px, 6vw, 72px) 0;
}

.split-band--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.split-grid--media-left .split-media {
  order: -1;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.split-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.split-content h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 22ch;
}

.split-lead {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--off-black);
  margin-bottom: 14px;
  max-width: 100%;
}

.split-content p {
  font-size: 0.9875rem;
  line-height: 1.72;
  color: #3a3a3a;
  max-width: 100%;
  margin-bottom: 0;
}

.split-content p strong,
.split-content p b {
  color: var(--off-black);
  font-weight: 700;
}

.split-media {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.split-figure {
  flex: 1 1 auto;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  min-height: 0;
}

.split-figure img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.split-caption {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--mid-grey);
  line-height: 1.45;
  max-width: 100%;
}

@media (min-width: 992px) {
  .split-media {
    min-height: 100%;
  }

  .split-figure {
    min-height: 320px;
  }
}

@media (max-width: 991px) {
  .split-grid {
    grid-template-columns: 1fr;
  }

  .split-grid--media-left .split-media {
    order: -1;
  }

  .split-content h2 {
    max-width: none;
  }

  .split-figure img {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }
}

/* ── PARTNER GRID — SaaS-style letterform ── */
.partner-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 52px;
}

.partner-section__label {
  display: block;
  width: 100%;
  max-width: none;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin: 0 auto 32px;
}

.partner-section .partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-grid__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-grid__item:hover {
  border-color: rgba(232, 83, 10, 0.28);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.partner-grid__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.partner-grid__brand {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  white-space: nowrap;
}

.partner-grid__suffix {
  white-space: nowrap;
}

.lf-blue { color: #1a73e8; }
.lf-red { color: #ea4335; }
.lf-yellow { color: #fbbc05; }
.lf-green { color: #34a853; }
.lf-orange { color: var(--accent); }
.lf-navy { color: #003087; }
.lf-teal { color: #00b5ad; }
.lf-dark { color: var(--off-black); }
.lf-black { color: #000000; }
.lf-pink { color: #e1306c; }

/* ── CONTENT SECTIONS ── */
.section-padded {
  padding: 72px 0;
}

.section-surface {
  background-color: var(--surface);
}

.section-dark {
  background-color: var(--off-black);
  color: var(--white);
}

.section-heading {
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.0625rem;
  color: var(--mid-grey);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── PROBLEM / STAKES ── */
.problem-section {
  padding: clamp(48px, 6vw, 72px) 0;
}

.problem-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.problem-split__media {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.problem-split__figure {
  flex: 1 1 auto;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  min-height: 0;
}

.problem-split__figure img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.problem-split__caption {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--mid-grey);
  line-height: 1.45;
  max-width: 100%;
}

.problem-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.problem-split__copy .section-heading {
  margin-bottom: 16px;
}

.problem-split__copy .section-subheading {
  margin-bottom: 0;
  max-width: 100%;
}

@media (min-width: 992px) {
  .problem-split__media {
    min-height: 100%;
  }

  .problem-split__figure {
    min-height: 320px;
  }
}

@media (max-width: 991px) {
  .problem-split {
    grid-template-columns: 1fr;
  }

  .problem-split__figure img {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}

.problem-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--mid-grey);
  max-width: 100%;
}

/* ── PRACTITIONER EDUCATION MODULE ── */
.edu-module {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: clamp(40px, 5vw, 64px) 0;
  margin: 0;
}

.edu-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.edu-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.edu-split__media {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.edu-split__figure {
  flex: 1 1 auto;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  min-height: 0;
}

.edu-split__figure img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.edu-split__caption {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--mid-grey);
  line-height: 1.45;
  max-width: 100%;
}

@media (min-width: 992px) {
  .edu-split__media {
    min-height: 100%;
  }

  .edu-split__figure {
    min-height: 320px;
  }
}

@media (max-width: 991px) {
  .edu-split {
    grid-template-columns: 1fr;
  }

  .edu-split__figure img {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }
}

.edu-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.edu-module h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  margin-bottom: 20px;
}

.edu-split__copy > p {
  font-size: 0.9375rem;
  margin-bottom: 16px;
  color: var(--off-black);
  max-width: 100%;
}

.edu-module ol {
  list-style: none;
  counter-reset: edu-counter;
  margin-top: 20px;
}

.edu-module ol li {
  counter-increment: edu-counter;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.edu-counter {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 28px;
  padding-top: 3px;
}

.edu-tip-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.edu-tip-body p {
  font-size: 0.9375rem;
  color: var(--mid-grey);
  margin-bottom: 0;
}

/* ── PROCESS ── */
.process-steps {
  margin-top: 48px;
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step-number {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--mid-grey);
  max-width: 100%;
}

/* ── SERVICES GRID ── */
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.services-section .service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  background-color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-section .service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.services-section .service-card-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(232, 83, 10, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.services-section .service-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.services-section .service-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.services-section .service-card p {
  font-size: 0.9375rem;
  color: var(--mid-grey);
  max-width: 100%;
}

/* ── MID-PAGE CTA BANDS ── */
.cta-band {
  padding: clamp(48px, 6vw, 64px) 0;
  background: var(--off-black);
  text-align: center;
}

.cta-band--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.cta-band__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-band h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.cta-band--surface h2 {
  color: var(--off-black);
}

.cta-band p {
  font-size: 1.0625rem;
  margin: 0 auto 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band--surface p {
  color: var(--mid-grey);
}

/* ── WHY / SPLIT CTA ── */
.why-section {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--white);
}

.why-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.why-split__media {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.why-split__figure {
  flex: 1 1 auto;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  min-height: 0;
}

.why-split__figure img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.why-split__caption {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--mid-grey);
  line-height: 1.45;
  max-width: 100%;
}

.why-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.why-split__copy h2 {
  margin-bottom: 16px;
}

.why-split__copy p {
  font-size: 1.0625rem;
  color: var(--mid-grey);
  margin-bottom: 28px;
  max-width: 100%;
}

.why-split__copy .split-cta {
  margin-top: 0;
}

@media (min-width: 992px) {
  .why-split__media {
    min-height: 100%;
  }

  .why-split__figure {
    min-height: 320px;
  }
}

@media (max-width: 991px) {
  .why-split {
    grid-template-columns: 1fr;
  }

  .why-split__figure img {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }
}

/* ── COMPARISON TABLE ── */
.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table caption {
  caption-side: top;
  font-size: 0.875rem;
  color: var(--mid-grey);
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background-color: var(--surface);
  font-weight: 700;
  font-size: 0.875rem;
}

.comparison-table .col-leadgulls {
  background-color: rgba(232, 83, 10, 0.04);
}

.comparison-table thead .col-leadgulls {
  color: var(--accent);
}

.comparison-table tbody tr:last-child td,
.comparison-table tbody tr:last-child th {
  border-bottom: 0;
}

.comparison-table tbody th {
  font-weight: 600;
  color: var(--off-black);
}

.check {
  color: #16a34a;
  font-weight: 700;
}

.cross {
  color: #dc2626;
  font-weight: 700;
}

.partial {
  color: var(--mid-grey);
}

/* ── FAQ ── */
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--off-black);
  list-style: none;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--mid-grey);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 22px;
  font-size: 0.9375rem;
  color: var(--mid-grey);
  max-width: 72ch;
  line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
  background-color: var(--accent);
  padding: 64px 0;
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin: 0 auto 32px;
  max-width: 540px;
}

.btn-white {
  background-color: var(--white);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* ── RELATED PAGES ── */
.related-pages {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.related-pages h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 20px;
}

.related-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.related-pills li a {
  display: block;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--off-black);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.related-pills li a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── CLOSING CTA ── */
.closing-cta {
  padding: 80px 0;
  background-color: var(--surface);
}

.closing-cta-inner {
  max-width: 680px;
}

.closing-cta h2 {
  margin-bottom: 20px;
}

.closing-cta p {
  font-size: 1.0625rem;
  color: var(--mid-grey);
  margin-bottom: 36px;
  max-width: 100%;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-primary-dark {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-primary-dark:hover {
  background-color: var(--accent-dark);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
}

.contact-detail a {
  color: var(--off-black);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
  background-color: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo-wordmark {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-nap {
  margin-top: 20px;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.8;
}

.footer-nap a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-nap a:hover {
  color: var(--white);
}

.footer-col h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: none;
}

/* ── STICKY MOBILE BAR ── */
.sticky-mobile-bar {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .services-section .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .stucco-hero .wd-hero-split {
    grid-template-columns: 1fr;
  }

  .stucco-hero .wd-hero-split .cms2026-hero-figure {
    min-height: clamp(260px, 52vw, 380px);
  }

  .stucco-hero .wd-hero-meta {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(20, 18, 14, 0.07);
  }

  .stucco-hero .wd-hero-meta .cms2026-author {
    width: 100%;
    flex: 0 0 auto;
    gap: 8px;
  }

  .stucco-hero .wd-hero-meta .cms2026-hero-trust {
    width: 100%;
    flex: 0 0 auto;
    padding-left: 0;
    padding-top: 10px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 767px) {
  .stucco-hero .wd-hero-meta {
    padding: 10px 12px;
    gap: 0;
    background: #fff;
    box-shadow:
      0 1px 2px rgba(20, 18, 14, 0.04),
      0 6px 20px rgba(20, 18, 14, 0.06);
  }

  .stucco-hero .wd-hero-meta .cms2026-author {
    align-items: center;
    gap: 10px;
  }

  .stucco-hero .wd-hero-meta .cms2026-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.6875rem;
  }

  .stucco-hero .wd-hero-meta .cms2026-author-meta {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .stucco-hero .wd-hero-meta .cms2026-author-meta strong {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .stucco-hero .wd-hero-meta .cms2026-hero-trust {
    margin-top: 8px;
    padding: 8px 0 0 44px;
    border-top: none;
    font-size: 0.6875rem;
    line-height: 1.4;
    gap: 3px 5px;
  }

  .stucco-hero .wd-hero-meta .cms2026-hero-trust .stars {
    font-size: 0.625rem;
    letter-spacing: 0;
  }

  .section-padded {
    padding: 52px 0;
  }

  .partner-section .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 0.875rem;
  }

  .sticky-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background-color: var(--off-black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    gap: 12px;
  }

  .sticky-mobile-bar a {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sticky-call {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .sticky-audit {
    background-color: var(--accent);
    color: var(--white);
  }
}

@media (max-width: 480px) {
  .partner-section .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .partner-grid__item {
    padding: 14px 10px;
    min-height: 60px;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
