.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  transform: translateY(-1px);
}

.btn-primary,
.wp-block-button__link {
  color: var(--bc-white);
  background: var(--bc-orange);
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  color: var(--bc-white);
  background: #e96f00;
}

.btn-secondary {
  color: var(--bc-primary);
  background: var(--bc-white);
  border-color: rgba(15, 82, 186, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--bc-white);
  background: var(--bc-primary);
  border-color: var(--bc-primary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bc-primary);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
}

.card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  box-shadow: var(--bc-shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 52px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--bc-primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-text {
  max-width: 720px;
  color: var(--bc-muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border-radius: 20px;
  background: var(--bc-navy);
  box-shadow: var(--bc-shadow);
}

.hero-visual-image {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--bc-white);
}

.hero-signal-list {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-signal-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  color: var(--bc-white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.compact-hero {
  padding: 72px 0;
}

.compact-hero .hero-inner {
  grid-template-columns: 1fr;
}

.compact-hero .hero-panel {
  display: none;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro-centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro p {
  color: var(--bc-muted);
  font-size: 17px;
}

.service-card,
.why-card,
.process-step,
.metric-card,
.content-card,
.related-card,
.empty-state {
  padding: 28px;
}

.service-card,
.blog-card,
.case-study-card,
.why-card,
.metric-card,
.process-step,
.testimonial-card,
.related-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.blog-card:hover,
.case-study-card:hover,
.why-card:hover,
.metric-card:hover,
.process-step:hover,
.testimonial-card:hover,
.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 82, 186, 0.24);
  box-shadow: var(--bc-shadow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--bc-white);
  background: var(--bc-primary);
  border-radius: 14px;
  font-weight: 800;
}

.service-card h3,
.why-card h3,
.process-step h3,
.metric-card h3,
.related-card strong {
  font-size: 22px;
}

.service-card p,
.why-card p,
.process-step p,
.metric-card p,
.card-body p,
.empty-state p {
  color: var(--bc-muted);
}

.card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px 16px 0 0;
  background: var(--bc-light);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--bc-primary);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.09), rgba(31, 169, 113, 0.12));
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 22px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--bc-white);
  background: var(--bc-orange);
  border-radius: 50%;
  font-weight: 800;
}

.metric-card span {
  color: var(--bc-green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  background: var(--bc-white);
  box-shadow: var(--bc-shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 22px;
  color: var(--bc-navy);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-align: left;
}

.faq-icon {
  flex: 0 0 auto;
  color: var(--bc-primary);
  font-size: 22px;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--bc-muted);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--bc-navy);
  border-radius: 20px;
  box-shadow: var(--bc-shadow);
}

.cta-banner h2,
.cta-banner .eyebrow {
  color: var(--bc-white);
}

.cta-banner p:last-child {
  margin-bottom: 0;
}

.testimonial-card {
  margin: 0;
  padding: 32px;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  color: var(--bc-dark);
  font-size: 18px;
  font-weight: 600;
}

.testimonial-card figcaption {
  display: grid;
  gap: 2px;
  color: var(--bc-muted);
}

.testimonial-card strong {
  color: var(--bc-navy);
}

.filter-pill,
.industry-list span,
.outcome-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--bc-dark);
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 999px;
  font-weight: 700;
}

.filter-pill.active,
.filter-pill:hover,
.filter-pill:focus {
  color: var(--bc-white);
  background: var(--bc-primary);
  border-color: var(--bc-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.contact-form-panel,
.contact-details {
  padding: 32px;
}

.contact-form-shortcode {
  padding: 20px;
  background: var(--bc-light);
  border: 1px dashed rgba(15, 82, 186, 0.35);
  border-radius: 14px;
}

.contact-form-shortcode input,
.contact-form-shortcode textarea,
.contact-form-shortcode select,
.wpforms-field input,
.wpforms-field textarea,
.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--bc-dark);
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 10px;
}

.contact-form-shortcode textarea,
.wpforms-field textarea {
  min-height: 130px;
}

.contact-form-shortcode button,
.contact-form-shortcode input[type="submit"],
.wpforms-submit,
.wpcf7-submit {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 20px;
  color: var(--bc-white);
  background: var(--bc-orange);
  border: 0;
  border-radius: 10px;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--bc-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
