@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bc-red: #ff040e;
  --bc-blue: #005aa0;
  --bc-blue-deep: #0f2137;
  --bc-blue-mid: #1b3a5c;
  --bc-text: #11161d;
  --bc-text-muted: #4d5965;
  --bc-surface: #ffffff;
  --bc-surface-soft: #f5f7fa;
  --bc-border: #dce3ea;
  --bc-success: #25d366;
  --bc-shadow-soft: 0 18px 40px rgba(16, 58, 93, 0.08);
  --bc-shadow-card: 0 14px 36px rgba(16, 58, 93, 0.12);
  --bc-radius-xl: 32px;
  --bc-radius-lg: 22px;
  --bc-radius-md: 14px;
  --bc-radius-sm: 10px;
  --bc-container: 1240px;
  --bc-header-height: 96px;
}

html {
  scroll-behavior: smooth;
}

body.bc-template-design {
  background: var(--bc-surface);
  color: var(--bc-text);
  font-family: 'Geist', 'Inter', sans-serif;
}

.bc-template-design .content-area,
.bc-template-design .site-main,
.bc-template-design .entry-content-wrap,
.bc-template-design .entry-content,
.bc-template-design .entry-content > * {
  max-width: none;
}

.bc-template-design .content-area {
  margin: 0;
}

.bc-template-design .entry-content-wrap,
.bc-template-design .entry-content {
  margin: 0;
  padding: 0;
}

.bc-template-design .entry-header,
.bc-template-design .hero-section,
.bc-template-design .page-header {
  display: none;
}

.bc-page,
.bc-page *:where(:not(svg, path, circle, rect, polygon, line, polyline, g, use, defs, clipPath, mask)) {
  box-sizing: border-box;
}

.bc-page {
  color: var(--bc-text);
}

.bc-page h1,
.bc-page h2,
.bc-page h3,
.bc-page h4,
.bc-page h5,
.bc-page h6,
.bc-page p,
.bc-page ul,
.bc-page ol,
.bc-page li,
.bc-page figure,
.bc-page blockquote {
  margin: 0;
}

.bc-page ul,
.bc-page ol {
  padding-left: 1.25rem;
}

.bc-page img,
.bc-page picture {
  display: block;
  max-width: 100%;
}

.bc-page a {
  color: inherit;
  text-decoration: none;
}

.bc-page a:hover {
  color: inherit;
}

.bc-page-shell {
  min-height: 100vh;
}

.bc-page .bc-container {
  width: min(calc(100% - 48px), var(--bc-container));
  margin: 0 auto;
}

.bc-page .bc-section {
  position: relative;
  padding: 88px 0;
}

.bc-page .bc-section--soft {
  background: var(--bc-surface-soft);
}

.bc-page .bc-section--brand {
  background: var(--bc-blue);
  color: #fff;
}

.bc-page .bc-section--dark {
  background: linear-gradient(180deg, var(--bc-blue-deep) 0%, var(--bc-blue-mid) 100%);
  color: #fff;
}

.bc-page .bc-section-head {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 40px;
  text-align: center;
}

.bc-page .bc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bc-red);
}

.bc-page .bc-kicker::before,
.bc-page .bc-kicker::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: currentColor;
}

