/* ============================================
   LAYOUT — Sections, page structure, spacing
   ============================================ */

main {
  display: block;
  overflow-x: hidden;
  width: 100%;
}

/* Global mobile overflow fix */
* {
  max-width: 100%;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  width: 100%;
}

section {
  position: relative;
}

.section-content {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: var(--space-7) var(--space-2);
}

.section-wide {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-7) var(--space-2);
}

/* ============================================
   PRICING PAGE
   ============================================ */
/* ============================================
   PRICING QUIZ
   ============================================ */
.quiz-page {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-2);
}

.quiz-intro {
  text-align: center;
  margin-bottom: var(--space-7);
}

.quiz-intro-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.quiz-intro-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 var(--space-3);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-intro-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.quiz-container {
  max-width: 580px;
  margin: 0 auto;
  min-height: 400px;
}

.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-5);
}

.quiz-dot {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  transition: background 0.3s ease;
}

.quiz-dot.active {
  background: var(--color-text);
}

.quiz-step {
  animation: quiz-fade-in 0.4s ease;
}

@keyframes quiz-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.quiz-question {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-option {
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: #ffffff;
  cursor: pointer;
  font-size: 15px;
  color: var(--color-text);
  text-align: left;
  font-family: var(--font-sans);
  transition: border-color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
  line-height: 1.4;
}

.quiz-option:hover {
  border-color: var(--color-text);
  padding-left: 26px;
}

/* Result */
.quiz-result-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 var(--space-3);
}

.quiz-result-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 var(--space-5);
  max-width: 520px;
}

/* Form inside result */
.quiz-form-wrap {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
  margin-bottom: var(--space-4);
}

.quiz-form-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.quiz-form-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 6px;
}

.quiz-form-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-3);
}

.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.quiz-form-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 400;
}

.quiz-form-field input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}

.quiz-form-field input:focus {
  outline: none;
  border-color: var(--color-text);
}

.quiz-form-submit {
  margin-top: 8px;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #171717;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.quiz-form-submit:hover {
  background: var(--color-accent);
}

.quiz-restart {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

.quiz-restart:hover {
  color: var(--color-text);
}

/* Testimonial — proof beat between diagnosis and form */
.quiz-testimonial {
  margin: 0 0 var(--space-5);
  max-width: 520px;
}

.quiz-testimonial-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin: 0 0 var(--space-2);
}

.quiz-testimonial-quote {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0 0 var(--space-2);
  padding: 0;
  font-style: normal;
  font-weight: 400;
}

.quiz-testimonial-quote::before {
  content: "\201C";
  margin-right: 2px;
}

.quiz-testimonial-quote::after {
  content: "\201D";
  margin-left: 2px;
}

.quiz-testimonial-author {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .quiz-page {
    padding: var(--space-5) var(--space-2);
  }

  .quiz-intro-title {
    font-size: 24px;
  }

  .quiz-question {
    font-size: 22px;
  }

  .quiz-result-title {
    font-size: 26px;
  }

  .quiz-form-title {
    font-size: 18px;
  }

  .quiz-option {
    padding: 16px 18px;
    font-size: 14px;
  }

  .quiz-testimonial-quote {
    font-size: 16px;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-2);
  align-items: center;
}

.about-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-split-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.about-text-statement {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.about-text-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
}

.about-journey {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-2) var(--space-7);
}

.about-journey-label {
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.about-journey-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-journey-row:last-child {
  border-bottom: none;
}

.about-journey-year {
  font-size: 11px;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.about-journey-text {
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   CONTACT MINIMAL — just the email, centered
   ============================================ */
.contact-minimal {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h, 55px) var(--space-3);
  text-align: center;
}

.contact-minimal-email {
  font-size: clamp(24px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

.contact-minimal-email:hover {
  color: var(--color-accent);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h, 55px) + var(--space-7)) var(--space-3) var(--space-7);
}

.contact-intro {
  margin-bottom: var(--space-6);
}

.contact-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin: 0 0 var(--space-3);
}

.contact-headline {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0 0 var(--space-3);
}

.contact-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 36ch;
  margin: 0;
}

