/* ──────────────────────────────────────────────────────────────────────────
   City-Service Page styles
   Extends /styles.css (homepage). Loaded after styles.css.
   ────────────────────────────────────────────────────────────────────────── */

/* ─── Hero ─── */
.csp-hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(60px, 8vh, 96px);
  background: var(--surface);
  overflow: hidden;
}

.csp-hero::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -180px;
  width: 720px;
  height: 720px;
  background: var(--ink);
  opacity: 0.05;
  -webkit-mask: url("/assets/outgrow-o-mark.svg?v=4") center / contain no-repeat;
          mask: url("/assets/outgrow-o-mark.svg?v=4") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

.csp-hero-inner {
  position: relative;
  width: min(100%, 880px);
  margin: 0 auto;
  z-index: 1;
}

.csp-hero .breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.csp-hero .breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-ui);
}

.csp-hero .breadcrumb a:hover {
  border-color: var(--ink);
}

.csp-hero .breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.csp-hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
  font-weight: 500;
}

.csp-hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
}

/* New 2026-06-05: hero subhead carries the brand positioning (Sites + Google
   Ads ensemble), template-level so every page makes the differentiator clear
   above the fold. The per-city hero_intro paragraph comes after. */
.csp-hero-subhead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  margin: 8px 0 18px;
  max-width: 720px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.csp-hero-subhead strong {
  font-weight: 700;
}

.csp-hero-intro {
  font-size: clamp(16px, 1.25vw, 17px);
  line-height: 1.55;
  color: rgb(1 1 1 / 0.7);
  margin: 0 0 36px;
  max-width: 720px;
}

.csp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Lead form band ─── */
.csp-lead-band {
  background: var(--surface);
  padding: clamp(40px, 6vh, 72px) var(--gutter) clamp(56px, 8vh, 88px);
}

.csp-lead-band-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  box-shadow: 0 30px 80px rgb(1 1 1 / 0.06);
  border: 1px solid var(--line);
}

@media (min-width: 880px) {
  .csp-lead-band-inner {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
  }
}

.csp-lead-copy .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 500;
}

.csp-lead-copy h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}

.csp-lead-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(1 1 1 / 0.74);
  margin: 0 0 18px;
}

.csp-lead-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.csp-lead-bullets li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  padding: 8px 0 8px 24px;
  position: relative;
}

.csp-lead-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

/* ─── Form ─── */
.csp-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.csp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.csp-field > span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.csp-field input,
.csp-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #fafaf8;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s var(--ease-ui), background 0.2s var(--ease-ui), box-shadow 0.2s var(--ease-ui);
}

.csp-field input:focus,
.csp-field textarea:focus {
  border-color: var(--ink);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgb(1 1 1 / 0.06);
}

.csp-field input.field-error,
.csp-field textarea.field-error {
  border-color: #b91c1c;
  background: #fef2f2;
}

.csp-field textarea {
  resize: vertical;
  min-height: 88px;
}

.csp-lead-form .hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.csp-lead-form button[type="submit"] {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
}

.csp-lead-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 13px;
  margin: 4px 0 0;
  color: var(--muted);
  min-height: 18px;
}

.form-status.error {
  color: #b91c1c;
}

.csp-form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 8px 0 0;
}

/* ─── Trust strip ─── */
.csp-trust {
  background: var(--surface);
  padding: 0 var(--gutter) clamp(48px, 6vh, 72px);
}

.csp-trust-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.csp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.csp-trust-badge svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ─── Body article ─── */
.csp-body {
  background: var(--surface);
  padding: clamp(48px, 8vh, 96px) var(--gutter);
}

.csp-body-inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.csp-body section {
  margin-bottom: clamp(40px, 6vh, 72px);
}

.csp-body section:last-of-type {
  margin-bottom: 0;
}

.csp-body h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}

.csp-body h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin: 32px 0 12px;
  color: var(--ink);
}

.csp-body p {
  font-size: 17px;
  line-height: 1.65;
  color: rgb(1 1 1 / 0.82);
  margin: 0 0 18px;
}

.csp-body p:last-child {
  margin-bottom: 0;
}

