/* Indian Barcode Corporation — platform styles (header, nav, footer, catalog, product page)
   Loaded after Bootstrap 3 + custom.css. Mobile-first, no horizontal overflow. */
:root {
  /* palette from the hero banner: navy + orange + blue accent */
  --ibc-red: #f26b21;
  --ibc-red-dark: #d65a13;
  --ibc-orange: #f26b21;
  --ibc-blue: #1f4fd8;
  --ibc-navy: #0f2a5f;
  --ibc-ink: #222;
  --ibc-muted: #6b7280;
  --ibc-line: #e5e7eb;
  --ibc-bg: #f5f6f8;
  --ibc-green: #25d366;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ibc-bg);
  color: var(--ibc-ink);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ibc-navy);
}

a:hover {
  color: var(--ibc-red);
}

.container {
  width: 100%;
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- legacy overrides so old includes don't fight the new header ---------- */
#header, #navbar, .network-block, .navdown-fixed {
  display: none !important;
}

.full {
  display: none;
}

/* ---------- top bar ---------- */
.ibc-topbar {
  background: var(--ibc-navy);
  color: #cfd6e6;
  font-size: 13px;
  line-height: 34px;
}

.ibc-topbar a {
  color: #fff;
  margin-right: 18px;
  white-space: nowrap;
}

.ibc-topbar a:hover {
  color: #ffc9a6;
  text-decoration: none;
}

.ibc-topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ibc-topbar-right a {
  margin-right: 0;
  margin-left: 18px;
}

.ibc-tagline {
  opacity: .8;
}

@media (max-width: 767px) {
  .ibc-topbar-right, .ibc-topbar a span {
    display: none;
  }

  .ibc-topbar-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .ibc-topbar a {
    margin: 0;
  }
}

/* ---------- header ---------- */
.ibc-header {
  background: #fff;
  border-bottom: 1px solid var(--ibc-line);
}

.ibc-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.ibc-logo img {
  height: 64px;
  width: auto;
}

.ibc-search {
  flex: 1;
  display: flex;
  max-width: 640px;
  margin: 0 auto;
}

.ibc-search input {
  flex: 1;
  height: 44px;
  border: 2px solid #d5dbe7;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 0 14px;
  font-size: 15px;
  min-width: 0;
}

.ibc-search input:focus {
  outline: none;
  border-color: var(--ibc-red);
}

.ibc-search button {
  height: 44px;
  border: 0;
  background: var(--ibc-navy);
  color: #fff;
  padding: 0 18px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
}

.ibc-search button:hover {
  background: #163a80;
}

.ibc-header-cta .btn {
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 18px;
}

.ibc-nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ibc-line);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin-left: auto;
}

.ibc-nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ibc-navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: .2s;
}

.ibc-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ibc-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.ibc-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .ibc-header-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .ibc-logo img {
    height: 48px;
  }

  .ibc-header-cta {
    display: none;
  }

  .ibc-nav-toggle {
    display: block;
  }

  .ibc-search {
    order: 3;
    width: 100%;
    max-width: none;
  }

  .ibc-search button span {
    display: none;
  }
}

/* ---------- primary nav ---------- */
.ibc-nav {
  background: #fff;
  position: relative;
  border-bottom: 1px solid var(--ibc-line);
  box-shadow: 0 2px 6px rgba(15, 42, 95, .06);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.ibc-nav.is-stuck {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.ibc-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.ibc-menu>li {
  position: relative;
}

.ibc-menu>li>a {
  display: block;
  padding: 15px 18px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ibc-navy);
  letter-spacing: .1px;
  border-radius: 6px;
}

.ibc-menu>li>a:hover, .ibc-menu>li.active>a, .ibc-menu>li.open>a {
  color: var(--ibc-red);
  text-decoration: none;
  background: #fff3ea;
}

.ibc-menu>li>a .fa {
  font-size: 12px;
  margin-left: 3px;
}

.ibc-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-top: 3px solid var(--ibc-red);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  display: none;
  z-index: 1040;
}

.ibc-dropdown li a {
  display: block;
  padding: 9px 18px;
  color: var(--ibc-ink);
  font-size: 14px;
}

.ibc-dropdown li a .fa {
  width: 20px;
  color: var(--ibc-red);
}

.ibc-dropdown li a:hover {
  background: var(--ibc-bg);
  color: var(--ibc-red);
  text-decoration: none;
}

.ibc-dropdown li.divider {
  height: 1px;
  background: var(--ibc-line);
  margin: 6px 0;
}

.ibc-menu>li.open>.ibc-dropdown {
  display: block;
}

@media (min-width: 992px) {
  .ibc-nav-collapse.collapse {
    display: block !important;
    height: auto !important;
  }

  .ibc-menu>li.has-dropdown:hover>.ibc-dropdown {
    display: block;
  }

  .ibc-menu-help {
    margin-left: auto;
  }
}

@media (max-width: 991px) {
  .ibc-nav {
    position: static;
  }

  .ibc-menu {
    flex-direction: column;
    padding: 6px 0;
  }

  .ibc-menu>li>a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--ibc-line);
  }

  .ibc-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--ibc-red);
    background: var(--ibc-bg);
    margin: 0 0 6px 8px;
  }
}

/* ---------- WhatsApp float ---------- */
.ibc-wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ibc-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
  z-index: 1050;
}

.ibc-wa-float:hover {
  color: #fff;
  background: #1ebe5b;
  text-decoration: none;
}

/* ---------- footer ---------- */
.ibc-footer {
  background: var(--ibc-navy);
  color: #cfd6e6;
  padding: 40px 0 0;
  margin-top: 40px;
  font-size: 14px;
}

.ibc-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.ibc-footer h4+h4, .ibc-footer ul+h4 {
  margin-top: 20px;
}

.ibc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.ibc-footer li {
  margin-bottom: 7px;
}

.ibc-footer a {
  color: #cfd6e6;
}

.ibc-footer a:hover {
  color: #fff;
}

.ibc-footer p {
  margin-bottom: 8px;
}

.ibc-footer p .fa {
  width: 18px;
  color: #ff7b82;
}

.ibc-footer-tag {
  color: #ff9ca1;
  font-weight: 600;
}

.ibc-footer-col {
  margin-bottom: 24px;
}

.ibc-social a {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  margin-right: 6px;
}

.ibc-footer-small {
  font-size: 13px;
}

.ibc-copyright {
  background: #141c30;
  padding: 14px 0;
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .ibc-copyright .pull-right {
    float: none !important;
    display: block;
    margin-top: 6px;
  }
}

/* ---------- generic page blocks ---------- */
.ibc-page {
  padding: 24px 0 10px;
}

.ibc-breadcrumb {
  font-size: 13px;
  color: var(--ibc-muted);
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.ibc-breadcrumb li+li:before {
  content: "›";
  padding: 0 8px;
  color: #aaa;
}

.ibc-card {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.ibc-h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ibc-navy);
}

.ibc-lead {
  color: var(--ibc-muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.ibc-section-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ibc-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.ibc-section-title a.more {
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ibc-h1 {
    font-size: 22px;
  }
}

/* ---------- product grid ---------- */
.ibc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1199px) {
  .ibc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ibc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.ibc-pcard {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, transform .15s;
}

.ibc-pcard:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
  transform: translateY(-2px);
}

.ibc-pcard .img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #fff;
}

.ibc-pcard .img img {
  max-height: 100%;
  object-fit: contain;
}

.ibc-pcard .body {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--ibc-line);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ibc-pcard .brand {
  font-size: 12px;
  color: var(--ibc-muted);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.ibc-pcard .name {
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  margin: 3px 0 8px;
  color: var(--ibc-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ibc-pcard .cta {
  margin-top: auto;
  display: flex;
  gap: 6px;
}

.ibc-pcard .cta a {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  padding: 6px 4px;
  border-radius: 5px;
}

.ibc-pcard a:hover {
  text-decoration: none;
}

.ibc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: #eef2ff;
  color: var(--ibc-navy);
}

.ibc-badge.success {
  background: #e6f7ec;
  color: #1e7b3a;
}

.ibc-badge.default {
  background: #eee;
  color: #666;
}

/* ---------- hub filters ---------- */
.ibc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.ibc-filters a, .ibc-filters .chip {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--ibc-line);
  border-radius: 20px;
  background: #fff;
  font-size: 13px;
  color: var(--ibc-ink);
}

.ibc-filters a.active {
  background: var(--ibc-navy);
  color: #fff;
  border-color: var(--ibc-navy);
}

.ibc-filters a:hover {
  text-decoration: none;
  border-color: var(--ibc-red);
}

.ibc-filters form {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.ibc-filters input {
  height: 34px;
  border: 1px solid var(--ibc-line);
  border-radius: 20px;
  padding: 0 12px;
}

.ibc-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.ibc-pagination a, .ibc-pagination span {
  padding: 7px 12px;
  border: 1px solid var(--ibc-line);
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
}

.ibc-pagination .current {
  background: var(--ibc-red);
  color: #fff;
  border-color: var(--ibc-red);
}

/* ---------- brand page ---------- */
.ibc-brand-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.ibc-brand-hero .logo {
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  padding: 12px;
}

.ibc-brand-hero .logo img {
  max-height: 90px;
}

.ibc-brand-hero .text {
  flex: 1;
  min-width: 260px;
}

.ibc-service-label {
  display: inline-block;
  background: #fff3ea;
  color: var(--ibc-red);
  border: 1px solid #f5c2c5;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

.ibc-brand-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

@media (max-width: 991px) {
  .ibc-brand-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .ibc-brand-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ibc-brand-tile {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.ibc-brand-tile img {
  max-height: 60px;
  margin-bottom: 8px;
}

.ibc-brand-tile .n {
  font-weight: 600;
  display: block;
}

.ibc-brand-tile small {
  color: var(--ibc-muted);
}

/* ---------- product page ---------- */
.ibc-product-top {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 28px;
}

@media (max-width: 991px) {
  .ibc-product-top {
    grid-template-columns: 1fr;
  }
}

.ibc-gallery-main {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ibc-gallery-main img {
  max-height: 100%;
  object-fit: contain;
}

.ibc-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ibc-gallery-thumbs button {
  width: 64px;
  height: 64px;
  border: 2px solid var(--ibc-line);
  border-radius: 6px;
  background: #fff;
  padding: 4px;
}

.ibc-gallery-thumbs button.active {
  border-color: var(--ibc-red);
}

.ibc-gallery-thumbs img {
  max-height: 100%;
  object-fit: contain;
}

.ibc-product-brand {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--ibc-muted);
}

.ibc-product-brand a {
  font-weight: 700;
  color: var(--ibc-red);
}

.ibc-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--ibc-muted);
  margin: 8px 0 14px;
}

.ibc-price-box {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  padding: 16px;
  margin: 14px 0;
}

.ibc-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-price small {
  font-size: 13px;
  color: var(--ibc-muted);
  font-weight: 400;
}

.ibc-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ibc-cta-row .btn {
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 16px;
}

.btn-wa {
  background: var(--ibc-green);
  color: #fff;
  border: 0;
}

.btn-wa:hover {
  background: #1ebe5b;
  color: #fff;
}

.btn-navy {
  background: var(--ibc-navy);
  color: #fff;
  border: 0;
}

.btn-navy:hover {
  background: #16203a;
  color: #fff;
}

@media (max-width: 480px) {
  .ibc-cta-row .btn {
    flex: 1 1 45%;
    font-size: 13px;
    padding: 10px 8px;
  }
}

.ibc-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
}

.ibc-trust div {
  background: var(--ibc-bg);
  border-radius: 6px;
  padding: 8px 10px;
}

.ibc-trust .fa {
  color: var(--ibc-red);
  margin-right: 4px;
}

@media (max-width: 767px) {
  .ibc-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* tabs */
.ibc-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 2px solid var(--ibc-line);
  margin: 28px 0 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.ibc-tabs a {
  white-space: nowrap;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--ibc-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 14px;
}

.ibc-tabs a.active, .ibc-tabs a:hover {
  color: var(--ibc-red);
  border-color: var(--ibc-red);
  text-decoration: none;
}

.ibc-tab-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 20px;
}

.ibc-tab-panel.active {
  display: block;
}

.ibc-tab-panel h2, .ibc-tab-panel h3 {
  font-size: 18px;
  margin: 18px 0 10px;
  color: var(--ibc-navy);
}

.ibc-tab-panel h2:first-child, .ibc-tab-panel h3:first-child {
  margin-top: 0;
}

.ibc-tab-panel img {
  max-width: 100%;
  height: auto;
}

.ibc-tab-panel table {
  width: 100%;
  max-width: 100%;
}

.ibc-table-wrap {
  overflow-x: auto;
}

.ibc-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ibc-spec-table th, .ibc-spec-table td {
  border: 1px solid var(--ibc-line);
  padding: 8px 12px;
  vertical-align: top;
  text-align: left;
}

.ibc-spec-table th {
  width: 34%;
  background: var(--ibc-bg);
  font-weight: 600;
}

.ibc-spec-table .group td {
  background: #eef2ff;
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-legacy-html {
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.ibc-legacy-html table {
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}

.ibc-legacy-html td, .ibc-legacy-html th {
  border: 1px solid var(--ibc-line);
  padding: 6px 10px;
}

.ibc-download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--ibc-line);
  border-radius: 6px;
  margin-bottom: 8px;
  background: #fff;
}

.ibc-download .fa {
  font-size: 24px;
  color: var(--ibc-red);
}

.ibc-compat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 767px) {
  .ibc-compat-list {
    grid-template-columns: 1fr;
  }
}

.ibc-compat-list li {
  border: 1px solid var(--ibc-line);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
}

.ibc-compat-list img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ibc-faq details {
  border: 1px solid var(--ibc-line);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 8px;
  background: #fff;
}

.ibc-faq summary {
  font-weight: 600;
  cursor: pointer;
}

.ibc-note {
  font-size: 13px;
  color: var(--ibc-muted);
}

.ibc-inquiry-form .form-control {
  height: 42px;
  border-radius: 6px;
}

.ibc-inquiry-form textarea.form-control {
  height: auto;
}

.ibc-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .ibc-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: #fff;
    border-top: 1px solid var(--ibc-line);
    padding: 8px;
    gap: 8px;
  }

  .ibc-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
  }

  .ibc-wa-float {
    bottom: 70px;
  }

  body.has-sticky-cta {
    padding-bottom: 64px;
  }
}
/* mobile top bar: phone + WhatsApp only */
@media (max-width: 767px) {
  .ibc-topbar-left a:nth-child(2) { display: none; }
  .ibc-topbar-left a { font-size: 13px; }
}
.ibc-tabs { overflow-y: hidden; }

