.section-block {
  padding-top: 120px;
  padding-bottom: 120px;
}

.container {
  max-width: 1180px;
  padding-left: 36px;
  padding-right: 36px;
}

.section-header {
  margin-bottom: 64px;
}

.value-grid,
.service-grid {
  margin-top: 56px;
}

.testimonials {
  margin-top: 120px;
}

.client-logos {
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #eee;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.logo-row img {
  max-height: 44px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-row img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.cta-final {
  padding-top: 110px;
  padding-bottom: 110px;
  text-align: center;
  background: #ffffff;
}

/* Global typography scale */
:root {
  --font-xl: 42px;
  --font-lg: 28px;
  --font-md: 18px;
  --font-sm: 15px;
}

/* Section titles */
.section-title {
  font-size: var(--font-xl);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 12px;
  color: #111;
}

/* Section lead text */
.section-lead {
  font-size: var(--font-lg);
  font-weight: 400;
  line-height: 1.55;
  color: #444;
}

/* Card titles */
.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Card body text */
.card-body {
  font-size: var(--font-md);
  line-height: 1.55;
  color: #444;
}

/* Card lists */
.card-list li {
  font-size: var(--font-md);
  line-height: 1.5;
  color: #444;
}

/* Eyebrow labels */
.eyebrow {
  font-size: var(--font-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 6px;
}

/* Testimonial text */
.testimonial-text {
  font-size: 20px;
  line-height: 1.55;
  color: #222;
}

/* Testimonial author */
.testimonial-author {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* CTA typography */
.cta-final h2 {
  font-size: 36px;
  font-weight: 700;
}

.cta-final p {
  font-size: 20px;
  line-height: 1.55;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.cta-final .btn-primary {
  font-size: 16px;
  padding: 14px 32px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  background: transparent;
  color: #111111;
  border: 1px solid #111111;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #111111;
  color: #ffffff;
}