.csp-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.csp-body ul li {
  font-size: 17px;
  line-height: 1.6;
  color: rgb(1 1 1 / 0.82);
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.csp-body ul li:first-child {
  border-top: 1px solid var(--line);
}

.csp-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 1px;
  background: var(--ink);
}

.csp-body ul li strong {
  color: var(--ink);
  font-weight: 600;
}

.csp-body a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: opacity 0.2s var(--ease-ui);
}

.csp-body a:hover {
  opacity: 0.6;
}

.csp-body strong {
  font-weight: 600;
  color: var(--ink);
}

.csp-body em {
  font-style: italic;
}

/* ─── FAQ ─── */
.csp-body details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  margin: 0;
  transition: background 0.3s var(--ease-ui);
}

.csp-body details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.csp-body details summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  padding-right: 40px;
  position: relative;
  outline: none;
}

.csp-body details summary::-webkit-details-marker {
  display: none;
}

.csp-body details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s var(--ease-ui);
  line-height: 1;
}

.csp-body details[open] summary::after {
  content: "−";
}

.csp-body details > p {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(1 1 1 / 0.75);
}

/* ─── Nearby cities band ─── */
.csp-nearby {
  background: var(--panel);
  padding: clamp(56px, 8vh, 88px) var(--gutter);
}

.csp-nearby-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  text-align: center;
}

.csp-nearby .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}

.csp-nearby h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--ink);
}

.csp-nearby-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.csp-nearby-list li a {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  transition: background 0.25s var(--ease-ui), color 0.25s var(--ease-ui);
}

.csp-nearby-list li a:hover {
  background: var(--ink);
  color: var(--surface);
}

.csp-nearby-list li.plain {
  padding: 10px 22px;
  font-size: 14px;
  color: var(--muted);
}

/* ─── Final CTA ─── */
.csp-final-cta {
  padding: clamp(72px, 12vh, 120px) var(--gutter);
  background: var(--ink);
  color: var(--surface);
}

.csp-final-cta-inner {
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
}

.csp-final-cta .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(249 247 244 / 0.6);
  margin: 0 0 24px;
  font-weight: 500;
}

.csp-final-cta h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.csp-final-cta p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgb(249 247 244 / 0.78);
  margin: 0 0 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.csp-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.csp-final-cta .button-dark {
  background: var(--surface);
  color: var(--ink);
}

.csp-final-cta .button-dark:hover {
  background: rgb(249 247 244 / 0.88);
}

.csp-final-cta .button-ghost {
  color: var(--surface);
  border-color: rgb(249 247 244 / 0.4);
}

.csp-final-cta .button-ghost:hover {
  background: rgb(249 247 244 / 0.08);
  border-color: var(--surface);
}

/* ──────────────────────────────────────────────────────────────────────────
   Visual sales modules (after body article)
   ────────────────────────────────────────────────────────────────────────── */

.csp-section-heading {
  width: min(100%, 720px);
  margin: 0 auto clamp(48px, 6vh, 64px);
  text-align: center;
}

.csp-section-heading .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}

.csp-section-heading h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

.csp-section-heading p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ─── Stats band ─── */
.csp-stats {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(56px, 8vh, 84px) var(--gutter);
}

.csp-stats-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.csp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}

@media (min-width: 720px) {
  .csp-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.csp-stats-grid article {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-ui), transform 0.6s var(--ease-ui);
}

.csp-stats-grid.is-stagger-active article,
.csp-stats-grid article.is-stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

.csp-stats-grid article strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--surface);
}

.csp-stats-grid article span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(249 247 244 / 0.65);
  font-weight: 500;
}

/* ─── Pricing cards ─── */
.csp-pricing {
  background: var(--surface);
  padding: clamp(72px, 10vh, 120px) var(--gutter);
}