.contact-details {
  margin-bottom: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.contact-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--color-text);
  transition: color var(--duration-fast) var(--ease);
  text-decoration: none;
}

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

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

.contact-detail-label {
  color: var(--color-text-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.contact-detail-value {
  color: var(--color-text);
  text-align: right;
  letter-spacing: -0.005em;
  transition: color var(--duration-fast) var(--ease);
}

.contact-apply-block {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--space-4);
}

.contact-apply-text {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--color-text);
  margin: 0;
}

.contact-apply-trigger {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease);
}

.contact-apply-trigger:hover {
  color: var(--color-accent);
}

/* ============================================
   CASES PAGE
   ============================================ */
.cases-page {
  max-width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h, 55px) + var(--space-4)) 0 var(--space-7);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 8px;
}

.cases-grid-hidden {
  display: none;
}

.case-item {
  display: flex;
  flex-direction: column;
}

.case-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.case-video video.thumb,
.case-video iframe.player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.case-video iframe.player {
  display: none;
  cursor: default;
}

.case-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 6px;
  padding: 0 4px;
  gap: var(--space-2);
}

.case-text-content {
  flex: 1;
}

.case-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-top: 2px;
}

.case-description {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

.case-date {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: right;
  white-space: nowrap;
}

.cases-more-wrap {
  text-align: center;
  padding: var(--space-5) 0 var(--space-3);
}

.cases-more-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-text);
  padding: 6px 0;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.cases-more-btn:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ============================================
   FOOTER — Editorial signature
   The logo is the focal element. Below it,
   an animated line ties the visual language
   to the rest of the site, then 3 quiet
   metadata columns.
   ============================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-3);
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-3);
}

.footer-legal a {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  transition: color var(--duration-fast) var(--ease);
}

.footer-legal a:hover {
  color: var(--color-text);
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-intro {
  max-width: 620px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-2) var(--space-5);
  text-align: center;
}

.collection-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.collection-intro-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.collection-intro-text:last-child {
  margin-bottom: 0;
}

.collection-carousel-wrap {
  position: relative;
  padding: var(--space-6) 0 var(--space-7);
  user-select: none;
  overflow: hidden;
}

.collection-carousel {
  position: relative;
  height: 720px;
  cursor: grab;
}

.collection-carousel:active {
  cursor: grabbing;
}

.collection-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

.collection-slide.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 10;
}

.collection-slide.pos-prev-1 {
  transform: translate(calc(-50% - 280px), -50%) scale(0.82);
  opacity: 0.55;
  z-index: 9;
}

.collection-slide.pos-next-1 {
  transform: translate(calc(-50% + 280px), -50%) scale(0.82);
  opacity: 0.55;
  z-index: 9;
}

.collection-slide.pos-prev-2 {
  transform: translate(calc(-50% - 380px), -50%) scale(0.68);
  opacity: 0.25;
  z-index: 8;
}

.collection-slide.pos-next-2 {
  transform: translate(calc(-50% + 380px), -50%) scale(0.68);
  opacity: 0.25;
  z-index: 8;
}

.collection-slide.pos-far {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.collection-slide:not(.active) {
  cursor: pointer;
}

.collection-video {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #000;
  overflow: hidden;
  margin-bottom: var(--space-3);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.collection-slide.active .collection-video {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.collection-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  border: none;
}

.collection-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
  padding-left: 4px;
}

.collection-play-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.05);
}

.collection-slide.active .collection-play-btn {
  display: flex;
}