.bc-page .bc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bc-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bc-page .bc-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.bc-page .bc-subtitle {
  max-width: 820px;
  color: var(--bc-blue);
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.bc-page .bc-lead {
  max-width: 820px;
  color: var(--bc-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.bc-page .bc-accent-line {
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: var(--bc-red);
}

.bc-page .bc-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bc-page .bc-button-row--center {
  justify-content: center;
}

.bc-page .bc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.bc-page .bc-button:hover {
  transform: translateY(-1px);
}

.bc-page .bc-button--primary {
  background: var(--bc-blue);
  box-shadow: 0 14px 28px rgba(0, 90, 160, 0.18);
  color: #fff;
}

.bc-page .bc-button--accent {
  background: var(--bc-red);
  box-shadow: 0 14px 28px rgba(255, 4, 14, 0.16);
  color: #fff;
}

.bc-page .bc-button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.bc-page .bc-button--wa {
  border-color: var(--bc-success);
  color: var(--bc-success);
  background: #fff;
}

.bc-page .bc-button--outline {
  border-color: rgba(0, 90, 160, 0.24);
  color: var(--bc-blue);
  background: #fff;
}

.bc-page .bc-pill-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.bc-page .bc-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.bc-page .bc-hero {
  padding: 54px 0 72px;
  background: var(--bc-surface);
}

.bc-page .bc-breadcrumb {
  color: var(--bc-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.bc-page .bc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.bc-page .bc-hero-copy {
  display: grid;
  gap: 22px;
}

.bc-page .bc-hero-body {
  color: var(--bc-text-muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.bc-page .bc-hero-micro {
  color: #6a7680;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.bc-page .bc-hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bc-page .bc-hero-badge {
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid #d7e5f1;
  border-radius: 18px;
  background: #f4f8fc;
  color: #17324c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.bc-page .bc-hero-visual {
  display: grid;
  gap: 18px;
}

.bc-page .bc-media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bc-radius-xl);
  box-shadow: var(--bc-shadow-card);
  min-height: 620px;
}

.bc-page .bc-media-card > picture,
.bc-page .bc-media-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.bc-page .bc-media-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #17324c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bc-page .bc-media-contact {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(292px, calc(100% - 56px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(15, 27, 40, 0.84);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 40px rgba(8, 17, 26, 0.2);
}

.bc-page .bc-media-contact strong,
.bc-page .bc-media-contact span {
  display: block;
}

.bc-page .bc-media-contact strong {
  color: var(--bc-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bc-page .bc-media-contact span {
  margin-top: 4px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.bc-page .bc-media-contact small {
  display: block;
  margin-top: 8px;
  color: #e6eef7;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.bc-page .bc-feature-grid,
.bc-page .bc-course-grid,
.bc-page .bc-team-grid,
.bc-page .bc-metric-grid,
.bc-page .bc-process-grid,
.bc-page .bc-proof-grid {
  display: grid;
  gap: 24px;
}

.bc-page .bc-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bc-page .bc-course-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bc-page .bc-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bc-page .bc-metric-grid,
.bc-page .bc-process-grid,
.bc-page .bc-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bc-page .bc-card,
.bc-page .bc-process-card,
.bc-page .bc-proof-card,
.bc-page .bc-metric-card {
  border-radius: var(--bc-radius-md);
  background: #fff;
  box-shadow: var(--bc-shadow-soft);
}

.bc-page .bc-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.bc-page .bc-card-media {
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
}

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

.bc-page .bc-card-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.bc-page .bc-card-title {
  color: var(--bc-blue);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.bc-page .bc-card-text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.58;
}

.bc-page .bc-card-text strong {
  color: var(--bc-text);
}

.bc-page .bc-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-page .bc-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bc-page .bc-card-meta span:first-child {
  background: var(--bc-red);
  color: #fff;
}

.bc-page .bc-card-meta span:last-child {
  border: 1px solid rgba(0, 90, 160, 0.28);
  color: var(--bc-blue);
}

.bc-page .bc-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-page .bc-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.bc-page .bc-mini-button--primary {
  background: var(--bc-red);
  color: #fff;
}

.bc-page .bc-mini-button--wa {
  border: 1px solid var(--bc-success);
  color: var(--bc-success);
  background: #fff;
}

.bc-page .bc-feature-card,
.bc-page .bc-process-card,
.bc-page .bc-proof-card,
.bc-page .bc-metric-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 28px 22px;
  text-align: center;
}

.bc-page .bc-feature-icon,
.bc-page .bc-process-icon,
.bc-page .bc-proof-icon,
.bc-page .bc-metric-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0, 90, 160, 0.1);
  color: var(--bc-blue);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
}

.bc-page .bc-process-card .bc-process-icon,
.bc-page .bc-proof-card .bc-proof-icon,
.bc-page .bc-metric-card .bc-metric-icon {
  background: rgba(255, 4, 14, 0.08);
  color: var(--bc-red);
}

.bc-page .bc-feature-card h3,
.bc-page .bc-process-card h3,
.bc-page .bc-proof-card h3,
.bc-page .bc-metric-card h3 {
  color: var(--bc-blue);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.bc-page .bc-feature-card p,
.bc-page .bc-process-card p,
.bc-page .bc-proof-card p,
.bc-page .bc-metric-card p {
  color: var(--bc-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.bc-page .bc-process-card,
.bc-page .bc-proof-card,
.bc-page .bc-metric-card {
  min-height: 100%;
}

.bc-page .bc-split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: stretch;
}

.bc-page .bc-map-card,
.bc-page .bc-form-card,
.bc-page .bc-info-card {
  border-radius: var(--bc-radius-md);
  box-shadow: var(--bc-shadow-soft);
}

.bc-page .bc-info-list {
  display: grid;
  gap: 14px;
}

.bc-page .bc-info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 18px;
}

.bc-page .bc-info-card h3 {
  color: var(--bc-blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.bc-page .bc-info-card p,
.bc-page .bc-info-card a {
  color: var(--bc-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.bc-page .bc-form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 22px;
}

.bc-page .bc-form-card h3 {
  color: var(--bc-blue);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.bc-page .bc-form-card > p {
  color: var(--bc-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.bc-page details.bc-accordion {
  border: 1px solid #d9e4ef;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.bc-page details.bc-accordion + details.bc-accordion {
  margin-top: 12px;
}

.bc-page details.bc-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  color: var(--bc-blue);
  font-size: 16px;
  font-weight: 700;
}

.bc-page details.bc-accordion summary::-webkit-details-marker {
  display: none;
}

.bc-page details.bc-accordion[open] summary {
  border-bottom: 1px solid #e5edf5;
}

.bc-page .bc-accordion-content {
  display: grid;
  gap: 14px;
  padding: 18px 22px 22px;
  color: var(--bc-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bc-page .bc-seo-notes {
  display: grid;
  gap: 10px;
}

.bc-page .bc-seo-notes li {
  margin-left: 0;
}

.bc-page .bc-brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 24px;
  align-items: center;
}

.bc-page .bc-map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: stretch;
}

.bc-page .bc-map-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 24px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.bc-page .bc-map-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--bc-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bc-page .bc-map-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.bc-page .bc-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 18px;
  box-shadow: var(--bc-shadow-card);
}

.bc-page .bc-photo-card > picture,
.bc-page .bc-photo-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bc-page .bc-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-page .bc-brand-copy {
  display: grid;
  gap: 18px;
}

.bc-page .bc-brand-copy .bc-title,
.bc-page .bc-brand-copy .bc-lead,
.bc-page .bc-brand-copy .bc-subtitle,
.bc-page .bc-brand-copy .bc-card-text {
  color: #fff;
}

.bc-page .bc-brand-copy .bc-lead,
.bc-page .bc-brand-copy .bc-card-text {
  opacity: 0.88;
}

.bc-page .bc-brand-copy .bc-micro {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.bc-page .bc-brand-media {
  overflow: hidden;
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow-card);
}

.bc-page .bc-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-page .bc-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.bc-page .bc-footer-grid h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
}

.bc-page .bc-footer-grid p,
.bc-page .bc-footer-grid li,
.bc-page .bc-footer-grid a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.bc-page .bc-footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.bc-page .bc-footer-brand img {
  width: 210px;
}

.bc-page .bc-footer-brand p + p {
  margin-top: 10px;
}

.bc-page .bc-footer-legal {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.6;
}

.bc-page .bc-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  list-style: none;
}

.bc-page .bc-inline-list li {
  color: inherit;
  font-size: 14px;
  line-height: 1.6;
}

.bc-page .bc-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-page .bc-meta-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f4f8fc;
  color: #17324c;
  font-size: 12px;
  font-weight: 700;
}

.bc-page .bc-note-box {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

.bc-page .bc-note-box strong {
  color: #fff;
}

.bc-page .bc-contact-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 28px;
}

.bc-page .bc-rich-list {
  display: grid;
  gap: 12px;
  color: var(--bc-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.bc-page .bc-rich-list li {
  padding-left: 2px;
}

.bc-page .wpcf7-form {
  display: grid;
  gap: 12px;
}

.bc-page .wpcf7-form p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.bc-page .wpcf7-form label {
  color: var(--bc-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.bc-page .wpcf7-form-control-wrap {
  display: block;
}

.bc-page .wpcf7-form input[type='text'],
.bc-page .wpcf7-form input[type='email'],
.bc-page .wpcf7-form input[type='tel'],
.bc-page .wpcf7-form select,
.bc-page .wpcf7-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid #d9e4ef;
  background: #fff;
  color: var(--bc-text);
  padding: 0.75rem 0.9rem;
  box-shadow: none;
}

.bc-page .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.bc-page .wpcf7-form input[type='submit'] {
  min-width: 160px;
  min-height: 46px;
  border-radius: 999px;
  background: var(--bc-red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.bc-page .wpcf7-spinner {
  margin: 0;
}

.bc-page .bc-form-shell {
  display: grid;
  gap: 18px;
}

.bc-page .bc-short-note {
  color: var(--bc-text-muted);
  font-size: 14px;
  line-height: 1.6;
}


/* =====================================================
   HERO FULL-BLEED — ND2 Desktop + NM2 Mobile Design
   ===================================================== */

.bc-hero--fullbleed {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  padding: 0;
  background: #06121C;
  display: flex;
  align-items: stretch;
}

.bc-hero--fullbleed .bc-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bc-hero--fullbleed .bc-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Organic radial gradient — oval on left side only, no vertical column */
.bc-hero--fullbleed .bc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 60% 108% at 22% 52%,
    rgba(6, 18, 28, 0.90) 0%,
    rgba(6, 18, 28, 0.60) 40%,
    rgba(6, 18, 28, 0) 62%
  );
  pointer-events: none;
}

/* Text column — overlaid on photo, left side */
.bc-hero-copy--fullbleed {
  position: relative;
  z-index: 2;
  width: 540px;
  min-width: 0;
  margin-left: 52px;
  padding: 60px 0;
  display: grid;
  gap: 18px;
  align-content: center;
}

.bc-hero--fullbleed .bc-kicker {
  color: var(--bc-red);
}

.bc-hero--fullbleed .bc-title {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 100%;
}

.bc-hero--fullbleed .bc-subtitle {
  color: #6FC5FF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 100%;
}

.bc-hero--fullbleed .bc-hero-body {
  color: #D8E8F4;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

/* Badges: plain em-dash list, no card boxes */
.bc-hero--fullbleed .bc-hero-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.bc-hero--fullbleed .bc-hero-badges li {
  color: #E8F4FF;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 0;
}

.bc-hero--fullbleed .bc-hero-badges li::before {
  content: "— ";
  color: rgba(232, 244, 255, 0.45);
  font-weight: 400;
  position: static;
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  top: auto;
  left: auto;
}

.bc-hero--fullbleed .bc-hero-micro {
  color: rgba(216, 232, 244, 0.65);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}

/* WhatsApp contact card — desktop: glass card bottom-right */
.bc-hero--fullbleed .bc-hero-wacard {
  position: absolute;
  z-index: 2;
  right: 60px;
  bottom: 130px;
  width: 292px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(12, 25, 39, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.bc-hero--fullbleed .bc-hero-wacard-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.bc-hero--fullbleed .bc-hero-wacard-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bc-hero--fullbleed .bc-hero-wacard-text strong {
  display: block;
  color: var(--bc-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bc-hero--fullbleed .bc-hero-wacard-text span {
  display: block;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Fix: override 3-col grid for fullbleed badges (plain list) */
.bc-page .bc-hero--fullbleed .bc-hero-badges {
  grid-template-columns: 1fr;
  gap: 6px;
}

.bc-page .bc-hero--fullbleed .bc-hero-badges li {
  min-height: unset;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: #E8F4FF;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

/* Phone icon via CSS data URI (WP strips inline SVGs from post content) */
.bc-hero--fullbleed .bc-hero-wacard-icon::before {
  content: ;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMiIgaGVpZ2h0PSIyMiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBhdGggZD0iTTIyIDE2LjkydjNhMiAyIDAgMCAxLTIuMTggMiAxOS43OSAxOS43OSAwIDAgMS04LjYzLTMuMDdBMTkuNSAxOS41IDAgMCAxIDQuNjkgMTJhMTkuNzkgMTkuNzkgMCAwIDEtMy4wNy04LjY3QTIgMiAwIDAgMSAzLjYgMS4xOGgzYTIgMiAwIDAgMSAyIDEuNzIgMTIuODQgMTIuODQgMCAwIDAgLjcgMi44MSAyIDIgMCAwIDEtLjQ1IDIuMTFMOC4wOSA5LjkxYTE2IDE2IDAgMCAwIDYgNmwxLjI3LTEuMjdhMiAyIDAgMCAxIDIuMTEtLjQ1IDEyLjg0IDEyLjg0IDAgMCAwIDIuODEuN0EyIDIgMCAwIDEgMjIgMTYuOTJ6Ij48L3BhdGg+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Fix: override .bc-page .bc-hero padding+bg (higher specificity 0,3,0) */
.bc-page .bc-hero.bc-hero--fullbleed {
  padding: 0;
  background: #06121C;
}

/* ── Fix: badge cards for dark hero — glass style, 3 cols on desktop */
.bc-page .bc-hero--fullbleed .bc-hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bc-page .bc-hero--fullbleed .bc-hero-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: #E8F4FF;
  padding: 14px 16px;
  min-height: 74px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

/* ── Fix: phone icon via data URI (WP strips inline SVG) */
.bc-page .bc-hero--fullbleed .bc-hero-wacard-icon::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNMjIgMTYuOTJ2M2EyIDIgMCAwIDEtMi4xOCAyIDE5Ljc5IDE5Ljc5IDAgMCAxLTguNjMtMy4wN0ExOS41IDE5LjUgMCAwIDEgNC42OSAxMmExOS43OSAxOS43OSAwIDAgMS0zLjA3LTguNjdBMiAyIDAgMCAxIDMuNiAxLjE4aDNhMiAyIDAgMCAxIDIgMS43MiAxMi44NCAxMi44NCAwIDAgMCAuNyAyLjgxIDIgMiAwIDAgMS0uNDUgMi4xMUw4LjA5IDkuOTFhMTYgMTYgMCAwIDAgNiA2bDEuMjctMS4yN2EyIDIgMCAwIDEgMi4xMS0uNDUgMTIuODQgMTIuODQgMCAwIDAgMi44MS43QTIgMiAwIDAgMSAyMiAxNi45MnoiPjwvcGF0aD48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