.csp-pricing-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.csp-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 880px) {
  .csp-plans {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.csp-plan {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgb(1 1 1 / 0.04);
  transition: transform 0.3s var(--ease-ui), box-shadow 0.3s var(--ease-ui), border-color 0.3s var(--ease-ui);
}

.csp-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgb(1 1 1 / 0.08);
  border-color: rgb(1 1 1 / 0.2);
}

.csp-plan-featured {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.csp-plan-featured h3,
.csp-plan-featured .csp-plan-price,
.csp-plan-featured .csp-plan-blurb,
.csp-plan-featured .csp-plan-bullets li {
  color: var(--surface);
}

.csp-plan .pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.csp-plan-featured .pill {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

.csp-plan .plan-ring {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.25;
}

.csp-plan h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.csp-plan-blurb {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.csp-plan-featured .csp-plan-blurb {
  color: rgb(249 247 244 / 0.7);
}

.csp-plan-price {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 4px 0;
}

.csp-plan-price span {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.csp-plan-featured .csp-plan-price span {
  color: rgb(249 247 244 / 0.65);
}

.csp-plan-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 20px;
  flex: 1;
}

.csp-plan-bullets li {
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0 8px 22px;
  position: relative;
  color: rgb(1 1 1 / 0.78);
}

.csp-plan-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: 600;
  font-size: 13px;
}

.csp-plan-featured .csp-plan-bullets li {
  color: rgb(249 247 244 / 0.8);
}

.csp-plan-cta {
  width: 100%;
  justify-content: center;
}

.csp-plan-featured .csp-plan-cta {
  background: var(--surface);
  color: var(--ink);
}

.csp-plan-featured .csp-plan-cta:hover {
  background: rgb(249 247 244 / 0.88);
}

/* ─── Process steps ─── */
.csp-process {
  background: var(--panel);
  padding: clamp(72px, 10vh, 120px) var(--gutter);
}

.csp-process-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.csp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 720px) {
  .csp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .csp-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.csp-step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease-ui), box-shadow 0.3s var(--ease-ui);
}

.csp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgb(1 1 1 / 0.06);
}

.csp-step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.csp-step-num {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.csp-step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
  opacity: 0.65;
}

.csp-step h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.csp-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ─── Industries grid ─── */
.csp-industries {
  background: var(--surface);
  padding: clamp(72px, 10vh, 120px) var(--gutter);
}

.csp-industries-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.csp-industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .csp-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .csp-industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.csp-industry {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease-ui), box-shadow 0.3s var(--ease-ui);
}

.csp-industry:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgb(1 1 1 / 0.06);
}

.csp-industry-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.csp-industry-index {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.csp-industry-icon svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
  opacity: 0.65;
}

.csp-industry h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 8px 0 0;
  color: var(--ink);
}

.csp-industry p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ─── Animations: CSS keyframes (no JS dependency, fail-safe visible) ─── */
@keyframes csp-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.csp-plan,
.csp-industry,
.csp-step,
.csp-stats-grid > article {
  animation: csp-fade-up 0.5s var(--ease-ui) both;
}

/* Subtle stagger per row, no JS required */
.csp-plans > .csp-plan:nth-child(2)             { animation-delay: 70ms; }
.csp-plans > .csp-plan:nth-child(3)             { animation-delay: 140ms; }
.csp-steps > .csp-step:nth-child(2)             { animation-delay: 70ms; }
.csp-steps > .csp-step:nth-child(3)             { animation-delay: 140ms; }
.csp-steps > .csp-step:nth-child(4)             { animation-delay: 210ms; }
.csp-industry-grid > .csp-industry:nth-child(2) { animation-delay: 60ms; }
.csp-industry-grid > .csp-industry:nth-child(3) { animation-delay: 120ms; }
.csp-industry-grid > .csp-industry:nth-child(4) { animation-delay: 180ms; }
.csp-industry-grid > .csp-industry:nth-child(5) { animation-delay: 240ms; }
.csp-industry-grid > .csp-industry:nth-child(6) { animation-delay: 300ms; }
.csp-stats-grid > article:nth-child(2)          { animation-delay: 80ms; }
.csp-stats-grid > article:nth-child(3)          { animation-delay: 160ms; }
.csp-stats-grid > article:nth-child(4)          { animation-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .csp-plan,
  .csp-industry,
  .csp-step,
  .csp-stats-grid > article {
    animation: none;
  }
}

/* ─── Mobile tweaks ─── */
@media (max-width: 640px) {
  .csp-hero {
    padding-top: 100px;
  }
  .csp-hero h1 {
    font-size: 36px;
  }
  .csp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .csp-hero-actions .button {
    width: 100%;
    justify-content: center;
  }
  .csp-body ul li {
    padding-left: 22px;
  }
  .csp-body details summary {
    font-size: 16px;
  }
}