.collection-text {
  padding: 0 4px;
  min-height: 80px;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.collection-slide.active .collection-text {
  opacity: 1;
}

.collection-quote {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 10px;
}

.collection-attribution {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.collection-progress {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-top: var(--space-3);
  font-variant-numeric: tabular-nums;
}

/* ============================================
   HOMEPAGE — Hero with overlay text
   ============================================ */
.hero {
  width: 100%;
  height: 72vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-desktop { display: block; }
.hero-mobile { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-3);
  z-index: 2;
  pointer-events: none;
}

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.hero-word {
  display: inline;
}

/* Client logos — JS-powered marquee */
.logos-section {
  padding: var(--space-6) var(--space-2) var(--space-6);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.logos-marquee {
  position: relative;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto var(--space-4);
  overflow: hidden;
  height: 60px;
}

.logos-marquee::before,
.logos-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.logos-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logos-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logos-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  will-change: transform;
}

.logos-track img {
  max-width: 100px;
  max-height: 40px;
  width: auto;
  height: auto;
  opacity: 0.65;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.logos-track img:hover {
  opacity: 1;
}

.logos-geo {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* Home cases grid — single column */
.home-cases {
  padding: 0 0 var(--space-6);
}

.home-cases-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-4);
}

.home-cases .cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 90px;
  max-width: 1400px;
  margin: 0 auto;
}

.home-cases-cta {
  text-align: center;
  padding: var(--space-5) 0 var(--space-2);
}

.home-cases-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.home-cases-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ============================================
   TERMS OF SERVICE PAGE
   ============================================ */
.terms-page {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-2);
}

.terms-header {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.terms-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.terms-headline {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.terms-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.terms-intro {
  margin-bottom: var(--space-6);
}

.terms-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
}

.terms-section {
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
}

.terms-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.terms-section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.terms-section-num {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 24px;
}

.terms-section-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.terms-section-body p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

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

.terms-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.terms-footer-text {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
}

.terms-footer-link {
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.terms-footer-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ============================================
   CONTACT MODAL
   ============================================ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}

.contact-modal.active {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.92);
  opacity: 0;
  animation: fade-in 0.3s ease forwards;
}

.contact-modal-content {
  position: relative;
  background: #ffffff;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: modal-in 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

@keyframes modal-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.contact-modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text);
}

.contact-modal-inner {
  padding: 48px 40px 40px;
}

.contact-modal-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.contact-modal-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--color-text);
}

.contact-modal-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: var(--space-4);
}

.contact-modal-form input,
.contact-modal-form textarea {
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  outline: none;
  border-bottom-color: var(--color-text);
}

.contact-modal-form textarea {
  resize: vertical;
  font-family: var(--font-sans);
  min-height: 80px;
}

.contact-modal-submit {
  margin-top: var(--space-3);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-text);
  border-radius: 0;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-modal-submit:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Hide modal on contact page */
body.contact-page-active .contact-modal {
  display: none;
}

/* ============================================
   APPLY FORM — Qualifying fields
   ============================================ */
.contact-modal-form .form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-modal-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-modal-form .form-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-light);
  font-weight: 400;
}

.contact-modal-form select {
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
}

.contact-modal-form select:focus {
  outline: none;
  border-bottom-color: var(--color-text);
}

.contact-modal-form textarea {
  font-size: 15px;
  min-height: 80px;
}

.contact-modal-form textarea::placeholder,
.contact-modal-form input::placeholder {
  color: var(--color-text-light);
  font-size: 14px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-page {
  max-width: 620px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-2);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-inner {
  width: 100%;
  text-align: left;
}

.thank-you-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.thank-you-headline {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.thank-you-body {
  margin-bottom: var(--space-4);
}

.thank-you-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

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

.thank-you-signature {
  font-size: 16px;
  font-style: italic;
  color: var(--color-text);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--space-5);
}

.thank-you-divider {
  width: 40px;
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-4);
}

.thank-you-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.thank-you-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ============================================
   FOOTER SPACING
   ============================================ */
#footer {
  margin-top: var(--space-6);
}

/* ============================================
   MOBILE RESPONSIVE — All overrides in one place
   ============================================ */
