/* ── Works-With bar ─────────────────────────────────────── */
.works-with-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
}
.works-with-bar .ww-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text4);
  margin-bottom: 16px;
  text-align: center;
}
.works-with-bar .ww-tagline {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text4);
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.ww-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ww-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg2);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 8px 18px 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  white-space: nowrap;
}
.ww-chip svg,
.ww-chip .ww-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ── Setup steps (horizontal tight) ────────────────────── */
.setup-section {
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border);
}
.setup-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 10px;
}
.setup-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  color: var(--text1);
}
.setup-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.setup-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.setup-step + .setup-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 1px;
  height: 48px;
  background: var(--border);
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--color-brand-soft);
  border: 1px solid var(--color-brand-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-link);
}
.setup-step h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text1);
}
.setup-step p {
  font-size: 0.8125rem;
  color: var(--text3);
  line-height: 1.55;
}
.setup-cta {
  text-align: center;
  margin-top: 36px;
}

/* ── Carousel ───────────────────────────────────────────── */
.carousel-section {
  padding: 96px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(24px, 8vw, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-brand-soft);
  border: 1px solid var(--color-brand-glow);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-link);
  margin-bottom: 32px;
}
.slide-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
}
.carousel-slide h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text1);
  max-width: 760px;
  margin-bottom: 24px;
}
.carousel-slide p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 0;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 52px;
}
.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-md);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 250ms var(--ease), transform 250ms var(--ease);
}
.c-dot.active {
  background: var(--color-brand);
  transform: scale(1.35);
}
.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.c-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border-md);
  color: var(--text3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--fast) var(--ease);
}
.c-arrow:hover { background: var(--bg3); color: var(--text1); }

/* ── Quotes ─────────────────────────────────────────────── */
.quotes-section { padding: 80px 0; }
.quote-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-card blockquote {
  color: var(--text2);
  font-size: 0.9375rem;
  line-height: 1.72;
  font-style: normal;
}
.quote-card cite {
  font-size: 0.75rem;
  font-style: normal;
  color: var(--text4);
  letter-spacing: 0.02em;
}

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(11,114,133,0.16) 0%, rgba(11,114,133,0.04) 100%);
  border-top: 1px solid var(--color-brand-glow);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text1);
}
.cta-band p {
  color: var(--text3);
  margin-bottom: 32px;
  font-size: 0.9375rem;
}

/* ── Hero tighten ────────────────────────────────────────── */
.hero { padding: 48px 0 0; }

/* ── Utility Classes for inline removal ────────────────── */
.nav-logo-link { text-decoration: none; }
.hero-h1 { margin-bottom: 16px; text-align: center; }
.hero-p { max-width: 440px; margin: 0 auto 28px; color: var(--text2); font-size: 1rem; line-height: 1.7; text-align: center; }

/* ── Hero beam — decorative accent below CTAs ───────────── */
.hero-beam {
  width: 100%;
  max-width: 1000px;
  height: 90px;
  background: url('../../assets/svg/hero-beam-dark.svg') center 46% / 1280px 720px no-repeat;
  opacity: 0.55;
  border-radius: 0 0 12px 12px;
  margin: 28px auto 0;
}
.divider-line { height: 1px; background: var(--border); }
.carousel-label { text-align: center; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text4); margin-bottom: 8px; }
.carousel-subtitle { text-align: center; font-size: 0.9375rem; color: var(--text3); margin-bottom: 52px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 680px) {
  .setup-steps { flex-direction: column; align-items: center; gap: 28px; }
  .setup-step + .setup-step::before { display: none; }
  .setup-step { max-width: 280px; }
}