/* services */
.ibc-service-tiles {
  grid-template-columns: repeat(3, 1fr);
}

.ibc-service-tile {
  display: block;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  padding: 20px 18px;
  color: var(--ibc-text);
  transition: box-shadow .15s, border-color .15s;
}

.ibc-service-tile:hover {
  text-decoration: none;
  border-color: var(--ibc-red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  color: var(--ibc-text);
}

.ibc-service-tile > .fa {
  font-size: 28px;
  color: var(--ibc-red);
  margin-bottom: 10px;
}

.ibc-service-tile h2 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ibc-navy);
}

.ibc-service-tile p {
  font-size: 13.5px;
  color: var(--ibc-muted);
  min-height: 40px;
}

.ibc-service-tile .more {
  color: var(--ibc-red);
  font-weight: 600;
  font-size: 13px;
}

.ibc-service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ibc-service-options > div {
  background: var(--ibc-bg);
  border-radius: 8px;
  padding: 16px;
}

.ibc-service-options .fa {
  font-size: 24px;
  color: var(--ibc-red);
}

.ibc-service-options h3 {
  font-size: 15px;
  margin: 8px 0 6px;
  color: var(--ibc-navy);
}

.ibc-service-options p {
  font-size: 13px;
  margin: 0;
  color: var(--ibc-muted);
}

.ibc-inquiry-form .has-error .form-control {
  border-color: #c9302c;
}

@media (max-width: 991px) {
  .ibc-service-tiles, .ibc-service-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ibc-service-tiles, .ibc-service-options {
    grid-template-columns: 1fr;
  }
}
.ibc-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibc-link-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--ibc-line);
  font-size: 14px;
}

.ibc-link-list li:last-child {
  border-bottom: 0;
}

.ibc-link-list li::before {
  content: "\203A";
  color: var(--ibc-red);
  font-weight: 700;
  margin-right: 8px;
}

/* ---------- header additions (banner palette) ---------- */
.btn-danger, .btn-danger:focus {
  background: var(--ibc-orange);
  border-color: var(--ibc-orange);
  color: #fff;
}

.btn-danger:hover, .btn-danger:active {
  background: var(--ibc-red-dark);
  border-color: var(--ibc-red-dark);
  color: #fff;
}

.btn-outline-navy {
  background: #fff;
  border: 2px solid var(--ibc-navy);
  color: var(--ibc-navy);
  font-weight: 600;
}

.btn-outline-navy:hover {
  background: var(--ibc-navy);
  color: #fff;
}

.ibc-topbar-quote {
  background: var(--ibc-orange);
  color: #fff !important;
  padding: 0 14px;
  margin-left: 6px;
  display: inline-block;
  font-weight: 600;
}

.ibc-topbar-quote:hover {
  background: var(--ibc-red-dark);
}

.ibc-topbar .container {
  padding-right: 0;
}

.ibc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ibc-logo-text {
  display: none;
  line-height: 1.15;
}

.ibc-logo-text strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 15px;
}

.ibc-logo-text small {
  display: block;
  color: var(--ibc-muted);
  font-size: 12px;
}

@media (min-width: 1200px) {
  .ibc-logo-text {
    display: block;
  }
}

.ibc-menu-home>a {
  padding-left: 22px;
  padding-right: 22px;
}

.ibc-menu>li.ibc-menu-home.active>a {
  background: var(--ibc-orange);
  color: #fff;
}

.ibc-menu-help>a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: #fff3ea;
  padding: 6px 16px !important;
  margin: 4px 0;
  line-height: 1.1;
}

.ibc-menu-help>a:hover {
  background: #ffe6d3;
}

.ibc-menu-help .fa {
  font-size: 22px !important;
  color: var(--ibc-orange);
  margin: 0 !important;
}

.ibc-menu-help small {
  display: block;
  font-size: 11px;
  color: var(--ibc-orange);
  font-weight: 600;
}

.ibc-menu-help strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14px;
}

@media (max-width: 991px) {
  .ibc-menu-help>a {
    display: inline-flex !important;
  }

  .ibc-topbar-quote {
    display: none;
  }
}

/* ---------- home page ---------- */
.ibc-home .ibc-section {
  padding: 28px 0 8px;
}

.ibc-home .ibc-section-alt {
  background: #fff;
  border-top: 1px solid var(--ibc-line);
  border-bottom: 1px solid var(--ibc-line);
  padding-bottom: 28px;
}

.ibc-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ibc-sec-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-sec-head p {
  margin: 4px 0 0;
  color: var(--ibc-muted);
  font-size: 13.5px;
}

.ibc-sec-head>a {
  font-weight: 600;
  color: var(--ibc-navy);
  white-space: nowrap;
}

.ibc-sec-head>a:hover {
  color: var(--ibc-orange);
  text-decoration: none;
}

/* hero */
.ibc-hero {
  background: #eef2f8;
}

.ibc-hero-banner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.ibc-hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.ibc-hero-overlay {
  position: absolute;
  left: 3.6%;
  bottom: 5.5%;
  display: flex;
  gap: 12px;
}

.ibc-hero-overlay .btn, .ibc-hero-cta .btn {
  border-radius: 8px;
  font-weight: 700;
  padding: 11px 22px;
  font-size: 15px;
}

.ibc-hero-text {
  display: none;
  padding: 22px 0 18px;
}

.ibc-hero-text .eyebrow {
  display: block;
  letter-spacing: 2px;
  font-size: 12px;
  color: #4b5872;
  text-transform: uppercase;
}

.ibc-hero-text h1 {
  margin: 6px 0 4px;
  font-size: 28px;
  font-weight: 800;
  color: var(--ibc-navy);
  line-height: 1.15;
}

.ibc-hero-text .sub {
  color: var(--ibc-orange);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.ibc-hero-text .feats {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-hero-text .feats .fa {
  color: var(--ibc-blue);
  width: 18px;
}

.ibc-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .ibc-hero-overlay {
    display: none;
  }

  .ibc-hero-text {
    display: block;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .ibc-hero-overlay .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* brand strip */
.ibc-brand-strip {
  background: #fff;
  border-bottom: 1px solid var(--ibc-line);
}

.ibc-brand-strip .logos {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.ibc-brand-strip .logos::-webkit-scrollbar {
  display: none;
}

.ibc-brand-strip .logos a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 44px;
}

.ibc-brand-strip .logos img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  transition: transform .15s;
}

.ibc-brand-strip .logos a:hover img {
  transform: scale(1.06);
}

.ibc-brand-strip .logos .txt {
  font-weight: 800;
  font-size: 20px;
  color: var(--ibc-navy);
  letter-spacing: 1px;
}

.ibc-brand-strip .logos .all {
  margin-left: auto;
  font-weight: 600;
  color: var(--ibc-navy);
  white-space: nowrap;
}

/* categories */
.ibc-cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.ibc-cat-card {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 14px 10px 12px;
  text-align: center;
  color: var(--ibc-ink);
  display: block;
  transition: box-shadow .15s, border-color .15s;
}

.ibc-cat-card:hover {
  text-decoration: none;
  border-color: var(--ibc-orange);
  box-shadow: 0 6px 16px rgba(15, 42, 95, .1);
  color: var(--ibc-ink);
}

.ibc-cat-card .img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.ibc-cat-card .img img {
  max-height: 110px;
  width: auto;
  max-width: 100%;
}

.ibc-cat-card .img .fa {
  font-size: 44px;
  color: var(--ibc-blue);
}

.ibc-cat-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ibc-navy);
}

.ibc-cat-card p {
  font-size: 11.5px;
  color: var(--ibc-muted);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1199px) {
  .ibc-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .ibc-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* solutions band */
.ibc-band {
  margin-top: 24px;
  background: #fff;
  border-top: 1px solid var(--ibc-line);
  border-bottom: 1px solid var(--ibc-line);
}

.ibc-band-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.ibc-band-left {
  background: linear-gradient(105deg, var(--ibc-navy) 0%, #1a3f96 60%, var(--ibc-blue) 100%);
  color: #fff;
  padding: 32px 36px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.ibc-band-left h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.ibc-band-left p {
  color: #d7e0f5;
  margin-bottom: 14px;
}

.ibc-band-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 18px 8px;
  text-align: center;
}

.ibc-band-stats .fa {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf0fb;
  color: var(--ibc-blue);
  font-size: 22px;
  margin-bottom: 8px;
}

.ibc-band-stats strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 20px;
}

.ibc-band-stats span {
  display: block;
  font-size: 12px;
  color: var(--ibc-muted);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .ibc-band-inner {
    grid-template-columns: 1fr;
  }

  .ibc-band-left {
    clip-path: none;
    padding: 24px 20px;
  }

  .ibc-band-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 0;
  }
}

/* popular products */
.ibc-pill-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ibc-pill-tabs button {
  background: #fff;
  border: 1px solid #c9d2e3;
  color: var(--ibc-navy);
  border-radius: 6px;
  padding: 6px 18px;
  font-weight: 600;
  font-size: 13.5px;
}

.ibc-pill-tabs button.active {
  background: var(--ibc-orange);
  border-color: var(--ibc-orange);
  color: #fff;
}

.ibc-pop-panel {
  display: none;
}

.ibc-pop-panel.active {
  display: block;
}

.ibc-pop-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ibc-pop-card {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s;
}

.ibc-pop-card:hover {
  box-shadow: 0 6px 16px rgba(15, 42, 95, .1);
}

.ibc-pop-card .img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ibc-pop-card .img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}

.ibc-pop-card .name {
  font-weight: 700;
  color: var(--ibc-navy);
  font-size: 13.5px;
  margin: 8px 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ibc-pop-card .spec {
  font-size: 11.5px;
  color: var(--ibc-muted);
  margin-bottom: 10px;
  min-height: 16px;
}

.ibc-pop-card .btn {
  margin-top: auto;
  border-radius: 6px;
  border-color: var(--ibc-orange);
  color: var(--ibc-navy);
}

.ibc-pop-card .btn:hover {
  background: var(--ibc-orange);
  border-color: var(--ibc-orange);
  color: #fff;
}

@media (max-width: 1199px) {
  .ibc-pop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .ibc-pop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .ibc-pop-card .img {
    height: 120px;
  }
}

/* services */
.ibc-svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ibc-svc-card {
  background: #f4f7fc;
  border: 1px solid #e3e9f4;
  border-radius: 10px;
  padding: 16px;
  color: var(--ibc-ink);
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, border-color .15s;
}

.ibc-svc-card:hover {
  text-decoration: none;
  border-color: var(--ibc-orange);
  box-shadow: 0 6px 16px rgba(15, 42, 95, .1);
  color: var(--ibc-ink);
}

.ibc-svc-card .top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ibc-svc-card .top .fa {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ibc-blue);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

.ibc-svc-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0;
  color: var(--ibc-navy);
}

.ibc-svc-card p {
  font-size: 12.5px;
  color: #3f4a5f;
  flex: 1;
}

.ibc-svc-card p strong {
  color: var(--ibc-orange);
}

.ibc-svc-card .more {
  color: var(--ibc-orange);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 1199px) {
  .ibc-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ibc-svc-grid {
    grid-template-columns: 1fr;
  }
}

/* trust band */
.ibc-trust-band {
  background: var(--ibc-navy);
  color: #fff;
  margin-top: 20px;
}

.ibc-trust-band .items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 18px 0;
}

.ibc-trust-band .items div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.3;
}

.ibc-trust-band .items div + div {
  border-left: 1px solid rgba(255, 255, 255, .15);
  padding-left: 16px;
}

.ibc-trust-band .fa {
  font-size: 26px;
  color: #fff;
  flex: 0 0 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .ibc-trust-band .items {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-trust-band .items div + div {
    border-left: 0;
    padding-left: 0;
  }
}

/* about */
.ibc-about {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.ibc-about-logo {
  background: linear-gradient(160deg, #eef2f8, #fff);
  border-radius: 8px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ibc-about-logo img {
  max-height: 100px;
  width: auto;
}

.ibc-about-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ibc-navy);
  margin: 0;
}

.ibc-about-text .unit {
  color: var(--ibc-orange);
  font-weight: 700;
  margin: 2px 0 8px;
}

.ibc-about-text p {
  font-size: 13.5px;
  color: #3f4a5f;
}

.ibc-about-contact {
  background: #f4f7fc;
  border-radius: 8px;
  padding: 16px 18px;
}

.ibc-about-contact h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ibc-navy);
}

.ibc-about-contact a, .ibc-about-contact .serving {
  display: block;
  padding: 5px 0;
  color: var(--ibc-ink);
  font-size: 13.5px;
}

.ibc-about-contact .fa {
  width: 22px;
  color: var(--ibc-orange);
}

.ibc-about-contact .serving {
  border-top: 1px solid var(--ibc-line);
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 600;
  color: var(--ibc-navy);
}

@media (max-width: 991px) {
  .ibc-about {
    grid-template-columns: 1fr;
  }

  .ibc-about-logo {
    height: 120px;
  }
}
/* ---------- mega menus (desktop) ---------- */
.ibc-nav .container {
  position: relative;
}

.ibc-mega {
  display: none;
  position: absolute;
  left: 20px;
  right: 20px;
  top: 100%;
  z-index: 1045;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 18px 40px rgba(15, 42, 95, .18);
  text-transform: none;
}

.ibc-mega-narrow {
  right: auto;
  left: 0;
  width: 780px;
  max-width: calc(100vw - 40px);
}

.ibc-mega-narrow.flip {
  left: auto;
  right: 0;
}