@media (max-width: 768px) {

  /* Force all containers to viewport width */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  body * {
    max-width: 100vw;
  }

  .logos-marquee {
    max-width: 100vw !important;
    width: 100% !important;
  }

  /* General page paddings */
  .section-content,
  .section-wide,
  .pricing-page {
    padding: var(--space-5) var(--space-2);
  }

  .contact-page {
    padding: calc(var(--nav-h, 55px) + var(--space-5)) var(--space-2) var(--space-5);
  }

  .contact-detail-row {
    padding: 18px 0;
    font-size: 17px;
  }

  .contact-apply-block {
    flex-direction: column;
    gap: var(--space-2);
    align-items: flex-start;
  }

  /* Prevent any element from breaking viewport */
  .about-split,
  .footer-inner,
  .cases-grid,
  .home-cases .cases-grid {
    max-width: 100%;
  }

  /* Pricing mobile */
  .pricing-headline-line {
    font-size: 22px;
  }

  .pricing-cta-heading {
    font-size: 16px;
  }

  /* About mobile */
  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-2);
  }

  .about-split-image img {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-text-statement {
    font-size: 22px;
  }

  .about-journey {
    padding: var(--space-4) var(--space-2);
  }

  .about-journey-row {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  /* Contact mobile */
  .contact-headline {
    font-size: 22px;
  }

  .contact-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .contact-detail-value {
    text-align: left;
  }

  /* Cases mobile */
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Collection mobile */
  .collection-intro {
    padding: var(--space-5) var(--space-2) var(--space-3);
  }

  .collection-carousel {
    height: 580px;
  }

  .collection-slide {
    width: 300px;
  }

  .collection-slide.pos-prev-1 {
    transform: translate(calc(-50% - 180px), -50%) scale(0.82);
  }

  .collection-slide.pos-next-1 {
    transform: translate(calc(-50% + 180px), -50%) scale(0.82);
  }

  .collection-slide.pos-prev-2 {
    transform: translate(calc(-50% - 240px), -50%) scale(0.68);
  }

  .collection-slide.pos-next-2 {
    transform: translate(calc(-50% + 240px), -50%) scale(0.68);
  }

  .collection-play-btn {
    width: 56px;
    height: 56px;
  }

  .collection-quote {
    font-size: 14px;
  }

  /* Homepage hero/logos mobile */
  .hero-desktop { display: none; }
  .hero-mobile { display: block; }

  .hero-overlay {
    padding: 0 var(--space-2);
  }

  .hero-headline {
    font-size: clamp(20px, 6vw, 32px);
  }

  .logos-section {
    overflow: hidden;
  }

  .logos-marquee {
    height: 50px;
  }

  .logos-marquee::before,
  .logos-marquee::after {
    width: 60px;
  }

  .logos-track {
    gap: 50px;
  }

  .logos-track img {
    max-width: 70px;
    max-height: 30px;
  }

  .home-cases .cases-grid {
    gap: 40px;
  }

  /* Footer mobile */
  .site-footer {
    padding: var(--space-3) var(--space-2);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  /* Terms mobile */
  .terms-page {
    padding: var(--space-5) var(--space-2);
  }

  .terms-headline {
    font-size: 22px;
  }

  .terms-section-title {
    font-size: 16px;
  }

  /* Modal mobile — bottom sheet style */
  .contact-modal {
    padding: var(--space-2);
    align-items: flex-end;
  }

  .contact-modal-content {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px 8px 0 0;
  }

  .contact-modal-inner {
    padding: 36px 24px 28px;
  }

  .contact-modal-title {
    font-size: 22px;
  }

  .contact-modal-eyebrow {
    margin-bottom: 8px;
  }

  .contact-modal-sub {
    margin-bottom: var(--space-3);
  }

  .contact-modal-form .form-row-double {
    grid-template-columns: 1fr;
  }

  /* Thank you mobile */
  .thank-you-headline {
    font-size: 28px;
  }
}

/* ============================================
   PRICING — Statement
   ============================================ */
/* ============================================
   PRICING — Statement
   ============================================ */
.pricing-statement {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-2) var(--space-6);
  text-align: center;
}

.pricing-statement-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.pricing-statement-headline {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
}

.pricing-statement-body {
  max-width: 520px;
  margin: 0 auto;
}

.pricing-statement-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 var(--space-2);
}

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

