/* CBC Group — catálogo editorial */
:root { --theme: #195778; --theme2: #015A2D; }


.catalogo-site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: 52px; background: #fff;
  border-bottom: 1px solid var(--cbc-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem 0 1rem;
  box-shadow: 0 1px 0 rgba(25, 87, 120, 0.06);
}
.catalogo-site-logo img { height: 44px; width: auto; display: block; }
.catalogo-site-links { display: flex; align-items: center; gap: 1.25rem; }
.catalogo-site-links a {
  font-size: 13px; font-weight: 500; color: var(--cbc-blue); text-decoration: none;
}
.catalogo-site-links a:hover { color: var(--theme2); }
.catalogo-site-whatsapp { color: #25d366 !important; }
.catalogo-site-whatsapp i { margin-right: 0.35em; }
.catalogo-lang { display: flex; gap: 4px; }
.catalogo-lang-btn {
  border: 1px solid var(--cbc-border); background: #fff; color: var(--cbc-gray);
  font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 4px; cursor: pointer;
}
.catalogo-lang-btn:hover { border-color: var(--cbc-blue); color: var(--cbc-blue); }
.catalogo-lang-btn.active {
  background: var(--cbc-blue); border-color: var(--cbc-blue); color: #fff;
}
.catalogo-nav-logo-img { height: 36px; width: auto; }


  :root {
    --cbc-navy: #0c2d3f;
    --cbc-blue: #195778;
    --cbc-accent: #015A2D;
    --cbc-light: #F4F6FA;
    --cbc-white: #FFFFFF;
    --cbc-gray: #6B7280;
    --cbc-border: #D1D9E6;
    --cbc-dark-text: #1A1F2E;

    /* Category Colors */
    --cat-ctops: #195778;
    --cat-cdoe: #0D6B6B;
    --cat-cables: #4A1A6B;
    --cat-connectors: #6B1A1A;
    --cat-datacenter: #1A4A1A;

    /* Accent accents */
    --accent-orange: #015A2D;
    --accent-teal: #0D9488;
    --accent-purple: #7C3AED;
    --accent-red: #DC2626;
    --accent-green: #16A34A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Inter', sans-serif, sans-serif;
    background: #E8EBF2;
    color: var(--cbc-dark-text);
    min-height: 100vh;
  }

  /* ── NAVIGATION ── */
  .nav {
    position: fixed; top: 52px; left: 0; right: 0; z-index: 100;
    background: var(--cbc-navy);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 56px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Inter', sans-serif, sans-serif; font-weight: 600; font-size: 15px;
    color: white; letter-spacing: 0.02em;
  }
  .nav-logo-mark { display: none; }
  .nav-tabs {
    display: flex; gap: 0;
  }
  .nav-tab {
    padding: 0 1.25rem; height: 56px;
    display: flex; align-items: center;
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }
  .nav-tab:hover { color: rgba(255,255,255,0.85); }
  .nav-tab.active { color: white; border-bottom-color: var(--accent-orange); }
  .nav-right {
    font-family: 'Inter', monospace, monospace; font-size: 11px;
    color: rgba(255,255,255,0.4); letter-spacing: 0.05em;
  }

  /* ── PAGES ── */
  .page { display: none; padding-top: 108px; min-height: 100vh; }
  .page.active { display: block; }

  /* ══════════════════════════════
     PAGE 1 — CAPA
  ══════════════════════════════ */
  .cover {
    background: var(--cbc-navy);
    min-height: calc(100vh - 108px);
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .cover-left {
    padding: 5rem 4rem 5rem 5rem;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; z-index: 2;
  }
  .cover-right {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #143d52 0%, #195778 60%, #0c2d3f 100%);
  }
  .cover-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(1,90,45,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(1,90,45,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .cover-fiber-art {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .cover-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(1,90,45,0.15); border: 1px solid rgba(1,90,45,0.3);
    padding: 6px 14px; border-radius: 2px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 2.5rem;
  }
  .cover-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent-orange); border-radius: 50%;
  }
  .cover-title {
    font-family: 'Inter', sans-serif, serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.95;
    color: white;
    margin-bottom: 1.5rem;
  }
  .cover-title em {
    font-style: italic; color: var(--accent-orange);
  }
  .cover-subtitle {
    font-size: 14px; font-weight: 400;
    color: rgba(255,255,255,0.5);
    line-height: 1.7; max-width: 380px;
    margin-bottom: 3rem;
  }
  .cover-vol {
    display: flex; align-items: flex-end; gap: 1.5rem;
  }
  .cover-vol-number {
    font-family: 'Inter', monospace, monospace;
    font-size: 72px; font-weight: 700; line-height: 1;
    color: rgba(255,255,255,0.07);
    letter-spacing: -0.05em;
  }
  .cover-vol-info {
    padding-bottom: 6px;
  }
  .cover-vol-info p {
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }
  .cover-vol-info strong {
    display: block; font-size: 16px; font-weight: 500;
    color: white; letter-spacing: 0.02em;
    margin-top: 2px;
  }
  .cover-stats {
    display: flex; gap: 2.5rem;
    padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cover-stat-number {
    font-family: 'Inter', monospace, monospace; font-size: 28px;
    font-weight: 700; color: white;
  }
  .cover-stat-label {
    font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-top: 2px;
  }

  /* ══════════════════════════════
     PAGE 2 — SUMÁRIO
  ══════════════════════════════ */
  .toc-page {
    background: var(--cbc-white);
    min-height: calc(100vh - 108px);
    display: grid; grid-template-columns: 320px 1fr;
  }
  .toc-sidebar {
    background: var(--cbc-navy);
    padding: 4rem 2.5rem;
    position: relative; overflow: hidden;
  }
  .toc-sidebar::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; top: 60%;
    background: linear-gradient(to top, rgba(1,90,45,0.1), transparent);
    pointer-events: none;
  }
  .toc-sidebar-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent-orange); margin-bottom: 1.5rem;
  }
  .toc-sidebar-title {
    font-family: 'Inter', sans-serif, serif; font-size: 2.8rem;
    line-height: 1; color: white; margin-bottom: 1rem;
  }
  .toc-sidebar-desc {
    font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7;
    margin-top: 1.5rem;
  }
  .toc-sidebar-cats {
    margin-top: 3rem; display: flex; flex-direction: column; gap: 2px;
  }
  .toc-cat-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 4px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid transparent;
    cursor: pointer; transition: all 0.2s;
  }
  .toc-cat-pill:hover { background: rgba(255,255,255,0.1); }
  .toc-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .toc-cat-name { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); }
  .toc-cat-count {
    margin-left: auto; font-family: 'Inter', monospace, monospace;
    font-size: 10px; color: rgba(255,255,255,0.3);
  }
  .toc-main { padding: 4rem 5rem; }
  .toc-section { margin-bottom: 3rem; }
  .toc-section-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 1rem; padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--cbc-border);
  }
  .toc-section-color { width: 4px; height: 20px; border-radius: 2px; flex-shrink: 0; }
  .toc-section-name {
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cbc-gray);
  }
  .toc-section-pg {
    margin-left: auto; font-family: 'Inter', monospace, monospace;
    font-size: 10px; color: var(--cbc-gray);
  }
  .toc-items { display: flex; flex-direction: column; gap: 0; }
  .toc-item {
    display: flex; align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    cursor: pointer; transition: all 0.15s;
  }
  .toc-item:hover .toc-item-name { color: var(--cbc-blue); }
  .toc-item-code {
    font-family: 'Inter', monospace, monospace; font-size: 10px;
    color: var(--cbc-gray); width: 70px; flex-shrink: 0;
  }
  .toc-item-name { font-size: 13px; font-weight: 400; color: var(--cbc-dark-text); flex: 1; }
  .toc-item-dots {
    flex: 1; margin: 0 12px;
    border-bottom: 1px dotted var(--cbc-border);
  }
  .toc-item-pg {
    font-family: 'Inter', monospace, monospace; font-size: 11px;
    color: var(--cbc-gray); width: 24px; text-align: right;
  }

  /* ══════════════════════════════
     PAGE 3 — DIVISÓRIA DE CATEGORIA
  ══════════════════════════════ */
  .divider-page {
    min-height: calc(100vh - 108px);
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative;
  }
  .divider-left {
    padding: 5rem 4rem 5rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
  }
  .divider-cat-line {
    width: 48px; height: 3px; border-radius: 2px;
    margin-bottom: 2.5rem;
  }
  .divider-pretitle {
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cbc-gray); margin-bottom: 1rem;
  }
  .divider-title {
    font-family: 'Inter', sans-serif, serif;
    font-size: clamp(3rem, 4.5vw, 5rem);
    line-height: 0.95; margin-bottom: 2rem;
    color: var(--cbc-dark-text);
  }
  .divider-desc {
    font-size: 15px; line-height: 1.8; color: var(--cbc-gray);
    max-width: 440px; margin-bottom: 3rem;
  }
  .divider-product-list {
    display: flex; flex-direction: column; gap: 10px;
  }
  .divider-product-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: var(--cbc-light); border-radius: 4px;
    font-size: 13px; color: var(--cbc-dark-text);
  }
  .divider-product-item::before {
    content: attr(data-code);
    font-family: 'Inter', monospace, monospace; font-size: 10px;
    color: var(--cbc-gray); min-width: 60px;
  }
  .divider-right {
    display: flex; align-items: center; justify-content: center;
    padding: 3rem;
    position: relative; overflow: hidden;
  }
  .divider-bg-number {
    position: absolute; right: -2rem; bottom: -1rem;
    font-family: 'Inter', sans-serif, serif; font-size: 25vw;
    line-height: 1; color: rgba(0,0,0,0.03); pointer-events: none;
    user-select: none;
  }

  /* ══════════════════════════════
     PAGE 4 — TEMPLATE 1 PÁGINA
  ══════════════════════════════ */
  .product-page {
    background: var(--cbc-white);
    min-height: calc(100vh - 108px);
    padding: 0;
  }
  .product-header {
    height: 8px; width: 100%;
  }
  .product-header-inner {
    display: grid; grid-template-columns: 320px 1fr;
    border-bottom: 1px solid var(--cbc-border);
  }
  .product-header-left {
    padding: 2rem 2rem 2rem 3rem;
    border-right: 1px solid var(--cbc-border);
  }
  .product-code {
    font-family: 'Inter', monospace, monospace; font-size: 10px;
    color: var(--cbc-gray); letter-spacing: 0.08em; margin-bottom: 8px;
  }
  .product-name {
    font-family: 'Inter', sans-serif, serif; font-size: 1.8rem;
    line-height: 1.1; color: var(--cbc-dark-text);
  }
  .product-header-right {
    padding: 2rem 3rem 2rem 2rem;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .product-tagline {
    font-size: 14px; color: var(--cbc-gray); line-height: 1.6;
    max-width: 600px;
  }
  .product-cat-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 2px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 10px; width: fit-content;
  }
  .product-body {
    display: grid; grid-template-columns: 320px 1fr;
  }
  .product-image-panel {
    border-right: 1px solid var(--cbc-border);
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column; gap: 1.5rem;
  }
  .product-image-box {
    background: var(--cbc-light);
    border-radius: 4px;
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .product-icon-badges {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .icon-badge {
    display: flex; align-items: center; gap: 5px;
    padding: 5px 10px;
    border: 1px solid var(--cbc-border);
    border-radius: 3px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
    color: var(--cbc-dark-text);
    background: white;
  }
  .icon-badge-dot { width: 6px; height: 6px; border-radius: 50%; }
  .product-main-panel { padding: 2.5rem 3rem; }
  .spec-table { width: 100%; border-collapse: collapse; }
  .spec-table th {
    text-align: left; padding: 8px 12px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: white; background: var(--cbc-navy);
  }
  .spec-table td {
    padding: 9px 12px; font-size: 13px;
    border-bottom: 1px solid var(--cbc-border);
    vertical-align: top;
  }
  .spec-table tr:nth-child(even) td { background: var(--cbc-light); }
  .spec-table td:first-child { font-weight: 500; color: var(--cbc-gray); width: 200px; }
  .section-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--cbc-gray); margin-bottom: 1rem; margin-top: 1.5rem;
  }
  .section-label:first-child { margin-top: 0; }
  .application-diagram {
    background: var(--cbc-light); border-radius: 6px;
    padding: 1.5rem; margin-top: 0.5rem;
    display: flex; align-items: center; gap: 0;
    overflow: hidden;
  }
  .app-node {
    flex: 1; text-align: center; padding: 0.75rem 0.5rem;
    position: relative;
  }
  .app-node-box {
    background: white; border: 1.5px solid var(--cbc-border);
    border-radius: 4px; padding: 8px 6px;
    font-size: 11px; font-weight: 500; line-height: 1.3;
    color: var(--cbc-dark-text); min-height: 44px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
  }
  .app-node-box.highlight {
    background: var(--cbc-navy); color: white;
    border-color: var(--cbc-navy);
  }
  .app-arrow {
    width: 20px; flex-shrink: 0; text-align: center;
    color: var(--cbc-gray); font-size: 16px; margin-top: -4px;
  }
  .sku-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
  .sku-table th {
    text-align: left; padding: 7px 10px;
    font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cbc-gray); border-bottom: 2px solid var(--cbc-border);
  }
  .sku-table td {
    padding: 8px 10px; font-size: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .sku-table td:first-child {
    font-family: 'Inter', monospace, monospace; font-size: 11px;
    color: var(--cbc-blue);
  }

  /* ══════════════════════════════
     PAGE 5 — TEMPLATE 2 PÁGINAS
  ══════════════════════════════ */
  .product-2page {
    background: var(--cbc-white);
    min-height: calc(100vh - 108px);
  }
  .spread-top {
    display: grid; grid-template-columns: 1fr 1fr;
    border-bottom: 3px solid var(--cbc-navy);
  }
  .spread-hero {
    padding: 4rem 3rem 4rem 4rem;
    border-right: 1px solid var(--cbc-border);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .spread-hero-img {
    background: var(--cbc-light); border-radius: 6px;
    aspect-ratio: 16/9; margin: 1.5rem 0;
    display: flex; align-items: center; justify-content: center;
  }
  .spread-hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--cbc-border);
    border: 1px solid var(--cbc-border); border-radius: 6px;
    overflow: hidden; margin-top: 1.5rem;
  }
  .spread-stat {
    background: var(--cbc-white); padding: 1.25rem 1rem; text-align: center;
  }
  .spread-stat-val {
    font-family: 'Inter', monospace, monospace; font-size: 22px;
    font-weight: 700; color: var(--cbc-dark-text); display: block;
  }
  .spread-stat-label {
    font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cbc-gray); display: block; margin-top: 2px;
  }
  .spread-specs { padding: 4rem 4rem 4rem 3rem; }
  .spread-bottom {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    background: var(--cbc-navy);
    min-height: 300px;
  }
  .spread-bottom-section {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .spread-bottom-section:last-child { border-right: none; }
  .spread-bottom-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
  }
  .spread-bottom-item {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 12px;
  }
  .spread-bottom-item-key { color: rgba(255,255,255,0.5); }
  .spread-bottom-item-val { color: white; font-weight: 500; font-size: 13px; }
  .spread-bottom-item-val.accent { color: var(--accent-orange); }

  /* ══════════════════════════════
     PAGE 6 — ÍCONES
  ══════════════════════════════ */
  .icons-page {
    background: var(--cbc-light);
    min-height: calc(100vh - 108px);
    padding: 4rem 5rem;
  }
  .icons-page-title {
    font-family: 'Inter', sans-serif, serif; font-size: 3rem;
    color: var(--cbc-dark-text); margin-bottom: 0.5rem;
  }
  .icons-page-sub {
    font-size: 14px; color: var(--cbc-gray); margin-bottom: 3rem;
  }
  .icon-category-title {
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cbc-gray); margin: 2rem 0 1rem;
    padding-bottom: 0.5rem; border-bottom: 1px solid var(--cbc-border);
  }
  .icon-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  .icon-card {
    background: white; border: 1px solid var(--cbc-border);
    border-radius: 8px; padding: 1.5rem 1rem;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    text-align: center;
  }
  .icon-symbol {
    width: 52px; height: 52px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
    background: var(--cbc-navy); color: white;
  }
  .icon-symbol.orange { background: var(--accent-orange); }
  .icon-symbol.teal { background: var(--accent-teal); }
  .icon-symbol.green { background: var(--accent-green); }
  .icon-symbol.red { background: var(--accent-red); }
  .icon-symbol.gray { background: var(--cbc-gray); }
  .icon-name {
    font-size: 11px; font-weight: 600; color: var(--cbc-dark-text);
    letter-spacing: 0.04em;
  }
  .icon-desc { font-size: 10px; color: var(--cbc-gray); }

  /* ══════════════════════════════
     PAGE 7 — DESIGN SYSTEM
  ══════════════════════════════ */
  .system-page {
    min-height: calc(100vh - 108px);
    padding: 4rem 5rem;
    background: var(--cbc-white);
  }
  .system-section { margin-bottom: 4rem; }
  .system-section-title {
    font-family: 'Inter', sans-serif, serif; font-size: 1.8rem;
    color: var(--cbc-dark-text); margin-bottom: 0.5rem;
  }
  .system-section-desc {
    font-size: 13px; color: var(--cbc-gray); margin-bottom: 2rem;
  }
  .color-row {
    display: flex; gap: 0; border-radius: 6px; overflow: hidden;
    border: 1px solid var(--cbc-border); margin-bottom: 12px;
  }
  .color-swatch {
    flex: 1; height: 56px;
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 6px 8px;
    font-family: 'Inter', monospace, monospace; font-size: 8px;
    font-weight: 700; letter-spacing: 0.05em;
  }
  .type-example { margin-bottom: 1.5rem; }
  .type-example-preview {
    padding: 1.5rem 2rem; background: var(--cbc-light);
    border-radius: 6px; margin-bottom: 8px;
  }
  .type-meta {
    font-family: 'Inter', monospace, monospace; font-size: 10px;
    color: var(--cbc-gray);
  }
  .cat-system {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  }
  .cat-card {
    border-radius: 8px; overflow: hidden;
    border: 1px solid var(--cbc-border);
  }
  .cat-card-header {
    padding: 1.25rem; color: white;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .cat-card-body {
    padding: 0.75rem 1rem; background: white;
    font-size: 11px; color: var(--cbc-gray); line-height: 1.6;
  }
  .cat-codes {
    display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px;
  }
  .cat-code {
    font-family: 'Inter', monospace, monospace; font-size: 9px;
    padding: 2px 6px; border-radius: 2px; color: white;
  }

  /* SVG diagram styles */
  .diagram-container {
    background: var(--cbc-light); border-radius: 8px; padding: 1rem;
    overflow: hidden;
  }

  /* Footer */
  .page-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    border-top: 1px solid var(--cbc-border);
    background: white;
  }
  .footer-brand {
    font-size: 12px; font-weight: 600; color: var(--cbc-navy);
    display: flex; align-items: center; gap: 8px;
  }
  .footer-brand-mark {
    width: 20px; height: 20px; background: var(--accent-orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 7px; font-weight: 700; color: white; font-family: 'Inter', monospace, monospace;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  }
  .footer-pg {
    font-family: 'Inter', monospace, monospace; font-size: 11px; color: var(--cbc-gray);
  }