@media (min-width: 992px) {
  .ibc-menu>li.has-mega {
    position: static;
  }

  .ibc-menu>li.has-mega.has-narrow {
    position: relative;
  }

  .ibc-menu>li.has-mega:hover>.ibc-mega, .ibc-menu>li.has-mega.open>.ibc-mega {
    display: block;
  }

  .ibc-menu>li.has-mega>.ibc-dropdown {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .ibc-mega {
    display: none !important;
  }
}

.ibc-mega-inner {
  padding: 18px;
}

.ibc-mega a {
  text-decoration: none;
}

/* products mega */
.ibc-mega-products {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 18px;
}

.ibc-mega-promo {
  background: #eef2f8;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.ibc-mega-promo .eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4b5872;
}

.ibc-mega-promo h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 6px 0 8px;
  line-height: 1.2;
}

.ibc-mega-promo p {
  font-size: 13px;
  color: #4b5872;
}

.ibc-mega-promo .ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ibc-navy);
  font-weight: 600;
}

.ibc-mega-promo .ticks li {
  padding: 3px 0;
}

.ibc-mega-promo .ticks .fa {
  width: 22px;
  color: var(--ibc-blue);
}

.ibc-mega-promo .btn {
  border-radius: 8px;
  font-weight: 700;
  padding: 9px 16px;
}

.ibc-mega-promo>img {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-radius: 8px;
  object-fit: cover;
  height: 140px;
  object-position: 68% 50%;
}

.ibc-mega-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 18px;
}

.ibc-mega-col .head {
  display: block;
  font-weight: 800;
  color: var(--ibc-navy);
  font-size: 15px;
  margin-bottom: 6px;
}

.ibc-mega-col .head>.fa:first-child {
  color: var(--ibc-blue);
  width: 24px;
  font-size: 18px;
}

.ibc-mega-col .head .fa-angle-right {
  font-size: 12px;
  margin-left: 4px;
}

.ibc-mega-col .sub {
  display: block;
  font-size: 13.5px;
  color: #3f4a5f;
  padding: 3px 0 3px 24px;
}

.ibc-mega-col .sub:hover, .ibc-mega-morebrands a:hover, .ibc-mega-list a:hover strong {
  color: var(--ibc-orange);
}

.ibc-mega-col .all, .ibc-mega-morebrands .all {
  display: block;
  color: var(--ibc-blue);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 0 0 24px;
}

.ibc-mega-help {
  grid-column: 4;
  background: #fff3ea;
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
}

.ibc-mega-help>.fa {
  font-size: 26px;
  color: var(--ibc-orange);
}

.ibc-mega-help strong {
  display: block;
  color: var(--ibc-orange);
  font-size: 15px;
  margin-top: 6px;
}

.ibc-mega-help span {
  display: block;
  color: #4b5872;
  margin-bottom: 10px;
}

.ibc-mega-help .btn {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  border-radius: 8px;
}

.ibc-mega-help a:not(.btn) {
  display: block;
  color: var(--ibc-navy);
  font-weight: 600;
  padding: 3px 0;
}

.ibc-mega-help a:not(.btn) .fa {
  width: 20px;
  color: var(--ibc-blue);
}

.ibc-mega-help a:not(.btn) .fa-whatsapp {
  color: var(--ibc-green);
}

/* brands mega */
.ibc-mega-brands {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
}

.ibc-mega-brands .ibc-mega-strip {
  grid-column: 1 / -1;
}

.ibc-mega-brandgrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.ibc-mega-brand {
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  color: var(--ibc-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .15s, border-color .15s;
}

.ibc-mega-brand:hover {
  border-color: var(--ibc-orange);
  box-shadow: 0 6px 16px rgba(15, 42, 95, .1);
}

.ibc-mega-brand .logo {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ibc-mega-brand .logo img {
  max-height: 30px;
  max-width: 110px;
}

.ibc-mega-brand .pic {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
}

.ibc-mega-brand .pic img {
  max-height: 90px;
  max-width: 100%;
}

.ibc-mega-brand strong {
  color: var(--ibc-navy);
  font-size: 14px;
}

.ibc-mega-brand small {
  color: var(--ibc-muted);
  font-size: 11.5px;
  line-height: 1.3;
  margin: 3px 0 8px;
  text-align: left;
  align-self: stretch;
}

.ibc-mega-brand em {
  font-style: normal;
  color: var(--ibc-blue);
  font-weight: 700;
  font-size: 12.5px;
  margin-top: auto;
  align-self: flex-start;
}

.ibc-mega-morebrands {
  background: #f4f7fc;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
}

.ibc-mega-morebrands strong {
  display: block;
  color: var(--ibc-navy);
  border-bottom: 1px solid var(--ibc-line);
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.ibc-mega-morebrands a {
  display: flex;
  justify-content: space-between;
  color: #3f4a5f;
  padding: 4px 0;
}

.ibc-mega-morebrands .all {
  padding: 8px 0 0;
  justify-content: flex-start;
  gap: 6px;
}

.ibc-mega-strip {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  flex-wrap: wrap;
  background: #f4f7fc;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  color: var(--ibc-navy);
  font-weight: 600;
}

.ibc-mega-strip .fa {
  color: var(--ibc-blue);
  font-size: 18px;
  margin-right: 6px;
}

/* services megas */
.ibc-mega-services {
  padding: 0;
}

.ibc-mega-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #fff;
  border-radius: 0;
}

.ibc-mega-head.orange {
  background: var(--ibc-orange);
}

.ibc-mega-head.navy {
  background: var(--ibc-blue);
}

.ibc-mega-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.ibc-mega-head p {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}

.ibc-mega-head>a {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  font-size: 13.5px;
}

.ibc-mega-list {
  display: grid;
  padding: 14px 20px;
  gap: 6px 22px;
}

.ibc-mega-list.two {
  grid-template-columns: 1fr 1fr;
}

.ibc-mega-list.one {
  grid-template-columns: 1fr;
}

.ibc-mega-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  color: var(--ibc-ink);
  border-bottom: 1px solid #f0f2f6;
}

.ibc-mega-list a>.fa:first-child {
  font-size: 22px;
  color: var(--ibc-blue);
  width: 30px;
  text-align: center;
  margin-top: 2px;
}

.ibc-mega-list a>span {
  flex: 1;
}

.ibc-mega-list strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14px;
}

.ibc-mega-list small {
  display: block;
  color: var(--ibc-muted);
  font-size: 12px;
  line-height: 1.35;
}

.ibc-mega-list .end {
  color: var(--ibc-muted);
  align-self: center;
}

.ibc-mega-foot {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 6px 14px 14px;
  border-radius: 10px;
  padding: 12px;
}

.ibc-mega-foot.orange {
  background: #fff3ea;
}

.ibc-mega-foot.navy {
  background: #eaf0fb;
}

.ibc-mega-foot img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  object-position: 62% 50%;
  border-radius: 8px;
}

.ibc-mega-foot strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 17px;
}

.ibc-mega-foot span {
  display: block;
  color: #4b5872;
  font-size: 13px;
  margin: 2px 0 8px;
}

.ibc-mega-foot .btn {
  font-weight: 700;
  border-radius: 8px;
}

@media (max-width: 1279px) {
  .ibc-mega-brandgrid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ibc-mega-cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .ibc-mega-help {
    grid-column: auto;
  }
}
/* solutions band: full banner on desktop, text band on mobile */
.ibc-band-img {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.ibc-band-img img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: 50% 42%;
}

.ibc-band-cta {
  position: absolute;
  left: 29.7%;
  top: 63%;
  border-radius: 8px;
  font-weight: 700;
  padding: 10px 20px;
}

@media (min-width: 992px) {
  .ibc-band .container {
    display: none;
  }
}

@media (max-width: 991px) {
  .ibc-band-img {
    display: none;
  }
}

/* ---------- page hero (contact) ---------- */
.ibc-page-hero {
  background: linear-gradient(90deg, #eef2f8 0%, #f6f8fc 60%, #eef2f8 100%);
  border-bottom: 1px solid var(--ibc-line);
}

.ibc-page-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: center;
}

.ibc-page-hero .ibc-breadcrumb {
  margin: 12px 0 6px;
}

.ibc-page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 6px;
}

.ibc-page-hero .sub {
  font-size: 19px;
  font-weight: 700;
  color: var(--ibc-blue);
  margin-bottom: 8px;
}

.ibc-page-hero .text>p:last-child {
  color: #3f4a5f;
  margin-bottom: 18px;
}

.ibc-page-hero .art {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ibc-page-hero .art img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: 66% 50%;
  clip-path: inset(0 12% 0 0);
}

.ibc-page-hero .art .tag {
  position: absolute;
  right: 0;
  top: 14px;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  color: var(--ibc-orange);
  font-size: 22px;
  line-height: 1.25;
  transform: rotate(-8deg);
  text-align: right;
}

@media (max-width: 991px) {
  .ibc-page-hero .container {
    grid-template-columns: 1fr;
  }

  .ibc-page-hero .art {
    display: none;
  }

  .ibc-page-hero h1 {
    font-size: 30px;
  }
}

/* ---------- contact / quote ---------- */
.ibc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  margin: 20px 0;
  align-items: start;
}

.ibc-quote-form .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.ibc-quote-form .head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-quote-form .head h2 .fa {
  color: var(--ibc-orange);
  margin-right: 6px;
}

.ibc-quote-form label {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ibc-navy);
}

.ibc-input {
  position: relative;
  display: flex;
  align-items: center;
}

.ibc-input>.fa {
  position: absolute;
  left: 13px;
  color: #8a94a8;
  z-index: 2;
  pointer-events: none;
}

.ibc-input.area>.fa {
  top: 13px;
}

.ibc-input .form-control {
  padding-left: 38px;
}

.ibc-input .pre {
  position: absolute;
  left: 36px;
  color: var(--ibc-navy);
  font-weight: 600;
  z-index: 2;
  border-right: 1px solid var(--ibc-line);
  padding-right: 8px;
}

.ibc-input .pre+.form-control {
  padding-left: 80px;
}

.ibc-inquiry-form select.form-control {
  height: 42px;
}

.ibc-radios label {
  font-weight: 500;
  margin-right: 22px;
}

.ibc-radios input {
  margin-right: 4px;
  accent-color: var(--ibc-blue);
}

.ibc-check {
  font-weight: 500 !important;
}

.ibc-check input {
  margin-right: 6px;
  accent-color: var(--ibc-orange);
}

.ibc-contact-side .ibc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ibc-navy);
  margin: 0 0 12px;
}

.ibc-why {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibc-why li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 7px 0;
}

.ibc-why .fa {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 40px;
}

.ibc-why strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14px;
}

.ibc-why small {
  color: var(--ibc-muted);
  font-size: 12.5px;
}

.ibc-assist .big {
  font-size: 30px;
  color: var(--ibc-orange);
  float: left;
  margin: 2px 12px 0 0;
}

.ibc-assist p {
  color: var(--ibc-muted);
  margin: 0 0 12px;
}

.ibc-assist .btns {
  display: flex;
  gap: 8px;
  clear: both;
}

.ibc-assist .btns .btn {
  flex: 1;
  border-radius: 8px;
  font-weight: 700;
  padding: 9px 6px;
  font-size: 13px;
}

.btn-outline-orange {
  border: 2px solid var(--ibc-orange);
  color: var(--ibc-orange);
  background: #fff;
}

.btn-outline-orange:hover {
  background: var(--ibc-orange);
  color: #fff;
}

.ibc-assist .lines {
  margin: 12px 0 0;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 6px;
}

.ibc-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.ibc-logo-row img {
  max-height: 28px;
  max-width: 110px;
}

.ibc-logo-row strong {
  color: var(--ibc-navy);
  font-size: 16px;
}

.ibc-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
}

.ibc-trust-band.light {
  background: #fff;
  color: var(--ibc-navy);
  border-top: 1px solid var(--ibc-line);
  margin-top: 0;
}

.ibc-trust-band.light .fa {
  color: var(--ibc-blue);
}

.ibc-trust-band.light .items div+div {
  border-left-color: var(--ibc-line);
}

@media (max-width: 991px) {
  .ibc-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- about ---------- */
.ibc-about-hero {
  position: relative;
  background: #eef2f8;
}

.ibc-about-hero picture img {
  display: block;
  width: 100%;
  height: auto;
}

.ibc-about-hero-text {
  display: none;
  padding: 20px 0;
}

.ibc-about-hero-text h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 6px;
}

.ibc-about-hero-text .sub {
  color: var(--ibc-orange);
  font-weight: 700;
  font-size: 16px;
}

.ibc-about-hero-text .chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-about-hero-text .chips .fa {
  color: var(--ibc-blue);
  width: 18px;
}

@media (max-width: 991px) {
  .ibc-about-hero picture {
    display: none;
  }

  .ibc-about-hero-text {
    display: block;
  }
}

.ibc-about-page .eyebrow {
  display: block;
  color: var(--ibc-orange);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.ibc-about-page h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 12px;
  line-height: 1.2;
}

.ibc-about-page p {
  color: #3f4a5f;
  font-size: 14.5px;
  line-height: 1.6;
}

.ibc-about-company, .ibc-about-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.ibc-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f4f7fc;
  border-radius: 10px;
  padding: 16px;
}

.ibc-stat-grid div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 8px;
}

.ibc-stat-grid .fa {
  grid-row: span 2;
  font-size: 28px;
  color: var(--ibc-orange);
  text-align: center;
}

.ibc-stat-grid strong {
  font-size: 22px;
  color: var(--ibc-navy);
  line-height: 1.1;
}

.ibc-stat-grid span {
  font-size: 12.5px;
  color: var(--ibc-muted);
}

.ibc-quote {
  background: #eef2f8;
  border: 0;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 14px 0 0;
  position: relative;
}

.ibc-quote .fa-quote-left {
  color: #b9c4dc;
  font-size: 22px;
  position: absolute;
  left: 14px;
  top: 12px;
}

.ibc-quote p {
  margin: 0 0 6px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-quote cite {
  display: block;
  margin-left: 26px;
  font-style: normal;
  font-size: 13px;
  color: var(--ibc-muted);
}

.ibc-quote.dark {
  background: #f4f7fc;
}

.ibc-vmv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
}