/* ─── Case study (A81 Dent Repair) ─── */
.csp-case-study {
  background: var(--surface);
  padding: clamp(72px, 10vh, 120px) var(--gutter);
}
.csp-case-study .csp-section-heading h2 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.case-study {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(40px, 3.6vw, 64px) clamp(28px, 2.8vw, 52px);
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 26px 90px rgb(1 1 1 / 0.06);
  position: relative;
}
.case-study::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--ink);
  border-radius: 0 0 3px 3px;
}

.case-study-header {
  text-align: center;
  margin-bottom: clamp(28px, 2.4vw, 40px);
  padding-bottom: clamp(22px, 2vw, 32px);
  border-bottom: 1px solid var(--line);
}
.case-study-header h3 {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 42px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
}
.case-study-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(13px, .9vw, 15px);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.case-study-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 2.8vw, 52px);
  align-items: start;
}
.case-study-text p {
  margin: 0 0 14px;
  color: var(--ink);
  opacity: .78;
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.65;
}
.case-study-text p strong { opacity: 1; font-weight: 700; }
.case-study-text p.case-study-after { margin-top: 22px; opacity: 1; font-weight: 600; }

.case-study-results {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.case-study-results li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}
.case-study-results li strong { font-weight: 700; }
.case-study-results .check {
  color: var(--ink);
  font-weight: 800;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--ink);
  font-size: 12px;
  line-height: 1;
}

.case-study-visual { margin: 0; }
.case-study-visual figcaption,
.proof-img figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.case-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgb(1 1 1 / 0.06);
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-img--landing { aspect-ratio: 16 / 7.5; }
.case-img--ads { aspect-ratio: 1600 / 573; }
.case-img--gmb { aspect-ratio: 1 / 1; }

