/* SBC custom pages: services overview + whitepapers */
:root {
  --sbc-navy: #06132a;
  --sbc-navy-2: #0b1f40;
  --sbc-blue-10: rgba(0, 152, 234, .1);
  --sbc-blue-20: rgba(0, 152, 234, .2);
}

/* ---------- Shared bits ---------- */
.wp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  color: #cfe9fb;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .3px;
}

.wp-eyebrow-icon { display: inline-flex; color: var(--sbc-blue); }

.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.wp-btn:hover { transform: translateY(-2px); }
.wp-btn:focus-visible { outline: 2px solid var(--sbc-blue); outline-offset: 3px; }

.wp-btn-primary { background: var(--sbc-blue); color: #fff; box-shadow: 0 10px 30px -10px rgba(0, 152, 234, .8); }
.wp-btn-primary:hover { background: #10a6f5; color: #fff; }
.wp-btn-ghost { border-color: rgba(255, 255, 255, .3); color: #fff; background: transparent; }
.wp-btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .6); color: #fff; }
.wp-btn-light { background: #fff; color: var(--sbc-navy); }
.wp-btn-light:hover { background: #e8f4fc; color: var(--sbc-navy); }
.wp-btn-outline { border-color: rgba(255, 255, 255, .45); color: #fff; background: transparent; }
.wp-btn-outline:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .7); color: #fff; }

.wp-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sbc-blue-10);
  color: var(--sbc-blue);
}

.wp-card-code {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color--gray-3);
}

.wp-card-link {
  font-weight: 600;
  color: var(--sbc-blue);
}

/* ---------- Whitepaper hero ---------- */
.wp-hero {
  position: relative;
  overflow: hidden;
  padding: 10.5rem 0 4rem;
  color: #fff;
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(0, 152, 234, .35), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(64, 106, 228, .25), transparent 60%),
    linear-gradient(180deg, var(--sbc-navy), var(--sbc-navy-2));
}

.wp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

.wp-hero .container { position: relative; z-index: 1; }
.wp-hero-center { text-align: center; padding-bottom: 5rem; }
.wp-hero-center .wp-hero-tagline { margin-left: auto; margin-right: auto; }

.wp-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #9fb4cf;
  font-size: .9375rem;
  text-decoration: none;
}
.wp-back:hover { color: #fff; }

.wp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.wp-hero-title {
  margin: 1.25rem 0 1rem;
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.wp-hero-tagline {
  max-width: 620px;
  margin-bottom: 2rem;
  color: #b9c9dd;
  font-size: 1.25rem;
  line-height: 1.5;
}

.wp-hero-actions { display: flex; flex-wrap: wrap; gap: .875rem; }

.wp-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 152, 234, .55), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02));
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
  transform: rotate(2deg);
  backdrop-filter: blur(6px);
}