.ibc-vmv>div {
  padding: 22px;
  border-right: 1px solid var(--ibc-line);
}

.ibc-vmv>div:last-child {
  border-right: 0;
}

.ibc-vmv .fa {
  font-size: 26px;
  color: var(--ibc-orange);
  margin-bottom: 8px;
}

.ibc-vmv h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ibc-navy);
  margin: 0 0 8px;
}

.ibc-vmv p, .ibc-vmv li {
  font-size: 13.5px;
  color: #3f4a5f;
  margin: 0;
}

.ibc-vmv ul {
  padding-left: 18px;
  margin: 0;
}

.ibc-sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ibc-sol-grid a {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: var(--ibc-navy);
  display: block;
}

.ibc-sol-grid a:hover {
  border-color: var(--ibc-orange);
  text-decoration: none;
}

.ibc-sol-grid .pic {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.ibc-sol-grid .pic img {
  max-height: 96px;
  max-width: 100%;
}

.ibc-sol-grid .pic .fa {
  font-size: 36px;
  color: var(--ibc-blue);
}

.ibc-sol-grid strong {
  font-size: 13px;
}

.ibc-leader {
  display: grid;
  grid-template-columns: 240px 1fr 340px;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 22px;
}

.ibc-leader .photo img {
  width: 100%;
  border-radius: 8px;
}

.ibc-leader .role {
  color: var(--ibc-orange);
  font-weight: 700;
  margin-bottom: 8px;
}

.ibc-about-brands {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 18px 22px;
}

.ibc-about-brands .ibc-logo-row {
  gap: 16px 34px;
}

.ibc-about-band {
  margin-top: 24px;
  background: linear-gradient(105deg, var(--ibc-navy) 0%, #1a3f96 60%, var(--ibc-blue) 100%);
  color: #fff;
  padding: 34px 0;
}

.ibc-about-band .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.ibc-about-band h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}

.ibc-about-band p {
  color: #d7e0f5;
  margin-bottom: 14px;
}

.ibc-about-band .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.ibc-about-band .stats div+div {
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.ibc-about-band .stats .fa {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}

.ibc-about-band .stats strong {
  display: block;
  font-size: 15px;
}

.ibc-about-band .stats span {
  font-size: 12.5px;
  color: #d7e0f5;
}

@media (max-width: 991px) {
  .ibc-about-company, .ibc-about-products, .ibc-about-band .container {
    grid-template-columns: 1fr;
  }

  .ibc-vmv {
    grid-template-columns: 1fr;
  }

  .ibc-vmv>div {
    border-right: 0;
    border-bottom: 1px solid var(--ibc-line);
  }

  .ibc-leader {
    grid-template-columns: 1fr;
  }

  .ibc-leader .photo {
    max-width: 240px;
  }

  .ibc-sol-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-about-band .stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ibc-about-band .stats div+div {
    border-left: 0;
  }
}
/* bootstrap clearfix pseudo-elements would become grid items */
.ibc-page-hero .container::before, .ibc-page-hero .container::after,
.ibc-about-band .container::before, .ibc-about-band .container::after {
  display: none;
}

.ibc-page-hero .art {
  height: 240px;
}

.ibc-page-hero .art img {
  right: 60px;
  clip-path: inset(0 8% 0 0);
}

.ibc-vmv {
  margin-bottom: 24px;
}

/* brand marquee */
.ibc-marquee-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}

.ibc-marquee-wrap .all {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--ibc-navy);
  white-space: nowrap;
  padding-left: 16px;
  border-left: 1px solid var(--ibc-line);
}

.ibc-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ibc-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ibc-marquee calc(var(--n) * 2.4s) linear infinite;
}

.ibc-marquee:hover .ibc-track {
  animation-play-state: paused;
}

.ibc-track>a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 44px;
  margin-right: 56px;
}

.ibc-track img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
}

.ibc-track .txt {
  font-weight: 800;
  font-size: 20px;
  color: var(--ibc-navy);
  letter-spacing: 1px;
}

@keyframes ibc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ibc-track {
    animation: none;
  }

  .ibc-marquee {
    overflow-x: auto;
  }
}

.ibc-band-img {
  max-width: 1480px;
  padding: 0 20px;
}

.ibc-band-img img {
  height: 225px;
  border-radius: 10px;
}

.ibc-band-cta {
  left: calc(29.7% + 6px);
  top: 64%;
}

/* service illustrations */
.ibc-svc-card .top img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.ibc-service-tile .pic {
  width: 72px;
  height: 72px;
  display: block;
  margin-bottom: 10px;
}

.ibc-service-hero-generic {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.ibc-service-hero-generic .pic {
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
}

.ibc-service-hero-generic .text {
  flex: 1;
  min-width: 260px;
}

/* solutions band: full actual image, edge to edge like the hero (override the earlier crop) */
.ibc-band-img {
  max-width: 1920px;
  padding: 0;
}

.ibc-band-img img {
  height: auto;
  object-fit: fill;
  border-radius: 0;
}

.ibc-band-cta {
  left: 29.7%;
  top: 60%;
}

/* registration cards: logo image like the mockup */
.ibc-svc-card .top img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}

/* contact hero: full banner with text overlaid on the left (text block above the image on small screens) */
.ibc-page-hero-banner {
  position: relative;
  background: #eaf1fb;
}

.ibc-page-hero-banner picture img {
  display: block;
  width: 100%;
  height: auto;
}

.ibc-page-hero-banner .ibc-page-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.ibc-page-hero-banner .ibc-page-hero-text .container {
  display: block;
}

.ibc-page-hero-banner .text {
  max-width: 44%;
}

.ibc-page-hero-banner h1 {
  font-size: 46px;
}

.ibc-page-hero-banner .text>p:last-of-type {
  font-size: 15px;
}

.ibc-page-hero-banner .text .btn {
  border-radius: 8px;
  font-weight: 700;
  padding: 11px 22px;
}

@media (max-width: 1199px) {
  .ibc-page-hero-banner h1 {
    font-size: 34px;
  }

  .ibc-page-hero-banner .sub {
    font-size: 16px;
  }

  .ibc-page-hero-banner .text>p:last-of-type, .ibc-page-hero-banner .ibc-breadcrumb {
    display: none;
  }
}

@media (max-width: 767px) {
  .ibc-page-hero-banner .ibc-page-hero-text {
    position: static;
    padding: 18px 0 14px;
  }

  .ibc-page-hero-banner .text {
    max-width: none;
  }

  .ibc-page-hero-banner h1 {
    font-size: 28px;
  }

  .ibc-page-hero-banner .text>p:last-of-type, .ibc-page-hero-banner .ibc-breadcrumb {
    display: block;
  }
}

/* registration card tones (per the home mockup) */
.ibc-svc-card.tone-barcode { background: #eaf1fb; border-color: #d8e4f7; }
.ibc-svc-card.tone-food { background: #fff1e4; border-color: #fbe0c6; }
.ibc-svc-card.tone-trademark-registration { background: #fde9ec; border-color: #f9d3d9; }
.ibc-svc-card.tone-copyright-registration { background: #fdeaf1; border-color: #f8d4e0; }
.ibc-svc-card.tone-patent-registration { background: #fff8e1; border-color: #f7ebbd; }
.ibc-svc-card.tone-compliance, .ibc-svc-card.tone-registration { background: #eefaf3; border-color: #cfeedd; }

.ibc-svc-card .top .fa, .ibc-svc-card .top img {
  background: #fff;
}

.ibc-svc-card p small {
  color: #6b7280;
}

/* ---------- registration service pages ---------- */
.ibc-reg-switch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 6px;
}

.ibc-reg-switch a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #c9d2e3;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  color: var(--ibc-navy);
  font-size: 13.5px;
}

.ibc-reg-switch a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ibc-reg-switch a.active, .ibc-reg-switch a:hover {
  border-color: var(--ibc-orange);
  background: #fff3ea;
  text-decoration: none;
}

.ibc-reg-intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  margin: 14px 0 20px;
}

.ibc-reg-intro .lead, .ibc-reg-intro .price {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 22px;
}

.ibc-reg-intro h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 8px;
}

.ibc-reg-intro .lead>p {
  color: #3f4a5f;
  font-size: 14px;
}

.ibc-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.ibc-adv-grid div, .ibc-why-grid div {
  background: #f4f7fc;
  border-radius: 8px;
  padding: 14px;
}

.ibc-adv-grid .fa, .ibc-why-grid .fa {
  font-size: 22px;
  color: var(--ibc-orange);
  display: block;
  margin-bottom: 6px;
}

.ibc-adv-grid strong, .ibc-why-grid strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.ibc-adv-grid span, .ibc-why-grid span {
  font-size: 12.5px;
  color: #4b5872;
  line-height: 1.4;
}

.ibc-reg-intro .price {
  background: linear-gradient(160deg, var(--ibc-navy), #1a3f96);
  color: #fff;
  border: 0;
  text-align: center;
}

.ibc-reg-intro .price .big {
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.ibc-reg-intro .price .lbl {
  display: block;
  color: #ffd2b3;
  font-weight: 600;
  font-size: 13px;
  margin: 8px 0 12px;
}

.ibc-reg-intro .price p {
  color: #d7e0f5;
  font-size: 12.5px;
}

.ibc-reg-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.ibc-reg-side {
  position: sticky;
  top: 70px;
}

.ibc-reg-title {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ibc-reg-title img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 72px;
}

.ibc-reg-title h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ibc-navy);
}

.ibc-reg-title p {
  margin: 0;
  color: #3f4a5f;
}

.ibc-registration .ibc-section-title .fa {
  color: var(--ibc-orange);
  margin-right: 4px;
}

.ibc-reg-html li {
  margin-bottom: 5px;
}

.ibc-reg-html h3 {
  font-size: 16px;
  color: var(--ibc-navy);
  margin: 14px 0 6px;
}

.ibc-reg-apply .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ibc-reg-apply .head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-reg-apply .head .fa, .ibc-estimate h3 .fa {
  color: var(--ibc-orange);
  margin-right: 4px;
}

.ibc-optgroup {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}

.ibc-optgroup legend {
  font-size: 15px;
  font-weight: 800;
  color: var(--ibc-navy);
  border: 0;
  margin-bottom: 8px;
}

.ibc-optgroup .opts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 8px;
}

.ibc-optgroup .opt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid #c9d2e3;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}

.ibc-optgroup .opt:has(input:checked) {
  border-color: var(--ibc-orange);
  background: #fff3ea;
  box-shadow: 0 0 0 1px var(--ibc-orange);
}

.ibc-optgroup .opt input {
  margin-top: 4px;
  accent-color: var(--ibc-orange);
}

.ibc-optgroup .opt strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 13.5px;
  line-height: 1.3;
}

.ibc-optgroup .opt small {
  display: block;
  color: var(--ibc-orange);
  font-weight: 600;
  font-size: 12px;
  margin-top: 3px;
}

.ibc-reg-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--ibc-navy);
  margin: 18px 0 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--ibc-line);
}

.ibc-inquiry-form .ibc-file {
  height: auto;
  padding: 8px;
}

.ibc-estimate table {
  width: 100%;
  font-size: 13.5px;
  margin-bottom: 10px;
}

.ibc-estimate th {
  font-weight: 500;
  color: #3f4a5f;
  padding: 6px 0;
  border-bottom: 1px dashed var(--ibc-line);
}

.ibc-estimate td {
  text-align: right;
  font-weight: 700;
  color: var(--ibc-navy);
  padding: 6px 0;
  border-bottom: 1px dashed var(--ibc-line);
  white-space: nowrap;
}

.ibc-estimate tr.total th, .ibc-estimate tr.total td {
  font-size: 16px;
  font-weight: 800;
  color: var(--ibc-orange);
  border-bottom: 0;
  border-top: 2px solid var(--ibc-navy);
  padding-top: 10px;
}

.ibc-reg-side .ibc-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ibc-navy);
  margin: 0 0 10px;
}

.ibc-reg-why {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 24px;
  margin: 8px 0 24px;
}

.ibc-reg-why h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 8px;
}

.ibc-reg-why>p {
  color: #3f4a5f;
  font-size: 14px;
}

.ibc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
}

.ibc-how h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 8px;
}

.ibc-how ol {
  counter-reset: how;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ibc-how li {
  counter-increment: how;
  background: #fff3ea;
  border-radius: 8px;
  padding: 14px 14px 14px 48px;
  position: relative;
  font-size: 13.5px;
  color: var(--ibc-navy);
  font-weight: 600;
}

.ibc-how li::before {
  content: counter(how);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ibc-orange);
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 26px;
  font-size: 13px;
}

@media (max-width: 991px) {
  .ibc-reg-intro, .ibc-reg-grid {
    grid-template-columns: 1fr;
  }

  .ibc-reg-side {
    position: static;
  }

  .ibc-adv-grid, .ibc-how ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ibc-adv-grid, .ibc-how ol {
    grid-template-columns: 1fr;
  }
}

.ibc-registration .ibc-section-title {
  display: block;
}

