/* ==========================================================================
   Denty — "Why choose us" intro
   Section header only for now: a two-line title on the left ("Denty" set
   off in the brand accent colour, same .accent pattern as .about-title),
   a short description + scroll hint stacked on the right — the same
   label/description row shape as .cases-meta, just with a much bigger
   left side since here the label *is* the section's own heading. The six
   reason cards this header introduces aren't built yet; this is just the
   header + the gap that pulls it away from the CTA banner above it.
   ========================================================================== */

.why-choose {
  width: 100%;
  padding-inline: var(--container-padding);
  /* ~5.6cm below the CTA banner. */
  margin-top: 212px;
}

.why-choose-inner {
  max-width: var(--container-width);
  margin-inline: auto;
}

.why-choose-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.why-choose-title {
  max-width: 560px;
  font-family: var(--font-hero);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

.why-choose-title .accent {
  color: var(--color-primary);
}

.why-choose-meta {
  flex-shrink: 0;
  max-width: 380px;
  text-align: right;
}

.why-choose-meta-text {
  font-family: var(--font-hero);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-secondary);
}

.why-choose-meta-hint {
  margin-top: 6px;
  font-family: var(--font-hero);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-secondary);
  opacity: 0.75;
}

/* ================================================================== */
/* Responsive                                                          */
/* ================================================================== */

@media (max-width: 1024px) {
  .why-choose {
    margin-top: 160px;
  }

  .why-choose-title {
    max-width: 440px;
  }
}

@media (max-width: 760px) {
  .why-choose {
    margin-top: 120px;
  }

  .why-choose-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .why-choose-title {
    max-width: none;
  }

  .why-choose-meta {
    max-width: none;
    text-align: left;
  }
}