.case-study-stats {
  margin-top: clamp(36px, 3vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 18px);
}
.stat-tile {
  padding: clamp(22px, 1.8vw, 32px) clamp(14px, 1.3vw, 20px);
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}
.stat-tile-value {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.stat-tile-label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.case-study-proof {
  margin-top: clamp(36px, 3vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(22px, 1.8vw, 32px);
  align-items: start;
}
.proof-img { margin: 0; }

.case-study-testimonial {
  margin-top: clamp(36px, 3vw, 56px);
  padding: clamp(26px, 2.4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(22px, 2vw, 36px);
  align-items: center;
}
.case-study-testimonial .testimonial-photo {
  width: clamp(76px, 5.6vw, 104px);
  height: clamp(76px, 5.6vw, 104px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.case-study-testimonial .testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-study-testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
}
.case-study-testimonial blockquote p { margin: 0; }
.case-study-testimonial cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}
.case-study-testimonial cite strong {
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.005em;
}

@media (max-width: 760px) {
  .case-study-body { grid-template-columns: 1fr; }
  .case-study-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-study-proof { grid-template-columns: 1fr; }
  .case-study-testimonial { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .case-study-testimonial blockquote { text-align: left; }
}

/* ─── Google Ads cross-sell band ─── */
.csp-crosssell {
  background: var(--panel);
  padding: clamp(64px, 9vh, 104px) var(--gutter);
}
.csp-crosssell-inner {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}
.csp-crosssell .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.csp-crosssell h2 {
  margin: 12px 0 16px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.csp-crosssell h2 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.csp-crosssell p {
  margin: 0 auto 28px;
  max-width: 620px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}

/* ─── Comparison table (Outgrow vs alternatives) ─── */
.csp-compare {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(72px, 10vh, 120px) var(--gutter);
}
.csp-compare-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}
.csp-compare .csp-section-heading h2 { color: var(--surface); }
.csp-compare .csp-section-heading .eyebrow { color: rgb(249 247 244 / 0.55); }
.csp-compare .csp-section-heading p:not(.eyebrow) { color: rgb(249 247 244 / 0.7); }
.csp-compare .csp-section-heading h2 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.csp-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  border: 1px solid rgb(249 247 244 / 0.14);
}
.csp-compare-table {
  min-width: 720px;
}
.csp-compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1fr 1fr;
}
.csp-compare-row > span {
  padding: clamp(14px, 1.6vw, 20px) clamp(12px, 1.4vw, 22px);
  border-bottom: 1px solid rgb(249 247 244 / 0.1);
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  color: rgb(249 247 244 / 0.62);
}
.csp-compare-row:last-child > span { border-bottom: none; }
.csp-compare-row > span:first-child {
  font-weight: 600;
  color: var(--surface);
}
.csp-compare-head > span {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(249 247 244 / 0.5);
}
/* Outgrow column (2nd) highlighted as a continuous band */
.csp-compare-row > span:nth-child(2) {
  background: rgb(249 247 244 / 0.07);
  color: var(--surface);
  font-weight: 600;
}
.csp-compare-head > span:nth-child(2) {
  background: rgb(249 247 244 / 0.12);
  color: var(--surface);
}

/* ─── Industries section link to homepage #secteurs ─── */
.csp-industries-foot {
  margin-top: clamp(28px, 3vw, 40px);
  text-align: center;
}
.csp-industries-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: gap .2s var(--ease-ui), border-color .2s var(--ease-ui);
}
.csp-industries-link:hover {
  gap: 12px;
  border-color: var(--ink);
}

/* ─── Local client testimonial (Christian B.) ─── */
.csp-testimonial {
  background: var(--surface);
  padding: clamp(72px, 10vh, 120px) var(--gutter);
}
.csp-testimonial-inner {
  width: min(100%, 820px);
  margin: 0 auto;
}
.csp-testimonial .csp-section-heading h2 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.csp-testimonial-card {
  margin: 0;
  position: relative;
  padding: clamp(32px, 4vw, 52px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 26px 90px rgb(1 1 1 / 0.06);
}
.csp-testimonial-quote {
  position: absolute;
  top: clamp(4px, 1.5vw, 14px);
  left: clamp(20px, 2.5vw, 36px);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(80px, 9vw, 120px);
  line-height: 1;
  color: var(--ink);
  opacity: 0.1;
  pointer-events: none;
}
.csp-testimonial-card blockquote {
  margin: 0;
  position: relative;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.csp-testimonial-card blockquote p { margin: 0; }
.csp-testimonial-card figcaption {
  margin-top: clamp(24px, 2.4vw, 32px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.csp-testimonial-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.csp-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.csp-testimonial-author strong {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.csp-testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

/* ─── Site showcase (visual "we make websites" proof) ─── */
.csp-showcase {
  background: var(--surface);
  padding: clamp(56px, 8vh, 96px) var(--gutter);
}
.csp-showcase-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}
.csp-showcase-heading {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.csp-showcase-heading h2 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.csp-showcase-frame {
  margin: 0 auto;
  width: 100%;
  max-width: 1040px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgb(1 1 1 / 0.18), 0 4px 12px rgb(1 1 1 / 0.06);
  background: var(--panel);
  border: 1px solid var(--line);
}
.csp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #f1ece5, #e6ded3);
  border-bottom: 1px solid var(--line);
}
.csp-browser-bar > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgb(1 1 1 / 0.18);
  flex-shrink: 0;
}
.csp-browser-bar > span:nth-child(1) { background: #ec6a5e; }
.csp-browser-bar > span:nth-child(2) { background: #f4bf4f; }
.csp-browser-bar > span:nth-child(3) { background: #61c554; }
.csp-browser-bar em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  margin-left: 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  letter-spacing: 0.01em;
}
.csp-showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.csp-showcase-caption {
  margin: clamp(20px, 2vw, 28px) auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.csp-showcase-caption a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  margin-left: 4px;
}
.csp-showcase-caption a:hover { border-color: var(--ink); }

/* ─── Mobile sticky bottom CTA ─── */
.csp-mobile-cta {
  display: none;
}
@media (max-width: 760px) {
  .csp-mobile-cta {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--surface);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.005em;
    border-radius: 999px;
    box-shadow: 0 10px 32px rgb(1 1 1 / 0.28), 0 2px 6px rgb(1 1 1 / 0.18);
    z-index: 50;
    text-decoration: none;
  }
  /* Avoid the final CTA / footer being hidden behind the sticky bar */
  body { padding-bottom: 80px; }
}