/* contact / registration hero: short band like the mockup (banner cropped, text vertically centred) */
@media (min-width: 768px) {
  .ibc-page-hero-banner picture img {
    height: 250px;
    object-fit: cover;
    object-position: 50% 62%;
  }

  .ibc-page-hero-banner h1 {
    font-size: 38px;
    margin-bottom: 4px;
  }

  .ibc-page-hero-banner .sub {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .ibc-page-hero-banner .text>p:last-of-type {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .ibc-page-hero-banner .text {
    max-width: 48%;
  }

  .ibc-page-hero-banner .ibc-breadcrumb {
    margin: 0 0 4px;
  }

  .ibc-page-hero-banner .text .btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}

@media (min-width: 1400px) {
  .ibc-page-hero-banner picture img {
    height: 270px;
  }
}

.ibc-contact .ibc-contact-grid {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .ibc-page-hero-banner {
    background: linear-gradient(90deg, #dfe9f8 0%, #f2f6fc 45%, #f7f9fd 100%);
  }

  .ibc-page-hero-banner picture img {
    object-fit: contain;
    object-position: 100% 50%;
  }
}

@media (min-width: 768px) {
  .ibc-page-hero-banner picture {
    display: block;
    height: 250px;
    position: relative;
  }

  .ibc-page-hero-banner picture img {
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 58%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%);
    mask-image: linear-gradient(90deg, transparent, #000 18%);
  }
}

@media (min-width: 1400px) {
  .ibc-page-hero-banner picture {
    height: 270px;
  }
}

/* about: vision / mission / values with the icon beside the heading (mockup) */
.ibc-vmv>div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ibc-vmv>div>.fa {
  flex: 0 0 34px;
  margin: 2px 0 0;
}

.ibc-vmv>div>div {
  flex: 1;
}

/* about: solutions tiles like the mockup (image card + caption) */
.ibc-sol-grid a {
  padding: 0;
  overflow: hidden;
}

.ibc-sol-grid .pic {
  height: 110px;
  background: #f4f7fc;
  margin: 0;
}

.ibc-sol-grid .pic img {
  max-height: 100px;
}

.ibc-sol-grid strong {
  display: block;
  padding: 8px 6px;
  color: var(--ibc-navy);
}

/* about: bottom band with a dotted world-map feel */
.ibc-about-band {
  position: relative;
  overflow: hidden;
}

.ibc-about-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .22) 1.2px, transparent 1.3px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(ellipse 45% 80% at 50% 50%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 45% 80% at 50% 50%, #000 40%, transparent 100%);
  pointer-events: none;
}

.ibc-about-band .container {
  position: relative;
}

.ibc-about-band .stats .fa {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .6);
  font-size: 24px;
  margin: 0 auto 8px;
}
/* about hero: short navy band with the building photo on the right (mockup) */
.ibc-about-hero {
  position: relative;
  height: 250px;
  background: linear-gradient(90deg, #0f2a5f 0%, #163a80 55%, #1a3f96 100%);
  overflow: hidden;
}

.ibc-about-hero picture {
  display: block;
  position: absolute;
  inset: 0;
}

.ibc-about-hero picture img {
  position: absolute;
  right: 0;
  top: 0;
  width: 56%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%);
  mask-image: linear-gradient(90deg, transparent, #000 30%);
}

.ibc-about-hero .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ibc-about-hero .container::before, .ibc-about-hero .container::after {
  display: none;
}

.ibc-about-hero .text {
  color: #fff;
  max-width: 560px;
}

.ibc-about-hero .ibc-breadcrumb {
  margin: 0 0 8px;
}

.ibc-about-hero .ibc-breadcrumb li, .ibc-about-hero .ibc-breadcrumb a {
  color: #fff;
  font-size: 13px;
}

.ibc-about-hero h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 6px;
}

.ibc-about-hero .sub {
  color: #dfe7f7;
  font-size: 15px;
  margin: 0 0 14px;
  line-height: 1.35;
}

.ibc-about-hero .chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
}

.ibc-about-hero .chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.2;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.ibc-about-hero .chips li:first-child {
  padding-left: 0;
  border-left: 0;
}

.ibc-about-hero .chips .fa {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  text-align: center;
  line-height: 27px;
  font-size: 14px;
  flex: 0 0 30px;
}

.ibc-about-hero .partner {
  background: rgba(255, 255, 255, .92);
  color: var(--ibc-navy);
  border-radius: 8px;
  padding: 14px 18px;
  line-height: 1.2;
  min-width: 150px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.ibc-about-hero .partner span {
  display: block;
  font-size: 14px;
  color: #3f4a5f;
}

.ibc-about-hero .partner strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin: 2px 0;
}

.ibc-about-hero .partner span:last-child {
  border-top: 2px solid var(--ibc-orange);
  padding-top: 6px;
  margin-top: 6px;
  width: 60px;
}

.ibc-about-page .ibc-section-alt {
  background: #eef3fb;
}

@media (max-width: 991px) {
  .ibc-about-hero {
    height: auto;
    padding: 20px 0;
  }

  .ibc-about-hero picture {
    display: none;
  }

  .ibc-about-hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ibc-about-hero .chips {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .ibc-about-hero .chips li {
    flex: 0 0 50%;
    border-left: 0;
    padding-left: 0;
  }

  .ibc-about-hero h1 {
    font-size: 26px;
  }
}

/* about hero: show only the building part of the banner (scaled ×2, shifted) */
.ibc-about-hero picture img {
  width: auto;
  height: 200%;
  top: -38%;
  right: 0;
  object-fit: none;
  object-position: 0 0;
  transform: translateX(17%);
  -webkit-mask-image: linear-gradient(90deg, transparent 32%, #000 52%);
  mask-image: linear-gradient(90deg, transparent 32%, #000 52%);
}

.ibc-about-hero picture img {
  transform: none;
  right: -15%;
  top: -34%;
}

.ibc-about-hero picture img {
  right: -22%;
}

.ibc-about-hero picture img {
  right: -16%;
}

.ibc-about-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16%;
  background: linear-gradient(90deg, rgba(15, 42, 95, 0), #0f2a5f 75%);
  pointer-events: none;
}

.ibc-about-hero .container {
  z-index: 1;
}

.ibc-about-hero::after {
  width: 26%;
  background: linear-gradient(90deg, rgba(15, 42, 95, 0), rgba(15, 42, 95, .85) 45%, #0f2a5f 70%);
}

.ibc-about-hero picture img {
  right: -12%;
}

/* printhead cards: the official printer photo is shown for fitment — badge makes that explicit */
.ibc-pcard .img, .ibc-gallery-main {
  position: relative;
}

.ibc-ph-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: var(--ibc-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .2px;
}

.ibc-ph-badge .fa {
  color: var(--ibc-orange);
  margin-right: 3px;
}

.ibc-cat-grid-all {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1199px) {
  .ibc-cat-grid-all {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .ibc-cat-grid-all {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ibc-brand-tile img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
}

/* ---------- news & events ---------- */
.ibc-news-hero .text {
  max-width: 46%;
}

.ibc-news-hero h1 span {
  color: var(--ibc-orange);
}

.ibc-news-hero .sub {
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-news-wrap {
  padding-top: 22px;
}

/* filter chips */
.ibc-news-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.ibc-news-chips a {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid #cfd8ea;
  background: #fff;
  color: var(--ibc-navy);
  font-size: 13px;
  font-weight: 600;
  transition: all .15s;
}

.ibc-news-chips a:hover {
  border-color: var(--ibc-navy);
  text-decoration: none;
}

.ibc-news-chips a.active {
  background: var(--ibc-navy);
  border-color: var(--ibc-navy);
  color: #fff;
}

.ibc-news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 22px;
  align-items: start;
}

.ibc-news-result {
  background: #eaf0fb;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--ibc-navy);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.ibc-news-result a {
  color: var(--ibc-orange);
  font-weight: 600;
}

.ibc-news-empty {
  text-align: center;
  padding: 40px 20px;
}

.ibc-news-empty .fa {
  font-size: 44px;
  color: #b9c4dc;
  margin-bottom: 10px;
}

/* cards */
.ibc-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ibc-news-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.ibc-news-card {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, border-color .15s, transform .15s;
}

.ibc-news-card:hover {
  border-color: #c9d4ea;
  box-shadow: 0 10px 22px rgba(15, 42, 95, .12);
  transform: translateY(-2px);
}

.ibc-news-card .pic {
  display: block;
  position: relative;
  height: 180px;
  background: #f4f7fc;
  overflow: hidden;
}

.ibc-news-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.ibc-news-card:hover .pic img {
  transform: scale(1.04);
}

.ibc-news-card .noimg, .ibc-news-recent .noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #b9c4dc;
  font-size: 40px;
}

.ibc-news-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: #6b3fd4;
  line-height: 1.5;
  white-space: nowrap;
}

.ibc-news-card .pic .ibc-news-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.ibc-news-badge.product-launch { background: var(--ibc-orange); }
.ibc-news-badge.company-news { background: var(--ibc-navy); }
.ibc-news-badge.industry-updates { background: #1a6fd4; }
.ibc-news-badge.case-studies { background: #0f8a7a; }
.ibc-news-badge.press-release { background: #c0392b; }
.ibc-news-badge.events-exhibitions { background: #6b3fd4; }

a.ibc-news-badge:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.1);
}

.ibc-news-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ibc-news-card .meta, .ibc-news-article .meta {
  font-size: 12.5px;
  color: var(--ibc-muted);
  margin-bottom: 6px;
}

.ibc-news-card .meta .fa, .ibc-news-article .meta .fa {
  color: var(--ibc-orange);
}

.ibc-news-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ibc-news-card h3 a {
  color: var(--ibc-navy);
}

.ibc-news-card p {
  font-size: 13px;
  color: #4b5872;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ibc-news-card .more {
  color: var(--ibc-orange);
  font-weight: 700;
  font-size: 13px;
}

.ibc-news-main .ibc-pagination {
  margin-top: 24px;
}

/* sidebar */
.ibc-news-side .ibc-card {
  padding: 18px;
}

.ibc-news-side .ibc-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ibc-navy);
  margin: 0 0 12px;
}

.ibc-news-search {
  display: flex;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.ibc-news-search input {
  flex: 1;
  border: 0;
  padding: 11px 14px;
  font-size: 14px;
  min-width: 0;
  outline: none;
}

.ibc-news-search button {
  border: 0;
  background: #fff;
  color: var(--ibc-navy);
  padding: 0 14px;
  font-size: 16px;
  cursor: pointer;
}

.ibc-news-search button:hover {
  color: var(--ibc-orange);
}

.ibc-news-cats ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ibc-news-cats li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ibc-ink);
  font-size: 13.5px;
  font-weight: 600;
}

.ibc-news-cats li a .fa {
  width: 18px;
  text-align: center;
  color: var(--ibc-navy);
  font-size: 14px;
}

.ibc-news-cats li a span {
  margin-left: auto;
  color: var(--ibc-muted);
  font-weight: 500;
  font-size: 12.5px;
}

.ibc-news-cats li a:hover {
  background: #f4f7fc;
  text-decoration: none;
}

.ibc-news-cats li.active a {
  background: #eaf0fb;
  color: var(--ibc-navy);
}

.ibc-news-recent {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.ibc-news-recent li {
  border-bottom: 1px dashed var(--ibc-line);
}

.ibc-news-recent li:last-child {
  border-bottom: 0;
}

.ibc-news-recent a {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: var(--ibc-ink);
}

.ibc-news-recent a:hover strong {
  color: var(--ibc-orange);
}

.ibc-news-recent img, .ibc-news-recent .noimg {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 72px;
  background: #f4f7fc;
  font-size: 22px;
}

.ibc-news-recent strong {
  display: block;
  font-size: 13px;
  color: var(--ibc-navy);
  line-height: 1.3;
  margin-bottom: 3px;
}

.ibc-news-recent small {
  color: var(--ibc-muted);
  font-size: 11.5px;
}

.ibc-news-recent small .fa {
  color: var(--ibc-orange);
}

.ibc-news-subscribe, .ibc-news-questions, .ibc-news-visit {
  background: #eaf0fb;
  border-color: #d6e0f3;
  position: relative;
}

.ibc-news-subscribe .plane, .ibc-news-questions .plane {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 30px;
  color: #1f7ae0;
  transform: rotate(-20deg);
}

.ibc-news-subscribe h3, .ibc-news-questions h3 {
  padding-right: 44px;
}

.ibc-news-subscribe p, .ibc-news-questions p, .ibc-news-visit li {
  font-size: 13.5px;
  color: #4b5872;
}

.ibc-news-subscribe input[type=email] {
  width: 100%;
  border: 1px solid #cfd8ea;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 10px;
  background: #fff;
}

.ibc-news-subscribe .btn {
  font-weight: 700;
}

.ibc-news-subscribe small {
  display: block;
  margin-top: 10px;
  color: var(--ibc-muted);
  font-size: 11.5px;
}

.ibc-news-subscribe .alert {
  padding: 8px 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

.ibc-news-questions .btn-navy {
  font-weight: 700;
  margin-bottom: 10px;
}

.ibc-news-questions .btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ibc-news-questions .btns .btn {
  flex: 1;
  font-size: 12.5px;
  padding: 7px 8px;
  white-space: nowrap;
}

.ibc-news-visit small {
  display: block;
  color: var(--ibc-navy);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}

.ibc-news-visit h3 {
  font-size: 19px !important;
}

.ibc-news-visit ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.ibc-news-visit li {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  color: var(--ibc-ink);
}

.ibc-news-visit li .fa {
  color: var(--ibc-navy);
  width: 16px;
  text-align: center;
  padding-top: 3px;
}

.ibc-news-visit .btn {
  font-weight: 700;
}

.ibc-news-share .share {
  display: flex;
  gap: 12px;
}

.ibc-news-share .share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  transition: transform .15s;
}

.ibc-news-share .share a:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.ibc-news-share .fb { background: #1877f2; }
.ibc-news-share .tw { background: #111; }
.ibc-news-share .in { background: #0a66c2; }
.ibc-news-share .wa { background: var(--ibc-green); }
.ibc-news-share .em { background: var(--ibc-navy); }

/* CTA band under the list */
.ibc-news-cta {
  margin: 28px 0 10px;
  background: #eaf0fb;
  border: 1px solid #d6e0f3;
  border-radius: 10px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ibc-news-cta h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 4px;
}

.ibc-news-cta p {
  margin: 0;
  color: #4b5872;
  font-size: 14px;
}

.ibc-news-cta .btn {
  font-weight: 700;
  padding: 11px 22px;
  white-space: nowrap;
}

/* article */
.ibc-news-article {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 24px 28px 26px;
}

.ibc-news-article .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ibc-news-article .top .meta {
  margin: 0;
}

.ibc-news-article h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 12px;
  line-height: 1.25;
}

.ibc-news-article .lead {
  font-size: 16px;
  line-height: 1.6;
  color: #33415c;
  margin-bottom: 18px;
}

.ibc-news-article .hero {
  margin: 0 0 20px;
}

.ibc-news-article .hero img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f4f7fc;
  border-radius: 10px;
}

.ibc-news-eventbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: #f4f7fc;
  border-radius: 10px;
  padding: 14px 6px;
  margin: 0 0 20px;
}

.ibc-news-eventbar > div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 4px 16px;
  border-left: 1px solid #d6e0f3;
  font-size: 14px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-news-eventbar > div:first-child {
  border-left: 0;
}

.ibc-news-eventbar .fa {
  font-size: 26px;
  color: var(--ibc-navy);
}

.ibc-news-eventbar small {
  display: block;
  font-size: 12px;
  color: var(--ibc-muted);
  font-weight: 600;
}

.ibc-news-body {
  font-size: 15px;
  line-height: 1.75;
  color: #2b3445;
}

.ibc-news-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.ibc-news-body h2, .ibc-news-body h3 {
  color: var(--ibc-navy);
  margin: 22px 0 8px;
  font-weight: 700;
}

.ibc-news-body blockquote {
  background: #eaf0fb;
  border-left: 4px solid var(--ibc-navy);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 18px 0;
  color: var(--ibc-navy);
  font-size: 15px;
}

.ibc-news-body ul li {
  margin-bottom: 4px;
}

.ibc-news-body table {
  max-width: 100%;
}

.ibc-news-video {
  margin: 20px 0 6px;
}

.ibc-news-video .video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.ibc-news-video .video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ibc-news-video p {
  text-align: center;
  font-size: 13px;
  color: var(--ibc-muted);
  margin: 8px 0 0;
}

.ibc-news-video p .fa {
  color: var(--ibc-orange);
}

.ibc-news-article .share-inline {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--ibc-line);
  font-weight: 600;
  color: var(--ibc-navy);
  font-size: 14px;
}

.ibc-news-article .share-inline a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf0fb;
  color: var(--ibc-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ibc-news-article .share-inline a:hover {
  background: var(--ibc-orange);
  color: #fff;
}

.ibc-news-article .prevnext {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 12px 16px;
}

.ibc-news-article .prevnext a {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ibc-navy);
  font-weight: 600;
  font-size: 13.5px;
}

.ibc-news-article .prevnext a:hover {
  color: var(--ibc-orange);
  text-decoration: none;
}

.ibc-news-article .prevnext a .fa {
  font-size: 18px;
}

.ibc-news-article .prevnext a small {
  display: block;
  color: var(--ibc-muted);
  font-size: 11.5px;
  font-weight: 500;
  margin-bottom: 2px;
}

.ibc-news-article .prevnext .next {
  justify-content: flex-end;
  text-align: right;
}

.ibc-news-more {
  margin: 26px 0 10px;
}

@media (max-width: 1199px) {
  .ibc-news-grid.four {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .ibc-news-layout {
    grid-template-columns: 1fr;
  }

  .ibc-news-grid, .ibc-news-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-news-cta {
    flex-direction: column;
    text-align: center;
  }

  .ibc-news-article {
    padding: 18px;
  }

  .ibc-news-article h1 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .ibc-news-grid, .ibc-news-grid.four {
    grid-template-columns: 1fr;
  }

  .ibc-news-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .ibc-news-chips a {
    flex: 0 0 auto;
  }

  .ibc-news-article .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .ibc-news-article .prevnext {
    flex-direction: column;
  }

  .ibc-news-article .prevnext .next {
    justify-content: flex-start;
    text-align: left;
    flex-direction: row-reverse;
  }

  .ibc-news-eventbar > div {
    border-left: 0;
    border-top: 1px solid #d6e0f3;
    padding: 8px 10px;
  }

  .ibc-news-eventbar > div:first-child {
    border-top: 0;
  }
}

/* ---------- product category page (/{category-slug}) ---------- */
.ibc-cat-hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #f4f7fc 0%, #eaf0fb 100%);
  border: 1px solid #d6e0f3;
  border-radius: 12px;
  padding: 26px 30px;
  margin-bottom: 20px;
}

.ibc-cat-hero .pic {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e9f5;
}

.ibc-cat-hero .pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ibc-cat-hero .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ibc-orange);
  margin-bottom: 6px;
}

.ibc-cat-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 10px;
  line-height: 1.2;
}