.wp-cover-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #cfe9fb;
}
.wp-cover-top img { border-radius: 50%; }
.wp-cover-icon { margin-top: auto; color: #fff; opacity: .95; }
.wp-cover-title {
  margin-top: 1rem;
  font-family: var(--_typography---font-family--heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}
.wp-cover-sub { margin-top: .5rem; color: #9fb4cf; font-size: .875rem; }

.wp-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3.5rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.wp-meta dt { color: #8aa0bb; font-size: .8125rem; text-transform: uppercase; letter-spacing: 1px; }
.wp-meta dd { margin: .35rem 0 0; color: #fff; font-weight: 600; }

/* ---------- Whitepaper body ---------- */
.wp-body { padding: 5rem 0 6rem; background: #fff; }

.wp-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
}

.wp-toc { position: sticky; top: 7.5rem; }
.wp-toc-title {
  margin-bottom: 1rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color--gray-1);
}
.wp-toc ol { margin: 0; padding: 0; list-style: none; border-left: 2px solid var(--color--gray-5); }
.wp-toc a {
  display: block;
  margin-left: -2px;
  padding: .45rem 0 .45rem 1rem;
  border-left: 2px solid transparent;
  color: var(--color--gray-3);
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}
.wp-toc a:hover { color: var(--sbc-blue); border-left-color: var(--sbc-blue); }

.wp-article { max-width: 820px; }
.wp-article section { scroll-margin-top: 7.5rem; }
.wp-article p { color: var(--color--gray-3); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1rem; }

.wp-section-label {
  margin-bottom: .75rem;
  color: var(--sbc-blue);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wp-abstract {
  padding: 2rem 2.25rem;
  margin-bottom: 4rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--sbc-blue-10), rgba(64, 106, 228, .06));
  border: 1px solid var(--sbc-blue-20);
}
.wp-abstract p { color: var(--color--gray-1); font-size: 1.1875rem; }

.wp-highlights { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.wp-highlights li {
  padding: .45rem .9rem;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--sbc-blue-20);
  color: var(--color--gray-1);
  font-size: .875rem;
  font-weight: 600;
}

.wp-section { padding-bottom: 3.5rem; margin-bottom: 3.5rem; border-bottom: 1px solid var(--color--gray-5); }
.wp-section-title { font-size: 2.25rem; margin-bottom: 1.25rem; }

.wp-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.wp-feature {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color--gray-5);
  background: var(--color--gray-6);
  transition: border-color .25s ease, transform .25s ease, background-color .25s ease;
}
.wp-feature:hover { border-color: var(--sbc-blue-20); background: #fff; transform: translateY(-2px); }
.wp-feature h3 { margin: 0 0 .5rem; font-size: 1.1875rem; line-height: 1.3; }
.wp-article .wp-feature p { margin: 0; font-size: 1rem; line-height: 1.55; }

.wp-list { margin: 1rem 0 0; padding: 0; list-style: none; }
.wp-list li {
  position: relative;
  padding: .7rem 0 .7rem 2rem;
  color: var(--color--gray-2);
  font-size: 1.0625rem;
  line-height: 1.55;
  border-bottom: 1px dashed var(--color--gray-5);
}
.wp-list li:last-child { border-bottom: 0; }
.wp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sbc-blue-10) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230098ea' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.wp-steps { counter-reset: step; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.wp-steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.75rem 3.75rem;
}
.wp-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sbc-navy);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
}
.wp-steps li::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 2.75rem;
  bottom: .25rem;
  width: 1px;
  background: var(--color--gray-5);
}
.wp-steps li:last-child::after { display: none; }
.wp-step-head { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; min-height: 2.5rem; }
.wp-step-head h3 { margin: 0; font-size: 1.25rem; }
.wp-step-duration {
  padding: .25rem .7rem;
  border-radius: 100px;
  background: var(--sbc-blue-10);
  color: var(--sbc-blue-deep, #0077b8);
  font-size: .8125rem;
  font-weight: 600;
}
.wp-article .wp-steps p { margin: .35rem 0 0; font-size: 1rem; }

.wp-cta {
  padding: 3rem;
  border-radius: 1.5rem;
  color: #fff;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(0, 152, 234, .45), transparent 60%),
    var(--sbc-navy);
}
.wp-cta h2 { color: #fff; font-size: 2.25rem; margin-bottom: .75rem; }
.wp-article .wp-cta p { color: #b9c9dd; margin-bottom: 1.75rem; }

/* ---------- Related / index cards ---------- */
.wp-related { padding: 5rem 0 7rem; background: var(--color--gray-6); }
.wp-related-title { font-size: 2.25rem; margin-bottom: 2rem; }
.wp-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.wp-related-card,
.wp-index-card {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid var(--color--gray-5);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.wp-related-card:hover,
.wp-index-card:hover {
  border-color: var(--sbc-blue-20);
  box-shadow: 0 4px 14px -8px rgba(6, 19, 42, .12);
}

.wp-card-title {
  font-family: var(--_typography---font-family--heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color--gray-1);
}

.wp-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.wp-index-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.wp-index-service { color: var(--sbc-blue); font-weight: 700; font-size: .9375rem; }
.wp-index-title { margin: 0; font-size: 1.625rem; line-height: 1.25; }
.wp-index-summary { margin: 0; color: var(--color--gray-3); line-height: 1.55; font-size: 1.0625rem; }
.wp-index-highlights { margin: .25rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.wp-index-highlights li { padding-left: 1.25rem; position: relative; color: var(--color--gray-2); font-size: .9375rem; }
.wp-index-highlights li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--sbc-blue); }
.wp-index-foot {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color--gray-5);
  color: var(--color--gray-3);
  font-size: .9375rem;
}

/* ---------- Services overview (on /feature) ---------- */
.sbc-services { padding: 7rem 0 2rem; }
.sbc-services-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.sbc-services-head .pre-title { display: inline-block; margin-bottom: 1.25rem; }
.sbc-services-head p { color: var(--color--gray-3); font-size: 1.1875rem; line-height: 1.55; }

.sbc-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.sbc-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem 2rem;
  border-radius: 1.75rem;
  background: #fff;
  border: 1px solid var(--color--gray-5);
  overflow: hidden;
}

.sbc-service-card.is-featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(0, 152, 234, .5), transparent 60%),
    var(--sbc-navy);
}
.sbc-service-card.is-featured .wp-card-icon { background: rgba(255, 255, 255, .1); color: #fff; }
.sbc-service-card.is-featured h3,
.sbc-service-card.is-featured .sbc-service-list li { color: #fff; }
.sbc-service-card.is-featured p { color: #b9c9dd; }
.sbc-service-card.is-featured .sbc-service-list li { border-color: rgba(255, 255, 255, .12); }
.sbc-service-card.is-featured .sbc-service-link { background: #fff; color: var(--sbc-navy); }

.sbc-service-num { position: absolute; top: 2rem; right: 2rem; font-size: .875rem; font-weight: 700; letter-spacing: 1px; opacity: .45; }
.sbc-service-card h3 { margin: 1.5rem 0 .75rem; font-size: 1.75rem; }
.sbc-service-card p { color: var(--color--gray-3); line-height: 1.55; margin-bottom: 1.25rem; }

.sbc-service-list { margin: 0 0 2rem; padding: 0; list-style: none; }
.sbc-service-list li {
  display: flex;
  gap: .625rem;
  padding: .6rem 0;
  border-top: 1px solid var(--color--gray-5);
  color: var(--color--gray-1);
  font-size: 1rem;
}
.sbc-service-list li::before { content: "→"; color: var(--sbc-blue); font-weight: 700; }

.sbc-service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 1.4rem;
  border-radius: 100px;
  background: var(--color--gray-6);
  color: var(--color--gray-1);
  font-weight: 600;
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
}
.sbc-service-link:hover { background: var(--sbc-blue); color: #fff; }

/* ---------- Responsive ---------- */
@media screen and (max-width: 991px) {
  .wp-hero { padding-top: 9rem; }
  .wp-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wp-cover { display: none; }
  .wp-hero-title { font-size: 2.75rem; }
  .wp-layout { grid-template-columns: 1fr; gap: 2rem; }
  .wp-toc { position: static; padding: 1.25rem 1.5rem; border-radius: 1rem; background: var(--color--gray-6); }
  .wp-toc ol { columns: 2; border-left: 0; }
  .wp-toc a { padding-left: 0; border-left: 0; margin-left: 0; }
  .wp-index-grid, .sbc-services-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .wp-meta { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 767px) {
  .wp-body { padding: 3rem 0 4rem; }
  .wp-features, .wp-related-grid { grid-template-columns: 1fr; }
  .wp-section-title, .wp-cta h2, .wp-related-title { font-size: 1.75rem; }
  .wp-cta { padding: 2rem 1.5rem; }
  .wp-abstract { padding: 1.5rem; }
  .sbc-services { padding-top: 4.5rem; }
}

@media screen and (max-width: 479px) {
  .wp-hero-title { font-size: 2.125rem; }
  .wp-hero-tagline { font-size: 1.0625rem; }
  .wp-toc ol { columns: 1; }
  .wp-hero-actions .wp-btn { flex: 1 1 100%; }
}

/* ---------- Print / PDF ---------- */
@media print {
  .navbar, .footer, .wp-toc, .wp-related, .wp-hero-actions, .wp-back, .wp-cover, .wp-cta { display: none !important; }
  body { background: #fff; }
  .wp-hero { padding: 0 0 1.5rem; color: #000; background: none; }
  .wp-hero::after { display: none; }
  .wp-hero-title, .wp-meta dd { color: #000; }
  .wp-hero-tagline, .wp-meta dt { color: #444; }
  .wp-eyebrow { color: #0077b8; border-color: #0098ea; background: none; }
  .wp-meta { border-top-color: #ddd; }
  .wp-body { padding: 1rem 0; }
  .wp-layout { display: block; }
  .wp-section { break-inside: avoid-page; }
  .wp-feature, .wp-steps li { break-inside: avoid; }
}

.wp-list.is-problem li::before {
  background: rgba(245, 28, 35, .08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0484d' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M7 12h10'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ---------- Products (flat, template-consistent) ---------- */
.sbc-page-hero { align-items: center; text-align: center; }
.sbc-page-hero-eyebrow { align-self: center; }
.sbc-page-hero-text { max-width: 620px; margin-left: auto; margin-right: auto; font-size: 1.25rem; line-height: 1.5; }
.sbc-page-hero-actions { margin-top: 1rem; }

.sbc-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem; }

.sbc-section { padding: 6.25rem 0; }
.sbc-section-tight { padding: 3rem 0; }
.sbc-section-muted { background-color: var(--color--gray-6); }

.sbc-section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.sbc-section-head.is-row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; text-align: left; }
.sbc-section-title { margin-bottom: 0; }
.sbc-inline-pre { display: inline-block; margin-bottom: 1.25rem; }

.sbc-icon-badge {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius--xxxl);
  background-image: linear-gradient(130deg, var(--color--primary-1), var(--color--primary-3));
  color: var(--color--white);
  font-size: 1.5rem;
  font-weight: 500;
}
.sbc-icon-badge.is-light { background: var(--color--white-10); border: 1px solid var(--color--white-30); }

.sbc-text-link { color: var(--color--primary-1); font-weight: 600; transition: color .2s ease; }

/* Product cards */
.sbc-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.sbc-product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.875rem;
  border: 1px solid var(--color--gray-5);
  border-radius: var(--border-radius--xxl);
  background-color: var(--color--white);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease;
}
.sbc-product-card:hover { border-color: var(--color--gray-4); }
.sbc-product-card:hover .sbc-text-link { color: var(--color--primary-2); }

.sbc-product-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; }
.sbc-product-category { color: var(--color--gray-3); font-size: .875rem; font-weight: 600; text-align: right; }
.sbc-product-name { margin: 0; font-size: var(--_typography---h5--h5); line-height: 1.2; }
.sbc-product-summary { margin: 0; color: var(--color--gray-3); font-size: 1.0625rem; line-height: 1.55; }
.sbc-product-points { margin: 0 0 .5rem; padding: 1rem 0 0; list-style: none; border-top: 1px solid var(--color--gray-5); display: flex; flex-direction: column; gap: .5rem; }
.sbc-product-points li { position: relative; padding-left: 1.125rem; color: var(--color--gray-2); font-size: .9375rem; }
.sbc-product-points li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--color--primary-1); }
.sbc-product-card .sbc-text-link { margin-top: auto; }

.sbc-product-card.is-custom { background-color: var(--color--gray-6); }
.sbc-product-card.is-custom .sbc-icon-badge { margin-bottom: .5rem; }

/* Overview */
.sbc-overview { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.sbc-overview-body p { color: var(--color--gray-3); font-size: 1.1875rem; line-height: 1.65; margin-bottom: 1.25rem; }

.sbc-highlights { margin: 1.5rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .75rem; }
.sbc-highlights li {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1.125rem .625rem .75rem;
  border: 1px solid var(--color--gray-5);
  border-radius: var(--border-radius--xxxl);
  background: var(--color--gray-6);
  color: var(--color--gray-1);
  font-size: .9375rem;
  font-weight: 600;
}
.sbc-highlights.is-stacked { flex-direction: column; gap: 0; margin: 0; }
.sbc-highlights.is-stacked li { padding: .875rem 0; border: 0; border-bottom: 1px solid var(--color--gray-5); border-radius: 0; background: none; font-weight: 500; font-size: 1.0625rem; }
.sbc-highlights.is-stacked li:last-child { border-bottom: 0; }

.sbc-check {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color--primary-1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Features */
.sbc-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sbc-feature-card { padding: 1.875rem; border-radius: var(--border-radius--xxl); background-color: var(--color--white); }
.sbc-feature-num { display: inline-block; margin-bottom: 1.5rem; color: var(--color--primary-1); font-size: .875rem; font-weight: 700; letter-spacing: 1px; }
.sbc-feature-card h3 { margin: 0 0 .625rem; font-size: var(--_typography---h6--h6); line-height: 1.25; }
.sbc-feature-card p { margin: 0; color: var(--color--gray-3); font-size: 1rem; line-height: 1.55; }

/* Audiences */
.sbc-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--color--gray-5); }
.sbc-audience { padding: 2rem 1.5rem 0 0; }
.sbc-audience + .sbc-audience { padding-left: 1.5rem; border-left: 1px solid var(--color--gray-5); }
.sbc-audience h3 { margin: 0 0 .5rem; font-size: 1.25rem; line-height: 1.3; }
.sbc-audience p { margin: 0; color: var(--color--gray-3); font-size: 1rem; line-height: 1.55; }

/* Security + integrations */
.sbc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.sbc-panel { padding: 2.25rem; border: 1px solid var(--color--gray-5); border-radius: var(--border-radius--xxl); }
.sbc-panel-title { font-size: var(--_typography---h5--h5); margin-bottom: 1rem; }
.sbc-panel-text { color: var(--color--gray-3); line-height: 1.55; margin-bottom: 1.5rem; }
.sbc-chips { display: flex; flex-wrap: wrap; gap: .625rem; }
.sbc-chip { padding: .5rem 1rem; border-radius: var(--border-radius--xxxl); background: var(--color--gray-6); border: 1px solid var(--color--gray-5); color: var(--color--gray-1); font-size: .9375rem; font-weight: 600; }

/* CTA panel */
.sbc-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 2rem;
  border-radius: var(--border-radius--xxl);
  background-color: var(--color--gray-1);
  text-align: center;
}
.sbc-cta-panel h2 { margin: .5rem 0 0; color: var(--color--white); }
.sbc-cta-panel p { max-width: 520px; margin: 0 0 1rem; color: var(--color--gray-4); font-size: 1.125rem; line-height: 1.55; }

@media screen and (max-width: 991px) {
  .sbc-product-grid, .sbc-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .sbc-overview { grid-template-columns: 1fr; gap: 1.5rem; }
  .sbc-audience-grid { grid-template-columns: repeat(2, 1fr); border-top: 0; gap: 0; }
  .sbc-audience, .sbc-audience + .sbc-audience { padding: 1.5rem 0; border-left: 0; border-top: 1px solid var(--color--gray-5); }
  .sbc-audience:nth-child(even) { padding-left: 1.5rem; }
  .sbc-split { grid-template-columns: 1fr; }
  .sbc-section { padding: 4.5rem 0; }
}

@media screen and (max-width: 767px) {
  .sbc-product-grid, .sbc-feature-grid, .sbc-audience-grid { grid-template-columns: 1fr; }
  .sbc-audience:nth-child(even) { padding-left: 0; }
  .sbc-section-head.is-row { flex-direction: column; align-items: flex-start; }
  .sbc-panel { padding: 1.75rem; }
  .sbc-cta-panel { padding: 3rem 1.25rem; }
  .sbc-page-hero-text { font-size: 1.0625rem; }
}

.sbc-page-hero .hero-inner-title { width: 100%; max-width: 880px; }

/* Flagship product card (SBC ERP): full width, styled like the About page "Our journey" box */
.sbc-flagship {
  grid-column: 1 / -1;
  display: flex;
  padding: .375rem;
  border: 1px solid var(--color--gray-5);
  border-radius: var(--border-radius--xxl);
  overflow: clip;
}

.sbc-flagship-inner {
  position: relative;
  overflow: clip;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3.125rem 3.125rem 11rem;
  border-radius: var(--border-radius--xl);
  background-color: var(--color--gray-6);
}

.sbc-flagship-intro,
.sbc-flagship-details { position: relative; z-index: 1; display: flex; flex-direction: column; }
.sbc-flagship-intro { gap: 2rem; }
.sbc-flagship-details { gap: 1.75rem; }

.sbc-flagship-decoration {
  pointer-events: none;
  object-fit: cover;
  width: 550px;
  height: 220px;
  position: absolute;
  inset: auto -50px -40px auto;
}

.sbc-flagship-top { display: flex; justify-content: space-between; align-items: center; }
.sbc-flagship-badge {
  padding: .45rem .9rem;
  border: 1px solid var(--color--gray-5);
  border-radius: var(--border-radius--xxxl);
  background: var(--color--white);
  color: var(--color--gray-1);
  font-size: .8125rem;
  font-weight: 600;
}

.sbc-flagship-category { color: var(--color--primary-1); font-size: .875rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.sbc-flagship-name { margin: .75rem 0; font-size: 4.5rem; line-height: 1; letter-spacing: -1.5px; }
.sbc-flagship-tagline { margin: 0 0 1rem; color: var(--color--gray-1); font-family: var(--_typography---font-family--heading); font-size: 1.875rem; line-height: 1.25; font-weight: 500; }
.sbc-flagship-summary { max-width: 460px; margin: 0; color: var(--color--gray-3); font-size: 1.125rem; line-height: 1.6; }

.sbc-flagship-actions { margin-top: auto; }
.sbc-flagship-actions .sbc-cta-buttons { justify-content: flex-start; }

.sbc-flagship-block { padding-top: 1.5rem; border-top: 1px solid var(--color--gray-5); }
.sbc-flagship-details .sbc-flagship-block:first-child { padding-top: 0; border-top: 0; }
.sbc-flagship-label { margin-bottom: 1rem; color: var(--color--gray-3); font-size: .8125rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }

.sbc-flagship-modules { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1rem; }
.sbc-flagship-modules li { display: flex; align-items: center; gap: .6rem; color: var(--color--gray-1); font-size: 1rem; font-weight: 500; }
.sbc-flagship-modules li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--color--primary-1); }

.sbc-flagship-editions { display: flex; flex-wrap: wrap; gap: .5rem; }
.sbc-flagship-editions span { padding: .45rem .9rem; border-radius: var(--border-radius--xxxl); background: var(--color--white); border: 1px solid var(--color--gray-5); color: var(--color--gray-1); font-size: .875rem; font-weight: 600; }

.sbc-flagship-why { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.sbc-flagship-why li { display: flex; align-items: flex-start; gap: .75rem; color: var(--color--gray-1); font-size: 1rem; font-weight: 500; line-height: 1.4; }
.sbc-flagship-why .sbc-check { margin-top: 1px; }

/* Responsive values mirror the template's .our-story-item / .story-decoration-image */
@media screen and (max-width: 991px) {
  .sbc-flagship-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 1.875rem 1.875rem 10rem; }
  .sbc-flagship-name { font-size: 3.5rem; }
  .sbc-flagship-details .sbc-flagship-block:first-child { padding-top: 1.5rem; border-top: 1px solid var(--color--gray-5); }
  .sbc-flagship-decoration { width: 380px; height: 190px; }
}
@media screen and (max-width: 479px) {
  .sbc-flagship { border-radius: var(--border-radius--sm); }
  .sbc-flagship-inner { border-radius: var(--border-radius--sm); padding: 1.25rem 1.25rem 7rem; }
  .sbc-flagship-name { font-size: 2.5rem; }
  .sbc-flagship-tagline { font-size: 1.5rem; }
  .sbc-flagship-modules { grid-template-columns: 1fr; }
  .sbc-flagship-decoration { width: 300px; height: 120px; }
}

/* Desktop: calmer section headings (see sbc-brand.css for the shared tokens) */
@media screen and (min-width: 992px) {
  .wp-section-title,
  .wp-related-title { font-size: 1.875rem; }
  .sbc-flagship-name { font-size: 3.5rem; }
}
