/* Shared CST component language. Plugins may opt in natively with these classes. */
.cst-eyebrow,
.cst-kicker,
.cst-overline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .55rem;
  color: var(--cst-orange-600);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.cst-section-title {
  margin: 0 0 .75rem;
  color: var(--cst-text-heading);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.cst-section-desc {
  max-width: 48rem;
  margin: 0;
  color: var(--cst-text-body);
  font-size: 1rem;
  line-height: 1.65;
}

.cst-section {
  padding-block: var(--cst-section-space);
}

.cst-card {
  border: 1px solid var(--cst-border);
  border-radius: var(--cst-radius-lg);
  background: var(--cst-white);
  box-shadow: var(--cst-shadow-sm);
}

.cst-card:hover {
  box-shadow: var(--cst-shadow-md);
}

.cst-btn,
.cst-btn-primary,
.cst-btn-quote,
.cst-btn-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--cst-radius-md);
  font-family: var(--cst-font);
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
}

.cst-btn:hover,
.cst-btn-primary:hover,
.cst-btn-quote:hover,
.cst-btn-secondary:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.cst-btn-primary {
  background: var(--cst-navy-900);
  color: var(--cst-white);
  box-shadow: 0 4px 12px rgba(11,46,89,.16);
}

.cst-btn-primary:hover {
  background: var(--cst-navy-800);
  color: var(--cst-white);
}

.cst-btn-quote {
  background: var(--cst-orange-500);
  color: var(--cst-white);
  box-shadow: 0 4px 12px rgba(249,115,22,.18);
}

.cst-btn-quote:hover {
  background: var(--cst-orange-600);
  color: var(--cst-white);
}

.cst-btn-secondary {
  border-color: var(--cst-border-strong);
  background: var(--cst-white);
  color: var(--cst-navy-900);
}

.cst-link {
  color: var(--cst-blue-600);
  font-weight: 600;
}

.cst-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: var(--cst-bg-soft);
  color: var(--cst-navy-700);
  font-size: .8125rem;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
select,
textarea {
  border-color: var(--cst-border);
  border-radius: var(--cst-radius-md);
  color: var(--cst-text-strong);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cst-blue-600);
  box-shadow: 0 0 0 3px rgba(23,92,211,.10);
}