.ibc-cat-hero .lead {
  font-size: 15px;
  color: #33415c;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ibc-cat-hero .stats {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
  color: #4b5872;
}

.ibc-cat-hero .stats strong {
  color: var(--ibc-navy);
  font-size: 16px;
}

.ibc-cat-hero .stats .fa {
  color: var(--ibc-orange);
}

.ibc-cat-hero .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ibc-cat-hero .btns .btn {
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 18px;
}

.ibc-cat-about {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
  margin-top: 26px;
}

.ibc-cat-desc {
  max-height: 260px;
  overflow: hidden;
  position: relative;
  font-size: 14.5px;
  line-height: 1.7;
  color: #2b3445;
}

.ibc-cat-desc:not(.open):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}

.ibc-cat-desc.open {
  max-height: none;
}

.ibc-cat-desc h1, .ibc-cat-desc h2, .ibc-cat-desc h3, .ibc-cat-desc h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ibc-navy);
  margin: 16px 0 6px;
}

.ibc-cat-desc img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.ibc-cat-more {
  border: 0;
  background: none;
  color: var(--ibc-orange);
  font-weight: 700;
  padding: 8px 0 0;
  cursor: pointer;
}

.ibc-cat-help {
  background: #eaf0fb;
  border-color: #d6e0f3;
  text-align: center;
}

.ibc-cat-help .big {
  font-size: 40px;
  color: var(--ibc-navy);
  margin-bottom: 8px;
}

.ibc-cat-help h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 8px;
}

.ibc-cat-help p {
  font-size: 13.5px;
  color: #4b5872;
}

.ibc-cat-help .btn {
  font-weight: 700;
  margin: 6px 0 14px;
}

.ibc-cat-help ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 13px;
  color: #33415c;
}

.ibc-cat-help li {
  padding: 5px 0;
  border-top: 1px dashed #cfd8ea;
}

.ibc-cat-help li .fa {
  color: var(--ibc-orange);
  width: 18px;
}

@media (max-width: 991px) {
  .ibc-cat-hero {
    grid-template-columns: 1fr;
    padding: 20px;
    text-align: center;
  }

  .ibc-cat-hero .pic {
    height: 200px;
    max-width: 300px;
    margin: 0 auto;
  }

  .ibc-cat-hero .stats, .ibc-cat-hero .btns {
    justify-content: center;
  }

  .ibc-cat-hero h1 {
    font-size: 26px;
  }

  .ibc-cat-about {
    grid-template-columns: 1fr;
  }
}

/* ---------- knowledge base ---------- */
.ibc-kb-hero {
  background: linear-gradient(90deg, #f7f9fd 0%, #eaf0fb 100%);
  border-bottom: 1px solid #d6e0f3;
  overflow: hidden;
}

.ibc-kb-hero .inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 30px;
  align-items: stretch;
}

.ibc-kb-hero .text {
  padding: 22px 0 28px;
}

.ibc-kb-hero .kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--ibc-navy);
  margin: 14px 0 6px;
}

.ibc-kb-hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 12px;
  line-height: 1.1;
}

.ibc-kb-hero h1 span {
  color: var(--ibc-orange);
}

.ibc-kb-hero .text > p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #33415c;
  max-width: 560px;
  margin-bottom: 18px;
}

.ibc-kb-hero .photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.ibc-kb-hero .photo img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 22%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 22%);
}

.ibc-kb-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #cfd8ea;
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  max-width: 600px;
  box-shadow: 0 8px 22px rgba(15, 42, 95, .08);
}

.ibc-kb-search > .fa {
  color: var(--ibc-navy);
  font-size: 16px;
  margin-right: 10px;
}

.ibc-kb-search input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  min-width: 0;
  padding: 8px 0;
}

.ibc-kb-search .btn {
  border-radius: 9px;
  font-weight: 700;
  padding: 10px 22px;
}

.ibc-kb-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
}

.ibc-kb-chips span {
  font-weight: 700;
  color: var(--ibc-navy);
  margin-right: 4px;
}

.ibc-kb-chips a {
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cfd8ea;
  color: var(--ibc-navy);
  font-weight: 600;
  font-size: 12.5px;
}

.ibc-kb-chips a:hover {
  border-color: var(--ibc-orange);
  color: var(--ibc-orange);
  text-decoration: none;
}

.ibc-kb-wrap {
  padding-top: 26px;
}

.ibc-kb-wrap > section {
  margin-bottom: 30px;
}

.ibc-kb-wrap .ibc-sec-head h2 {
  font-size: 22px;
}

/* category tiles */
.ibc-kb-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ibc-kb-cat {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  padding: 18px;
  color: var(--ibc-ink);
  transition: box-shadow .15s, transform .15s, border-color .15s;
}

.ibc-kb-cat:hover {
  text-decoration: none;
  border-color: #c9d4ea;
  box-shadow: 0 10px 22px rgba(15, 42, 95, .12);
  transform: translateY(-2px);
}