/* ============================================
   PROJECT ARC — Process timeline (subtle animated line)
   Used on the About page to show how a project moves.
   ============================================ */
.project-arc {
  padding: var(--space-7) 0;
}

.project-arc-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.project-arc-intro {
  text-align: center;
  margin-bottom: var(--space-4);
}

.project-arc-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.project-arc-headline {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0;
  text-wrap: balance;
}

.project-arc-timeline {
  padding: var(--space-5) 0;
  max-width: 640px;
  margin: 0 auto;
}

.project-arc-track {
  position: relative;
  height: 1px;
  background: transparent;
  width: 100%;
  overflow: visible;
}

.project-arc-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--color-text) 18%,
    var(--color-text) 82%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform, opacity;
  animation: project-arc-line-fill 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes project-arc-line-fill {
  0%   { transform: scaleX(0); opacity: 1; }
  6%   { transform: scaleX(0); opacity: 1; }
  72%  { transform: scaleX(1); opacity: 1; }
  84%  { transform: scaleX(1); opacity: 1; }
  93%  { transform: scaleX(1); opacity: 0; }
  99%  { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(0); opacity: 1; }
}

.project-arc-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-3);
}

.project-arc-label {
  flex: 1;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.project-arc-label:first-child { text-align: left; }
.project-arc-label:last-child { text-align: right; }

.project-arc-sub {
  margin: var(--space-2) auto 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 36ch;
  text-wrap: balance;
}

.project-arc-cta {
  text-align: center;
  margin-top: var(--space-5);
}

.project-arc-button {
  display: inline-block;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease);
}

.project-arc-button:hover {
  color: var(--color-accent);
}

/* ============================================
   MOBILE — Pricing statement & Project arc
   ============================================ */
@media (max-width: 768px) {

  .pricing-statement {
    padding: var(--space-5) var(--space-2) var(--space-4);
  }

  .pricing-statement-headline {
    font-size: 28px;
  }

  .pricing-statement-body p {
    font-size: 15px;
  }

  .project-arc {
    padding: var(--space-4) 0;
  }

  .project-arc-inner {
    padding: 0 24px;
  }

  .project-arc-intro {
    margin-bottom: var(--space-3);
  }

  .project-arc-sub {
    font-size: 12px;
    max-width: 32ch;
  }

  .project-arc-timeline {
    padding: var(--space-3) 0;
  }

  .project-arc-labels {
    margin-top: var(--space-2);
  }

  .project-arc-label {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
}

/* ============================================
   PRICING — Hero trust line
   ============================================ */
.pricing-statement-trust {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: var(--space-4) 0 0;
}

/* ============================================
   PRICING — Outcomes grid (3 columns)
   ============================================ */
.pricing-outcomes {
  border-top: 1px solid var(--color-border);
  padding: var(--space-7) var(--space-3);
}

.pricing-outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-outcomes-intro {
  text-align: center;
  margin-bottom: var(--space-6);
}

.pricing-outcomes-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin: 0 0 var(--space-2);
}

.pricing-outcomes-headline {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0;
}

.pricing-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.pricing-outcome {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pricing-outcome-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin: 0;
}

.pricing-outcome-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0;
}

.pricing-outcome-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

/* Quiet personal note (e.g. eighth-year line on Loyalty card) */
.outcome-note {
  margin: var(--space-3) 0 0;
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.6;
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 36ch;
  text-wrap: balance;
}

/* Animated nav arrow inside outcome cards (carousel hint) */
.outcome-arrow {
  align-self: flex-start;
  margin-top: var(--space-3);
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  font-size: 22px;
  line-height: 1;
  transition: color var(--duration-fast) var(--ease);
}

.outcome-arrow:hover {
  color: var(--color-text);
}

.outcome-arrow-glyph {
  display: inline-block;
  animation: outcome-arrow-nudge 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes outcome-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .outcome-arrow-glyph { animation: none; }
}