.ibc-kb-cat .ico {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ibc-kb-cat .ico.blue { background: #e3ecfb; color: #1f4fd8; }
.ibc-kb-cat .ico.green { background: #e2f6ee; color: #0f8a5f; }
.ibc-kb-cat .ico.orange { background: #fdeadf; color: var(--ibc-orange); }
.ibc-kb-cat .ico.purple { background: #ede6fb; color: #6b3fd4; }
.ibc-kb-cat .ico.teal { background: #dff4f4; color: #0f8a8a; }

.ibc-kb-cat .txt {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ibc-kb-cat strong {
  font-size: 15.5px;
  color: var(--ibc-navy);
  margin-bottom: 4px;
}

.ibc-kb-cat small {
  font-size: 12.5px;
  color: #4b5872;
  line-height: 1.45;
  flex: 1;
}

.ibc-kb-cat em {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ibc-navy);
  margin-top: 12px;
}

.ibc-kb-cat:hover em {
  color: var(--ibc-orange);
}

/* featured + trending */
.ibc-kb-feat {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.ibc-kb-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--ibc-navy) 0%, #1a3f8f 100%);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  min-height: 260px;
}

.ibc-kb-featured:hover {
  text-decoration: none;
  color: #fff;
}

.ibc-kb-featured .text {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ibc-kb-featured .kicker {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c9d8f5;
  margin-bottom: 8px;
}

.ibc-kb-featured h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #fff;
}

.ibc-kb-featured p {
  font-size: 13.5px;
  color: #dbe5fa;
  margin-bottom: 16px;
}

.ibc-kb-featured .btn {
  align-self: flex-start;
  background: #fff;
  color: var(--ibc-navy);
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 18px;
}

.ibc-kb-featured .pic {
  position: relative;
  background: #0b1f47;
}

.ibc-kb-featured .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ibc-kb-featured .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--ibc-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

.ibc-kb-trending {
  margin: 0;
}

.ibc-kb-trending h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ibc-kb-trending h3 .fa-fire {
  color: var(--ibc-orange);
}

.ibc-kb-trending h3 a {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ibc-blue);
}

.ibc-kb-trending ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibc-kb-trending li {
  border-top: 1px solid var(--ibc-line);
}

.ibc-kb-trending li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  color: var(--ibc-navy);
  font-size: 13.5px;
  font-weight: 600;
}

.ibc-kb-trending li a .n {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eaf0fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
}

.ibc-kb-trending li a .fa-arrow-right {
  margin-left: auto;
  color: #9aa7c2;
  font-size: 12px;
}

.ibc-kb-trending li a:hover {
  color: var(--ibc-orange);
  text-decoration: none;
}

/* cards: topic badges */
.ibc-news-badge.kb-rfid { background: #6b3fd4; }
.ibc-news-badge.kb-barcode { background: #1a6fd4; }
.ibc-news-badge.kb-labels { background: var(--ibc-orange); }
.ibc-news-badge.kb-printers { background: var(--ibc-navy); }
.ibc-news-badge.kb-guide { background: #0f8a7a; }

.ibc-kb-card .pic {
  height: 160px;
}

/* still need help / newsletter bands */
.ibc-kb-help, .ibc-kb-news {
  background: #eaf0fb;
  border: 1px solid #d6e0f3;
  border-radius: 12px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.ibc-kb-help .lead, .ibc-kb-news .lead {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
}

.ibc-kb-help .lead > .fa, .ibc-kb-news .lead > .fa {
  font-size: 44px;
  color: var(--ibc-navy);
}

.ibc-kb-news .lead > .fa {
  font-size: 34px;
}

.ibc-kb-help h2, .ibc-kb-news h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 4px;
}

.ibc-kb-news h2 {
  font-size: 17px;
}

.ibc-kb-help p, .ibc-kb-news p {
  margin: 0;
  color: #33415c;
  font-size: 14px;
}

.ibc-kb-help ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
  border-left: 1px solid #cfd8ea;
  font-size: 13.5px;
  color: var(--ibc-navy);
  font-weight: 600;
}

.ibc-kb-help li {
  padding: 4px 0;
}

.ibc-kb-help li .fa {
  color: var(--ibc-navy);
  margin-right: 8px;
}

.ibc-kb-help .btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ibc-kb-help .btns .btn {
  font-weight: 700;
  padding: 10px 20px;
  white-space: nowrap;
}

.ibc-kb-news {
  grid-template-columns: 1fr auto;
  padding: 18px 26px;
}

.ibc-kb-news form {
  display: flex;
  gap: 0;
}

.ibc-kb-news input[type=email] {
  border: 1px solid #cfd8ea;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 9px 14px;
  font-size: 14px;
  width: 260px;
  max-width: 100%;
}

.ibc-kb-news .btn {
  border-radius: 0 8px 8px 0;
  font-weight: 700;
}

.ibc-kb-news .alert {
  margin: 8px 0 0;
  padding: 6px 10px;
  font-size: 13px;
}

/* downloads */
.ibc-kb-dl-hero .pic {
  font-size: 90px;
  color: var(--ibc-navy);
}

.ibc-kb-dl {
  margin-top: 20px;
}

.ibc-kb-dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ibc-kb-dl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 10px;
  padding: 12px 16px;
}

.ibc-kb-dl-item > .fa {
  font-size: 26px;
  color: var(--ibc-navy);
}

.ibc-kb-dl-item > div {
  flex: 1;
  min-width: 0;
}

.ibc-kb-dl-item strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14.5px;
}

.ibc-kb-dl-item small {
  color: var(--ibc-muted);
  font-size: 12px;
}

.ibc-kb-dl-item .btn {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .ibc-kb-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ibc-kb-hero .inner {
    grid-template-columns: 1fr;
  }

  .ibc-kb-hero .photo {
    display: none;
  }

  .ibc-kb-hero h1 {
    font-size: 34px;
  }

  .ibc-kb-feat {
    grid-template-columns: 1fr;
  }

  .ibc-kb-help {
    grid-template-columns: 1fr;
  }

  .ibc-kb-help ul {
    border-left: 0;
    padding-left: 0;
  }

  .ibc-kb-help .btns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ibc-kb-news {
    grid-template-columns: 1fr;
  }

  .ibc-kb-news input[type=email] {
    width: 100%;
  }

  .ibc-kb-dl-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ibc-kb-cats {
    grid-template-columns: 1fr;
  }

  .ibc-kb-featured {
    grid-template-columns: 1fr;
  }

  .ibc-kb-featured .pic {
    min-height: 180px;
    order: -1;
  }

  .ibc-kb-search {
    flex-wrap: wrap;
    padding: 8px;
  }

  .ibc-kb-search .btn {
    width: 100%;
    margin-top: 6px;
  }
}

/* mega menu: extra category columns */
.ibc-mega-col .sub small {
  color: #9aa7c2;
  font-size: 11px;
  margin-left: 3px;
}

/* ---------- support center ---------- */
.ibc-support-hero {
  background: linear-gradient(90deg, #f7f9fd 0%, #e6edfa 100%);
}

.ibc-support-hero .inner {
  grid-template-columns: 1fr 380px;
}

.ibc-support-hero .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 16px;
}

.ibc-support-hero .btns .btn {
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 18px;
}

.ibc-support-hero .ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-support-hero .ticks .fa {
  color: #0f8a5f;
}

.ibc-support-hero .photo {
  align-items: center;
  justify-content: center;
}

.ibc-support-badge {
  background: var(--ibc-navy);
  color: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  text-align: center;
  width: 300px;
  box-shadow: 0 16px 36px rgba(15, 42, 95, .25);
}

.ibc-support-badge .fa {
  font-size: 54px;
  color: var(--ibc-orange);
  margin-bottom: 10px;
}

.ibc-support-badge strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ibc-support-badge span {
  display: block;
  color: #c9d8f5;
  font-size: 13px;
  margin-bottom: 12px;
}

.ibc-support-badge em {
  display: inline-block;
  font-style: normal;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
}

.ibc-support-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ibc-support-channels .ch {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  padding: 20px;
  color: var(--ibc-ink);
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, transform .15s;
}

.ibc-support-channels .ch:hover {
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(15, 42, 95, .12);
  transform: translateY(-2px);
}

.ibc-support-channels .ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 12px;
}

.ibc-support-channels .ico.orange { background: #fdeadf; color: var(--ibc-orange); }
.ibc-support-channels .ico.green { background: #e2f6ee; color: #0f8a5f; }
.ibc-support-channels .ico.blue { background: #e3ecfb; color: #1f4fd8; }
.ibc-support-channels .ico.navy { background: #eaf0fb; color: var(--ibc-navy); }

.ibc-support-channels strong {
  font-size: 15.5px;
  color: var(--ibc-navy);
  margin-bottom: 4px;
}

.ibc-support-channels .ch > span:not(.ico) {
  font-size: 13.5px;
  color: #33415c;
  flex: 1;
}

.ibc-support-channels small {
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ibc-orange);
}

.ibc-kb-cats.three {
  grid-template-columns: repeat(3, 1fr);
}

.ibc-support-brands .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.ibc-support-brands .chips span {
  background: #fff;
  border: 1px solid #cfd8ea;
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 700;
  color: var(--ibc-navy);
  font-size: 13.5px;
}

.ibc-support-brands .chips span .fa {
  color: #0f8a5f;
  margin-right: 4px;
}

.ibc-support-brands .chips .muted {
  background: none;
  border: 0;
  color: var(--ibc-muted);
  font-weight: 500;
}

.ibc-support-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
  align-items: start;
}

.ibc-support-grid .ibc-card {
  margin-bottom: 0;
}

.ibc-support-faq .q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--ibc-line);
  color: var(--ibc-ink);
}

.ibc-support-faq .q:hover {
  text-decoration: none;
}

.ibc-support-faq .q:hover strong {
  color: var(--ibc-orange);
}

.ibc-support-faq .stats {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 10px;
  background: #eaf0fb;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ibc-navy);
  line-height: 1.1;
}

.ibc-support-faq .stats b {
  font-size: 16px;
}

.ibc-support-faq .stats small {
  font-size: 10.5px;
  text-transform: uppercase;
}

.ibc-support-faq .txt {
  flex: 1;
  min-width: 0;
}

.ibc-support-faq .txt strong {
  display: block;
  font-size: 14.5px;
  color: var(--ibc-navy);
}

.ibc-support-faq .txt small {
  color: var(--ibc-muted);
  font-size: 12px;
}

.ibc-support-faq .q > .fa {
  color: #9aa7c2;
}

.ibc-support-faq .foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
}

.ibc-support-faq .foot .btn {
  font-weight: 700;
}

.ibc-support-about {
  font-size: 14px;
  line-height: 1.65;
  color: #2b3445;
}

.ibc-support-about p {
  margin-bottom: 10px;
}

.ibc-support-request {
  margin-top: 30px;
}

.ibc-support-steps h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 12px;
}

.ibc-support-steps h3 .fa {
  color: var(--ibc-orange);
}

.ibc-support-steps ol {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  counter-reset: step;
}

.ibc-support-steps li {
  position: relative;
  padding: 6px 0 10px 44px;
  counter-increment: step;
}

.ibc-support-steps li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ibc-navy);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ibc-support-steps li > strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14.5px;
}

.ibc-support-steps li > span {
  font-size: 13px;
  color: #4b5872;
}

.ibc-support-steps .urgent {
  display: flex;
  gap: 12px;
  background: #fff3ea;
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  color: #4b5872;
}

.ibc-support-steps .urgent .fa {
  font-size: 22px;
  color: var(--ibc-orange);
}

.ibc-support-steps .urgent strong {
  display: block;
  color: var(--ibc-navy);
}

.ibc-support-steps .urgent a {
  font-weight: 700;
}

@media (max-width: 1199px) {
  .ibc-support-channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-kb-cats.three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ibc-support-hero .inner {
    grid-template-columns: 1fr;
  }

  .ibc-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ibc-support-channels, .ibc-kb-cats.three {
    grid-template-columns: 1fr;
  }
}

.ibc-inquiry-form > .ibc-section-title {
  justify-content: flex-start;
  gap: 8px;
}

/* ---------- what we do ---------- */
.ibc-wwd .ibc-section {
  padding: 40px 0;
}

.ibc-wwd .ibc-section-alt {
  border-top: 1px solid #dfe6f3;
  border-bottom: 1px solid #dfe6f3;
}

.ibc-wwd-hero {
  background: radial-gradient(circle at 85% 20%, #1f4fd8 0%, rgba(31, 79, 216, 0) 45%), linear-gradient(135deg, #0b1f47 0%, var(--ibc-navy) 60%, #16397f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ibc-wwd-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/banner/hero-banner-md.webp") right center / cover no-repeat;
  opacity: .09;
  filter: blur(1px);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 50%, #000 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 50%, #000 100%);
}

.ibc-wwd-hero .inner {
  position: relative;
  padding: 26px 0 34px;
}

.ibc-wwd-hero .ibc-breadcrumb, .ibc-wwd-hero .ibc-breadcrumb a {
  color: #c9d8f5;
}

.ibc-wwd-hero .ibc-breadcrumb li+li:before {
  color: #7f95c4;
}

.ibc-wwd-hero .kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ibc-orange);
  margin: 14px 0 6px;
}

.ibc-wwd-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.1;
  color: #fff;
}

.ibc-wwd-hero h1 span {
  color: var(--ibc-orange);
}

.ibc-wwd-hero .text > p {
  font-size: 16px;
  line-height: 1.65;
  color: #dbe5fa;
  max-width: 760px;
  margin-bottom: 20px;
}

.ibc-wwd-hero .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ibc-wwd-hero .btns .btn {
  font-weight: 700;
  border-radius: 8px;
  padding: 11px 22px;
}

.ibc-wwd-hero .btn-light {
  background: #fff;
  color: var(--ibc-navy);
}

.ibc-wwd-hero .btn-light:hover {
  background: #eaf0fb;
}

.ibc-wwd-hero .stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.ibc-wwd-hero .stats div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(4px);
}

.ibc-wwd-hero .stats strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.ibc-wwd-hero .stats span {
  font-size: 12.5px;
  color: #c9d8f5;
}

.ibc-wwd-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.ibc-wwd-head.row-head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ibc-wwd-head.row-head h2 {
  margin-bottom: 0;
}

.ibc-wwd-head .btn {
  font-weight: 700;
}

/* pillars */
.ibc-wwd-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ibc-wwd-pillars .pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 14px;
  padding: 24px;
  color: var(--ibc-ink);
  transition: box-shadow .15s, transform .15s, border-color .15s;
}

.ibc-wwd-pillars .pillar:hover {
  text-decoration: none;
  border-color: #c9d4ea;
  box-shadow: 0 14px 30px rgba(15, 42, 95, .13);
  transform: translateY(-3px);
}

.ibc-wwd-pillars .num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 30px;
  font-weight: 800;
  color: #eef2f8;
}

.ibc-wwd-pillars .ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 14px;
}

.ibc-wwd-pillars .ico.orange { background: #fdeadf; color: var(--ibc-orange); }
.ibc-wwd-pillars .ico.blue { background: #e3ecfb; color: #1f4fd8; }
.ibc-wwd-pillars .ico.purple { background: #ede6fb; color: #6b3fd4; }
.ibc-wwd-pillars .ico.green { background: #e2f6ee; color: #0f8a5f; }
.ibc-wwd-pillars .ico.teal { background: #dff4f4; color: #0f8a8a; }
.ibc-wwd-pillars .ico.navy { background: #eaf0fb; color: var(--ibc-navy); }

.ibc-wwd-pillars h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 8px;
}

.ibc-wwd-pillars p {
  font-size: 13.5px;
  color: #4b5872;
  flex: 1;
  margin-bottom: 14px;
}

.ibc-wwd-pillars em {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--ibc-orange);
}

/* portfolio */
.ibc-wwd-portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ibc-wwd-portfolio .tile {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  color: var(--ibc-ink);
  transition: box-shadow .15s, transform .15s;
}

.ibc-wwd-portfolio .tile:hover {
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(15, 42, 95, .12);
  transform: translateY(-2px);
}

.ibc-wwd-portfolio .pic {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fc;
  border-radius: 10px;
  margin-bottom: 12px;
}

.ibc-wwd-portfolio .pic img {
  max-height: 100px;
  max-width: 85%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ibc-wwd-portfolio .pic .fa {
  font-size: 40px;
  color: var(--ibc-blue);
}

.ibc-wwd-portfolio strong {
  font-size: 15px;
  color: var(--ibc-navy);
  margin-bottom: 4px;
}

.ibc-wwd-portfolio small {
  font-size: 12.5px;
  color: #4b5872;
  flex: 1;
  line-height: 1.45;
}

.ibc-wwd-portfolio em {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ibc-orange);
  margin-top: 10px;
}

/* manufacturing */
.ibc-wwd-mfg {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.ibc-wwd-mfg .specs {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}

.ibc-wwd-mfg .specs li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed var(--ibc-line);
  font-size: 13.5px;
  color: #33415c;
}

.ibc-wwd-mfg .specs strong {
  color: var(--ibc-navy);
}

.ibc-wwd-mfg .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ibc-wwd-mfg .btns .btn {
  font-weight: 700;
}

.ibc-wwd-mfg .side {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 14px;
  padding: 22px;
}

.ibc-wwd-mfg .side h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 14px;
}

.ibc-wwd-mfg .side h3 .fa {
  color: var(--ibc-orange);
}

.ibc-wwd-mfg .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.ibc-wwd-mfg .chips span {
  background: #eaf0fb;
  color: var(--ibc-navy);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
}

/* industries */
.ibc-wwd-industries {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ibc-wwd-industries div {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-wwd-industries .fa {
  display: block;
  font-size: 26px;
  color: var(--ibc-orange);
  margin-bottom: 8px;
}

/* services */
.ibc-wwd-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ibc-wwd-services .svc {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ibc-ink);
}

.ibc-wwd-services .svc:hover {
  text-decoration: none;
  border-color: var(--ibc-orange);
}

.ibc-wwd-services .svc > .fa:first-child {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eaf0fb;
  color: var(--ibc-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 44px;
}

.ibc-wwd-services .svc span {
  flex: 1;
  min-width: 0;
}

.ibc-wwd-services .svc strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14.5px;
}

.ibc-wwd-services .svc small {
  color: #4b5872;
  font-size: 12.5px;
}

.ibc-wwd-services .svc .end {
  color: #9aa7c2;
}

/* steps */
.ibc-wwd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}

.ibc-wwd-steps .step {
  position: relative;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  padding: 22px 20px 18px;
}

.ibc-wwd-steps .n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ibc-navy);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.ibc-wwd-steps h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 6px;
}

.ibc-wwd-steps p {
  font-size: 13.5px;
  margin: 0;
}

.ibc-wwd-legacy {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 14px;
  padding: 24px 26px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #2b3445;
}

.ibc-wwd-legacy h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ibc-navy) !important;
  margin: 0 0 10px;
}

.ibc-wwd-legacy span, .ibc-wwd-legacy p {
  color: #2b3445 !important;
  font-family: inherit !important;
}