/* ============================================
   PRICING — Proof carousel (testimonials)
   ============================================ */
.pricing-proof {
  border-top: 1px solid var(--color-border);
  padding: var(--space-7) var(--space-3);
  background: var(--color-bg-subtle);
}

.pricing-proof-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pricing-proof-intro {
  margin-bottom: var(--space-6);
}

.pricing-proof-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-2);
}

.pricing-proof-headline {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0;
}

.pricing-proof-stage {
  position: relative;
  min-height: 220px;
  margin-bottom: var(--space-5);
}

.pricing-proof-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms var(--ease);
  pointer-events: none;
}

.pricing-proof-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.pricing-proof-quote {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 var(--space-3);
  font-style: normal;
  letter-spacing: -0.005em;
}

.pricing-proof-quote::before {
  content: "\201C";
  margin-right: 2px;
}

.pricing-proof-quote::after {
  content: "\201D";
  margin-left: 2px;
}

.pricing-proof-author {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.pricing-proof-dots {
  display: inline-flex;
  gap: 8px;
}

.pricing-proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--color-border);
  cursor: pointer;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}

.pricing-proof-dot.is-active {
  background: var(--color-text);
  transform: scale(1.25);
}

.pricing-proof-dot:hover {
  background: var(--color-text);
}

/* ============================================
   PRICING — Price drivers
   ============================================ */
.pricing-drivers {
  border-top: 1px solid var(--color-border);
  padding: var(--space-7) var(--space-3);
}

.pricing-drivers-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pricing-drivers-intro {
  text-align: center;
  margin-bottom: var(--space-6);
}

.pricing-drivers-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin: 0 0 var(--space-2);
}

.pricing-drivers-headline {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 var(--space-2);
}

.pricing-drivers-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.pricing-drivers-list {
  display: flex;
  flex-direction: column;
}

.pricing-driver {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-3);
  align-items: start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-driver:first-child {
  padding-top: 0;
}

.pricing-driver:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-driver-number {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-light);
  margin: 6px 0 0;
}

.pricing-driver-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-driver-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0;
}

.pricing-driver-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================
   PRICING — Final CTA
   ============================================ */
.pricing-cta {
  border-top: 1px solid var(--color-border);
  padding: var(--space-7) var(--space-3);
  text-align: center;
}

.pricing-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.pricing-cta-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin: 0 0 var(--space-2);
}

.pricing-cta-headline {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 var(--space-2);
}

.pricing-cta-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-4);
}

.pricing-cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #171717;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 200ms var(--ease);
}

.pricing-cta-button:hover {
  background: var(--color-accent);
}

/* ============================================
   PRICING — Rich page mobile
   ============================================ */
@media (max-width: 768px) {
  .pricing-outcomes,
  .pricing-proof,
  .pricing-drivers,
  .pricing-cta {
    padding: var(--space-5) var(--space-2);
  }

  .pricing-outcomes-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .pricing-outcomes-intro,
  .pricing-proof-intro,
  .pricing-drivers-intro {
    margin-bottom: var(--space-4);
  }

  .pricing-outcomes-headline,
  .pricing-proof-headline,
  .pricing-drivers-headline {
    font-size: 22px;
  }

  .pricing-outcome-title {
    font-size: 20px;
  }

  .pricing-proof-stage {
    min-height: 260px;
  }

  .pricing-proof-quote {
    font-size: 18px;
  }

  .pricing-driver {
    grid-template-columns: 40px 1fr;
    gap: var(--space-2);
    padding: var(--space-3) 0;
  }

  .pricing-driver-title {
    font-size: 16px;
  }

  .pricing-cta-headline {
    font-size: 26px;
  }

  .pricing-cta-button {
    width: 100%;
    padding: 18px 24px;
  }
}

/* ============================================
   APPLY MODAL — Direct form intro
   Lives inside .contact-modal-content
   ============================================ */
.apply-intro {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.apply-intro-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 0 0 10px;
}

.apply-intro-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .apply-intro-title {
    font-size: 22px;
  }
}