@media (max-width: 1199px) {
  .ibc-wwd-hero .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .ibc-wwd-industries {
    grid-template-columns: repeat(4, 1fr);
  }

  .ibc-wwd-portfolio {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .ibc-wwd-hero h1 {
    font-size: 36px;
  }

  .ibc-wwd-pillars, .ibc-wwd-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-wwd-portfolio, .ibc-wwd-industries {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-wwd-mfg, .ibc-wwd-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ibc-wwd-hero .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibc-wwd-pillars, .ibc-wwd-steps, .ibc-wwd-portfolio {
    grid-template-columns: 1fr;
  }

  .ibc-wwd-mfg .specs li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* what we do: all-brands marquee + chip list */
.ibc-wwd-brands {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 14px;
  padding: 14px 20px 18px;
}

.ibc-wwd-brands .ibc-marquee {
  padding: 8px 0 14px;
  border-bottom: 1px dashed var(--ibc-line);
  margin-bottom: 14px;
}

.ibc-wwd-brandlist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ibc-wwd-brandlist a {
  background: #f4f7fc;
  border: 1px solid #e3e9f5;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ibc-navy);
}

.ibc-wwd-brandlist a:hover {
  border-color: var(--ibc-orange);
  color: var(--ibc-orange);
  text-decoration: none;
}

.ibc-wwd-brandlist small {
  color: #9aa7c2;
  font-weight: 600;
  margin-left: 2px;
}

/* ---------- location ("in {place}") block on geo variants ---------- */
.ibc-geo {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  background: linear-gradient(135deg, #f4f7fc 0%, #eaf0fb 100%);
  border: 1px solid #d6e0f3;
  border-radius: 12px;
  padding: 24px 26px;
  margin: 24px 0 10px;
}

.ibc-geo .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ibc-orange);
  margin-bottom: 6px;
}

.ibc-geo h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 10px;
  line-height: 1.25;
}

.ibc-geo p {
  font-size: 14px;
  color: #33415c;
  line-height: 1.65;
}

.ibc-geo .ticks {
  list-style: none;
  padding: 0;
  margin: 10px 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-geo .ticks .fa {
  color: var(--ibc-orange);
  width: 18px;
}

.ibc-geo .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ibc-geo .btns .btn {
  font-weight: 700;
  border-radius: 8px;
}

.ibc-geo-side h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ibc-geo-side h3 + .chips {
  margin-bottom: 16px;
}

.ibc-geo .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ibc-geo .chips a {
  background: #fff;
  border: 1px solid #cfd8ea;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-geo .chips.small a {
  padding: 3px 10px;
  font-size: 12px;
}

.ibc-geo .chips a:hover {
  border-color: var(--ibc-orange);
  color: var(--ibc-orange);
  text-decoration: none;
}

@media (max-width: 991px) {
  .ibc-geo {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .ibc-geo .ticks {
    grid-template-columns: 1fr;
  }
}

/* ---------- banking details ---------- */
.ibc-bank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ibc-bank-card {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}

.ibc-bank-card .head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ibc-line);
  margin-bottom: 12px;
}

.ibc-bank-card .head img {
  height: 48px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.ibc-bank-card .head > .fa {
  font-size: 34px;
  color: var(--ibc-navy);
}

.ibc-bank-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0;
}

.ibc-bank-card dl {
  margin: 0 0 14px;
  flex: 1;
}

.ibc-bank-card dl > div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--ibc-line);
  font-size: 14px;
}

.ibc-bank-card dt {
  font-weight: 600;
  color: var(--ibc-muted);
  font-size: 12.5px;
  padding-top: 2px;
}

.ibc-bank-card dd {
  margin: 0;
  color: var(--ibc-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ibc-bank-card dd.mono span {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--ibc-navy);
  letter-spacing: .04em;
}

.ibc-bank-card .copy {
  border: 1px solid #cfd8ea;
  background: #f4f7fc;
  color: var(--ibc-navy);
  border-radius: 6px;
  width: 30px;
  height: 28px;
  cursor: pointer;
  font-size: 13px;
}

.ibc-bank-card .copy:hover, .ibc-bank-card .copy.ok {
  background: var(--ibc-navy);
  color: #fff;
  border-color: var(--ibc-navy);
}

.ibc-bank-card .copy-all {
  font-weight: 700;
}

.ibc-bank-card .copy-all.ok {
  background: #0f8a5f;
  border-color: #0f8a5f;
}

.ibc-bank-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.ibc-bank-how .ibc-card {
  margin-bottom: 0;
}

.ibc-bank-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibc-bank-notes li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--ibc-line);
  font-size: 13.5px;
  color: #33415c;
  line-height: 1.55;
}

.ibc-bank-notes li:last-child {
  border-bottom: 0;
}

.ibc-bank-notes li > .fa {
  flex: 0 0 22px;
  font-size: 18px;
  color: var(--ibc-orange);
  padding-top: 2px;
}

/* ---------- ask a question ---------- */
.ibc-ask-layout {
  grid-template-columns: 1fr 320px;
}

.ibc-ask-form .ibc-section-title .fa {
  color: var(--ibc-orange);
}

.ibc-ask-form .help {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ibc-muted);
}

.ibc-ask-form .btn-lg {
  font-weight: 700;
  border-radius: 8px;
}

.ibc-ask-urgent {
  display: inline-block;
  margin-left: 14px;
  font-size: 13px;
  color: #4b5872;
}

.ibc-ask-how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.ibc-ask-how > div {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  padding: 16px;
  font-size: 12.5px;
  color: #4b5872;
}

.ibc-ask-how .n {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ibc-navy);
  color: #fff;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.ibc-ask-how strong {
  display: block;
  color: var(--ibc-navy);
  font-size: 14px;
  margin-bottom: 3px;
}

.ibc-ask-recent {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.ibc-ask-recent li {
  border-bottom: 1px dashed var(--ibc-line);
}

.ibc-ask-recent a {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: var(--ibc-ink);
}

.ibc-ask-recent .a {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 8px;
  background: #eaf0fb;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ibc-navy);
  font-weight: 800;
  line-height: 1.05;
  font-size: 15px;
}

.ibc-ask-recent .a small {
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.ibc-ask-recent strong {
  display: block;
  font-size: 13px;
  color: var(--ibc-navy);
  line-height: 1.3;
}

.ibc-ask-recent a:hover strong {
  color: var(--ibc-orange);
}

.ibc-ask-recent span small {
  color: var(--ibc-muted);
  font-size: 11.5px;
}

@media (max-width: 1199px) {
  .ibc-bank-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ibc-bank-grid, .ibc-bank-how, .ibc-ask-layout {
    grid-template-columns: 1fr;
  }

  .ibc-ask-how {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ibc-ask-how {
    grid-template-columns: 1fr;
  }

  .ibc-bank-card dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .ibc-ask-urgent {
    display: block;
    margin: 10px 0 0;
  }
}

/* ---------- FAQ ---------- */
.ibc-faq-group {
  margin-bottom: 26px;
}

.ibc-faq-group .ibc-sec-head h2 .fa {
  color: var(--ibc-orange);
  margin-right: 4px;
}

.ibc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ibc-faq-item {
  background: #fff;
  border: 1px solid var(--ibc-line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}

.ibc-faq-item[open] {
  border-color: #c9d4ea;
  box-shadow: 0 8px 20px rgba(15, 42, 95, .08);
}

.ibc-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ibc-navy);
}

.ibc-faq-item summary::-webkit-details-marker {
  display: none;
}

.ibc-faq-item summary:hover {
  color: var(--ibc-orange);
}

.ibc-faq-item .meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ibc-muted);
  white-space: nowrap;
}

.ibc-faq-item .chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eaf0fb;
  color: var(--ibc-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .2s;
}

.ibc-faq-item[open] .chev {
  transform: rotate(180deg);
  background: var(--ibc-navy);
  color: #fff;
}

.ibc-faq-item .a {
  padding: 0 18px 16px;
  border-top: 1px dashed var(--ibc-line);
  font-size: 14.5px;
  line-height: 1.65;
  color: #2b3445;
}

.ibc-faq-item .a .ibc-legacy-html {
  padding-top: 12px;
}

.ibc-faq-item .a p:last-child {
  margin-bottom: 0;
}

.ibc-faq-item .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f0f3f9;
  font-size: 12.5px;
}

.ibc-faq-item .foot small {
  color: var(--ibc-muted);
}

.ibc-faq-item .foot a {
  font-weight: 700;
  color: var(--ibc-orange);
}

.ibc-faq-empty {
  background: #fff3ea;
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ibc-navy);
  font-weight: 600;
}

.ibc-faq-q h1 .fa {
  color: var(--ibc-orange);
  font-size: 24px;
  margin-right: 4px;
}

.ibc-faq-answer {
  background: #f4f7fc;
  border-left: 4px solid var(--ibc-navy);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 10px 0 4px;
}

.ibc-faq-answer .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0f8a5f;
  margin-bottom: 8px;
}

.ibc-faq-answers {
  margin-top: 20px;
}

.ibc-faq-answers .ibc-section-title .fa, .ibc-ask-form .ibc-section-title .fa {
  color: var(--ibc-orange);
}

.ibc-faq-answers .ans {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px dashed var(--ibc-line);
  font-size: 14px;
  color: #2b3445;
}

.ibc-faq-answers .ans .n {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: #eaf0fb;
  color: var(--ibc-navy);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ibc-faq-answers .ans small {
  display: block;
  margin-top: 6px;
  color: var(--ibc-muted);
  font-size: 12px;
}

.ibc-faq-related {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.ibc-faq-related li {
  border-bottom: 1px dashed var(--ibc-line);
}

.ibc-faq-related a {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ibc-navy);
}

.ibc-faq-related a .fa {
  color: var(--ibc-orange);
  padding-top: 3px;
}

.ibc-faq-related a:hover {
  color: var(--ibc-orange);
  text-decoration: none;
}

/* ---------- gated downloads ---------- */
.ibc-dl-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ibc-dl-item > .fa {
  font-size: 44px;
  color: var(--ibc-navy);
}

.ibc-dl-item .kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ibc-orange);
}

.ibc-dl-item h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 2px 0 4px;
}

.ibc-dl-item small {
  color: var(--ibc-muted);
  font-size: 13px;
}

.ibc-dl-accept {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: #33415c;
  line-height: 1.5;
}

.ibc-dl-accept input {
  margin-top: 3px;
}

.has-error .ibc-dl-accept {
  color: #c0392b;
}

.ibc-dl-sent {
  text-align: center;
  padding: 36px 30px;
}

.ibc-dl-sent .big {
  font-size: 54px;
  color: var(--ibc-orange);
  margin-bottom: 10px;
}

.ibc-dl-sent h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ibc-navy);
  margin: 0 0 10px;
}

.ibc-dl-sent p {
  font-size: 15px;
  color: #33415c;
  max-width: 640px;
  margin: 0 auto 14px;
}

.ibc-dl-sent ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  max-width: 560px;
  text-align: left;
  font-size: 13.5px;
  color: #33415c;
}

.ibc-dl-sent li {
  padding: 5px 0;
}

.ibc-dl-sent li .fa {
  color: #0f8a5f;
  margin-right: 6px;
}

.ibc-dl-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibc-dl-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ibc-navy);
  border-bottom: 1px dashed var(--ibc-line);
}

.ibc-dl-steps li:last-child {
  border-bottom: 0;
}

.ibc-dl-steps .n {
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ibc-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- premium modal (driver download) ---------- */
.ibc-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ibc-modal[hidden] {
  display: none;
}

.ibc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 48, .62);
  backdrop-filter: blur(4px);
}

.ibc-modal-card {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(8, 20, 48, .45);
  animation: ibc-modal-in .22s ease-out;
}

@keyframes ibc-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: none; }
}

body.ibc-modal-open {
  overflow: hidden;
}

.ibc-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
}

.ibc-modal-close:hover {
  background: rgba(255, 255, 255, .32);
}

.ibc-modal-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--ibc-navy) 0%, #1a3f8f 100%);
  color: #fff;
  border-radius: 18px 18px 0 0;
}

.ibc-modal-head .ico {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--ibc-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ibc-modal-head .kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c9d8f5;
}

.ibc-modal-head h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 2px 0;
  color: #fff;
  line-height: 1.25;
}

.ibc-modal-head small {
  color: #dbe5fa;
  font-size: 12.5px;
}

.ibc-modal-form {
  padding: 22px 28px 26px;
}

.ibc-modal-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.ibc-modal-form label {
  display: block;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ibc-navy);
  margin: 0;
}

.ibc-modal-form label.full {
  grid-column: 1 / -1;
}

.ibc-modal-form label > span {
  display: block;
  margin-bottom: 5px;
}

.ibc-modal-form label b {
  color: #d9232d;
}

.ibc-modal-form input, .ibc-modal-form select {
  width: 100%;
  border: 1px solid #cfd8ea;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background: #fbfcfe;
  transition: border-color .15s, box-shadow .15s;
}

.ibc-modal-form input:focus, .ibc-modal-form select:focus {
  outline: none;
  border-color: var(--ibc-orange);
  box-shadow: 0 0 0 3px rgba(242, 107, 33, .15);
  background: #fff;
}

.ibc-modal-form .captcha {
  margin-top: 14px;
}

.ibc-modal-form .captcha:empty {
  display: none;
}

.ibc-modal-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #4b5872;
  line-height: 1.5;
}

.ibc-modal-form .consent input {
  width: auto;
  margin-top: 3px;
}

.ibc-modal-form .btn-lg {
  font-weight: 800;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 16px;
}

.ibc-modal-form .note {
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--ibc-muted);
  line-height: 1.5;
}

.ibc-modal-form .note .fa {
  color: #0f8a5f;
}

@media (max-width: 600px) {
  .ibc-modal {
    padding: 0;
    align-items: flex-end;
  }

  .ibc-modal-card {
    max-height: 100vh;
    border-radius: 18px 18px 0 0;
  }

  .ibc-modal-form .grid {
    grid-template-columns: 1fr;
  }

  .ibc-modal-form, .ibc-modal-head {
    padding-left: 18px;
    padding-right: 18px;
  }
}
