  /* ============================================================
     NAMESPACE RESET + DESIGN TOKENS
     Everything is scoped under .cbx-hc to avoid Webflow conflicts.
     ============================================================ */
  .cbx-hc, .cbx-hc *, .cbx-hc *::before, .cbx-hc *::after { box-sizing: border-box; }

  .cbx-hc {
    /* Brand */
    --cbx-green: #11D281;
    --cbx-green-dark: #0BB870;
    --cbx-green-soft: #DCFAEC;

    /* Ink */
    --cbx-ink: #0E0E0E;
    --cbx-ink-soft: #2A2A2A;
    --cbx-muted: #6A6A6A;
    --cbx-muted-2: #8A8A95;

    /* Lines + surfaces */
    --cbx-line: #E6E6EE;
    --cbx-line-soft: #EFECF7;
    --cbx-bg: #FFFFFF;
    --cbx-bg-soft: #F8F6FF;

    /* Gradient */
    --cbx-hero-grad: linear-gradient(135deg, #EAF4FF 0%, #EFE8FF 45%, #FBE8F2 80%, #FFEEDB 100%);

    /* Dark */
    --cbx-ink-deep: #0B0B0F;

    /* Semantic */
    --cbx-risk: #D9456A;
    --cbx-risk-soft: #FFE6EE;
    --cbx-warn: #E5A93B;
    --cbx-warn-soft: #FFF6E5;
    --cbx-info: #4B7BE5;
    --cbx-info-soft: #E6EEFF;
    --cbx-purple: #6B4BFF;
    --cbx-purple-soft: #EFE6FF;

    /* Radius */
    --cbx-r-sm: 8px;
    --cbx-r-md: 12px;
    --cbx-r-lg: 16px;
    --cbx-r-xl: 20px;

    /* Shadow */
    --cbx-sh-xs: 0 1px 2px rgba(14,14,14,0.04);
    --cbx-sh-sm: 0 4px 12px rgba(14,14,14,0.04);
    --cbx-sh-md: 0 8px 24px rgba(14, 14, 14, 0.05);
    --cbx-sh-lg: 0 22px 60px rgba(14, 14, 14, 0.10);
    --cbx-sh-xl: 0 30px 80px rgba(14, 14, 14, 0.18);

    /* 8px spacing scale */
    --s1: 8px;
    --s2: 16px;
    --s3: 24px;
    --s4: 32px;
    --s5: 40px;
    --s6: 48px;
    --s8: 64px;
    --s10: 80px;
    --s12: 96px;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--cbx-ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Reset block elements inside namespace */
  .cbx-hc h1, .cbx-hc h2, .cbx-hc h3, .cbx-hc h4, .cbx-hc h5, .cbx-hc h6,
  .cbx-hc p, .cbx-hc ul, .cbx-hc ol, .cbx-hc li, .cbx-hc blockquote,
  .cbx-hc figure, .cbx-hc dl, .cbx-hc dd { margin: 0; padding: 0; }
  .cbx-hc ul { list-style: none; }
  .cbx-hc a { color: inherit; text-decoration: none; }
  .cbx-hc button { font: inherit; }
  .cbx-hc img, .cbx-hc svg { display: block; max-width: 100%; }

  /* ============================================================
     LAYOUT : mobile-first
     Container max-width 1140px desktop, full-bleed mobile
     ============================================================ */
  .cbx-hc__container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: var(--s3);
    padding-right: var(--s3);
    width: 100%;
  }

  .cbx-hc__section {
    padding-top: var(--s8);
    padding-bottom: var(--s8);
    background: var(--cbx-bg);
    scroll-margin-top: var(--s4); /* breathing room when an anchor scrolls a section to the top */
  }
  .cbx-hc__section--alt { background: var(--cbx-bg-soft); }
  .cbx-hc__section--dark { background: var(--cbx-ink-deep); color: white; }

  /* ============================================================
     TYPOGRAPHY : mobile-first scale, scales up at breakpoints
     ============================================================ */
  .cbx-hc__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
    background: white;
    border: 1px solid var(--cbx-line);
    color: var(--cbx-green-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border-radius: 999px;
  }
  .cbx-hc__eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cbx-green);
    box-shadow: 0 0 0 3px var(--cbx-green-soft);
  }

  .cbx-hc__h1 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--cbx-ink);
  }
  .cbx-hc__h2 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.018em;
    font-weight: 600;
  }
  .cbx-hc__h3 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .cbx-hc__h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .cbx-hc__hl {
    color: var(--cbx-green-dark);
    background: linear-gradient(180deg, transparent 65%, var(--cbx-green-soft) 65%);
    padding: 0 4px;
    border-radius: 3px;
  }

  .cbx-hc__lede {
    font-size: 16px;
    line-height: 1.55;
    color: var(--cbx-ink-soft);
  }
  .cbx-hc__body {
    font-size: 14px;
    line-height: 1.55;
    color: var(--cbx-muted);
  }

  .cbx-hc__section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--s5);
  }
  .cbx-hc__section-head .cbx-hc__eyebrow { margin-bottom: var(--s2); }
  .cbx-hc__section-head .cbx-hc__h2 { margin-bottom: var(--s2); }
  .cbx-hc__section--dark .cbx-hc__h2 { color: white; }
  .cbx-hc__section--dark .cbx-hc__body { color: #B5B5C0; }

  /* ============================================================
     BUTTONS
     ============================================================ */
  .cbx-hc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s1);
    border: 1.5px solid transparent;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: var(--cbx-r-sm);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
    line-height: 1.2;
    width: 100%;
  }
  .cbx-hc__btn:hover { transform: translateY(-1px); box-shadow: var(--cbx-sh-sm); }
  .cbx-hc__btn:active { transform: translateY(0); }
  .cbx-hc__btn--green {
    background: var(--cbx-green);
    color: var(--cbx-ink);
    border-color: var(--cbx-green);
  }
  .cbx-hc__btn--outline {
    background: transparent;
    color: var(--cbx-ink);
    border-color: var(--cbx-ink);
  }
  .cbx-hc__cta-row {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
    width: 100%;
  }

  /* ============================================================
     1) HERO
     Mobile: stacked, copy on top, visual below
     Desktop: 2-col grid
     ============================================================ */
  .cbx-hc__hero {
    position: relative;
    background: var(--cbx-hero-grad);
    padding-top: var(--s6);
    padding-bottom: var(--s8);
    overflow: hidden;
  }
  .cbx-hc__hero-grid {
    display: flex;
    flex-direction: column;
    gap: var(--s6);
  }
  .cbx-hc__hero-copy .cbx-hc__eyebrow { margin-bottom: var(--s3); }
  .cbx-hc__hero-copy .cbx-hc__h1 { margin-bottom: var(--s2); }
  .cbx-hc__hero-copy .cbx-hc__lede { margin-bottom: var(--s3); }

  .cbx-hc__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    margin-top: var(--s3);
    font-size: 12px;
    color: var(--cbx-ink-soft);
  }
  .cbx-hc__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
  }

  /* Flow card : the hero visual */
  .cbx-hc__flow-card {
    background: white;
    border-radius: var(--cbx-r-lg);
    border: 1px solid var(--cbx-line);
    box-shadow: var(--cbx-sh-lg);
    overflow: hidden;
  }
  .cbx-hc__flow-head {
    padding: 14px 16px;
    border-bottom: 1px solid var(--cbx-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s1);
  }
  .cbx-hc__flow-title {
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
    font-weight: 600;
    font-size: 13px;
  }
  .cbx-hc__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    color: var(--cbx-green-dark);
    font-weight: 600;
    background: var(--cbx-green-soft);
    padding: 4px 9px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .cbx-hc__live-ping {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cbx-green);
    box-shadow: 0 0 0 3px rgba(17,210,129,0.25);
  }
  .cbx-hc__flow-body { padding: var(--s2); }

  .cbx-hc__flow-step {
    background: #FAFAFC;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-md);
    padding: 12px 14px;
  }
  .cbx-hc__step-label {
    font-size: 10px;
    color: var(--cbx-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: var(--s1);
  }
  .cbx-hc__step-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .cbx-hc__channel-ico {
    width: 30px; height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 12px;
    background: var(--cbx-info-soft);
    color: var(--cbx-info);
  }
  .cbx-hc__req-body {
    font-size: 12.5px;
    color: var(--cbx-ink-soft);
    line-height: 1.45;
    flex: 1;
    min-width: 0;
  }
  .cbx-hc__req-body b { color: var(--cbx-ink); font-weight: 600; }
  .cbx-hc__req-from {
    display: block;
    font-size: 10.5px;
    color: var(--cbx-muted);
    margin-top: 4px;
  }

  .cbx-hc__flow-arrow {
    text-align: center;
    padding: 4px 0;
    color: var(--cbx-green);
    line-height: 0;
  }

  .cbx-hc__triage {
    background: white;
    border: 1.5px solid var(--cbx-green);
    border-radius: var(--cbx-r-md);
    padding: 12px 14px;
    box-shadow: 0 6px 18px rgba(17,210,129,0.15);
  }
  .cbx-hc__triage-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--s1);
    gap: var(--s1);
  }
  .cbx-hc__triage-label {
    font-size: 10px;
    color: var(--cbx-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .cbx-hc__triage-conf {
    font-size: 10.5px;
    color: var(--cbx-green-dark);
    font-weight: 700;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  .cbx-hc__tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }
  .cbx-hc__tag {
    font-size: 10.5px;
    padding: 3px 7px;
    border-radius: 5px;
    background: var(--cbx-green-soft);
    color: var(--cbx-green-dark);
    font-weight: 600;
    white-space: nowrap;
  }
  .cbx-hc__tag--warn { background: var(--cbx-warn-soft); color: var(--cbx-warn); }
  .cbx-hc__tag--info { background: var(--cbx-info-soft); color: var(--cbx-info); }

  .cbx-hc__route {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s1);
  }
  .cbx-hc__route-card {
    background: #FAFAFC;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-sm);
    padding: 9px 11px;
  }
  .cbx-hc__route-label {
    font-size: 9.5px;
    color: var(--cbx-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 3px;
  }
  .cbx-hc__route-value {
    font-size: 12px;
    color: var(--cbx-ink);
    font-weight: 600;
    line-height: 1.25;
  }
  .cbx-hc__route-sub {
    display: block;
    font-size: 10.5px;
    color: var(--cbx-muted);
    font-weight: 400;
    margin-top: 2px;
  }

  /* Flow step children spacing - between the 3 stages */
  .cbx-hc__flow-body > * + * { margin-top: var(--s1); }

  /* ============================================================
     2) PROBLEM SECTION : channels grid
     Mobile: 1 column. Tablet: 2. Desktop: 4.
     ============================================================ */
  .cbx-hc__problem-viz {
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-lg);
    padding: var(--s3);
    box-shadow: var(--cbx-sh-md);
  }
  .cbx-hc__channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s1);
    margin-bottom: var(--s3);
  }
  .cbx-hc__channel {
    background: #FAFAFC;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .cbx-hc__channel-head {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cbx-hc__channel-tile-ico {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10.5px;
    flex-shrink: 0;
  }
  .cbx-hc__channel-tile-ico--b { background: var(--cbx-info-soft); color: var(--cbx-info); }
  .cbx-hc__channel-tile-ico--p { background: var(--cbx-purple-soft); color: var(--cbx-purple); }
  .cbx-hc__channel-tile-ico--g { background: var(--cbx-green-soft); color: var(--cbx-green-dark); }
  .cbx-hc__channel-tile-ico--w { background: var(--cbx-warn-soft); color: var(--cbx-warn); }
  .cbx-hc__channel-tile-ico--r { background: var(--cbx-risk-soft); color: var(--cbx-risk); }
  .cbx-hc__channel-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cbx-ink);
  }
  .cbx-hc__channel-from {
    font-size: 11px;
    color: var(--cbx-muted);
    line-height: 1.4;
  }
  .cbx-hc__channel-eg {
    font-size: 11px;
    color: var(--cbx-ink-soft);
    background: white;
    border: 1px dashed var(--cbx-line);
    padding: 6px 8px;
    border-radius: 6px;
    line-height: 1.4;
    margin-top: 2px;
  }
  .cbx-hc__chaos {
    margin: 0 calc(-1 * var(--s3));
    padding: var(--s2) var(--s3);
    background: #FFFBF0;
    color: #8A6200;
    font-size: 13px;
    text-align: center;
    border-top: 1px dashed var(--cbx-line);
    border-bottom: 1px dashed var(--cbx-line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s1);
    flex-wrap: wrap;
  }
  .cbx-hc__chaos b { color: var(--cbx-ink); }

  .cbx-hc__costs {
    margin-top: var(--s5);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s2);
  }
  .cbx-hc__cost {
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-md);
    padding: var(--s3);
    box-shadow: var(--cbx-sh-xs);
  }
  .cbx-hc__cost-label {
    font-size: 11px;
    color: var(--cbx-risk);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cbx-hc__cost-ico {
    width: 20px; height: 20px;
    background: var(--cbx-risk-soft);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cbx-hc__cost .cbx-hc__h4 { margin-bottom: 6px; }

  /* ============================================================
     3) HOW IT WORKS : 3-step flow
     Mobile: stacked vertically
     Desktop: 3-column with arrows between
     ============================================================ */
  .cbx-hc__fd-flow {
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-xl);
    box-shadow: var(--cbx-sh-md);
    padding: var(--s3);
  }
  .cbx-hc__fd-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s3);
  }
  .cbx-hc__fd-arrow {
    display: none;
  }
  .cbx-hc__fd-step {
    background: #FAFAFC;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-md);
    padding: var(--s3);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cbx-hc__fd-step--feat {
    background: white;
    border: 1.5px solid var(--cbx-green);
    box-shadow: 0 8px 24px rgba(17,210,129,0.12);
  }
  .cbx-hc__step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--cbx-green);
    color: var(--cbx-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
  }

  .cbx-hc__mock {
    margin-top: auto;
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-sm);
    padding: 10px 12px;
  }
  .cbx-hc__mock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 11px;
    border-bottom: 1px dashed var(--cbx-line-soft);
  }
  .cbx-hc__mock-row:last-child { border-bottom: 0; }
  .cbx-hc__mock-lbl {
    color: var(--cbx-muted);
    width: 64px;
    flex-shrink: 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
  .cbx-hc__mock-val {
    color: var(--cbx-ink);
    font-weight: 500;
  }
  .cbx-hc__mock-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 11px;
    border-bottom: 1px dashed var(--cbx-line-soft);
    gap: var(--s1);
  }
  .cbx-hc__mock-line:last-child { border-bottom: 0; }
  .cbx-hc__mock-name { color: var(--cbx-ink-soft); }
  .cbx-hc__mock-pill {
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--cbx-green-soft);
    color: var(--cbx-green-dark);
    font-weight: 700;
    white-space: nowrap;
  }
  .cbx-hc__mock-pill--warn { background: var(--cbx-warn-soft); color: var(--cbx-warn); }
  .cbx-hc__mock-pill--info { background: var(--cbx-info-soft); color: var(--cbx-info); }
  .cbx-hc__wf-line {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 11px;
  }
  .cbx-hc__wf-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--cbx-green-soft);
    color: var(--cbx-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .cbx-hc__wf-line--done .cbx-hc__wf-dot { background: var(--cbx-green); color: white; }
  .cbx-hc__wf-line--next .cbx-hc__wf-dot { background: white; border: 1.5px solid var(--cbx-green); color: var(--cbx-green-dark); }
  .cbx-hc__wf-label { color: var(--cbx-ink-soft); }

  .cbx-hc__fd-bottom {
    margin-top: var(--s3);
    text-align: center;
    font-size: 15px;
    color: var(--cbx-ink-soft);
  }
  .cbx-hc__fd-bottom b { color: var(--cbx-ink); }

  /* ============================================================
     4) USE CASES : 9 cards
     Mobile: 1 col. Tablet: 2 cols. Desktop: 3 cols.
     ============================================================ */
  .cbx-hc__uc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s2);
  }
  .cbx-hc__uc {
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-md);
    padding: var(--s3);
    box-shadow: var(--cbx-sh-xs);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cbx-hc__uc-ico {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cbx-hc__uc-ico--g { background: var(--cbx-green-soft); color: var(--cbx-green-dark); }
  .cbx-hc__uc-ico--b { background: var(--cbx-info-soft); color: var(--cbx-info); }
  .cbx-hc__uc-ico--p { background: var(--cbx-purple-soft); color: var(--cbx-purple); }
  .cbx-hc__uc-ico--w { background: var(--cbx-warn-soft); color: var(--cbx-warn); }
  .cbx-hc__uc-ico--r { background: var(--cbx-risk-soft); color: var(--cbx-risk); }
  .cbx-hc__uc-from {
    font-size: 10.5px;
    color: var(--cbx-muted-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .cbx-hc__uc-clm {
    font-weight: 400;
    color: var(--cbx-muted);
    font-size: 12px;
  }

  /* ============================================================
     5) PROOF (dark)
     ============================================================ */
  .cbx-hc__proof {
    position: relative;
    overflow: hidden;
  }
  .cbx-hc__proof-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .cbx-hc__proof-logo {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--cbx-r-md);
    padding: 7px 12px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--s3);
  }
  .cbx-hc blockquote.cbx-hc__quote {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.012em;
    font-weight: 500;
    margin-bottom: var(--s4);
    color: white;
  }
  .cbx-hc__quote-accent { color: var(--cbx-green); }
  .cbx-hc__who {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    flex-wrap: wrap;
    text-align: left;
  }
  .cbx-hc__who-ava {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B7BE5, #B69FFF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
  }
  .cbx-hc__who-name { color: white; font-weight: 600; margin-bottom: 2px; }

  /* ============================================================
     6) IDEAS LIBRARY : tabbed
     Mobile: select dropdown for categories + content below
     Desktop: sidebar + content
     ============================================================ */
  .cbx-hc__wf {
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-lg);
    overflow: hidden;
    box-shadow: var(--cbx-sh-md);
  }
  .cbx-hc__wf-sidebar {
    background: #FAFAFC;
    padding: var(--s3);
    border-bottom: 1px solid var(--cbx-line);
  }
  .cbx-hc__wf-sidebar-head {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cbx-muted);
    font-weight: 700;
    margin-bottom: 12px;
  }
  .cbx-hc__wf-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .cbx-hc__wf-cat {
    padding: 8px 12px;
    border-radius: var(--cbx-r-sm);
    font-size: 13px;
    color: var(--cbx-ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: white;
    border: 1px solid var(--cbx-line);
    transition: all 0.15s ease;
  }
  .cbx-hc__wf-cat-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cbx-muted-2);
    flex-shrink: 0;
  }
  .cbx-hc__wf-cat--active {
    background: white;
    color: var(--cbx-ink);
    font-weight: 600;
    border-color: var(--cbx-green);
    box-shadow: var(--cbx-sh-xs);
  }
  .cbx-hc__wf-cat--active .cbx-hc__wf-cat-dot { background: var(--cbx-green); }
  .cbx-hc__wf-cat-count {
    font-size: 10.5px;
    color: var(--cbx-muted);
    font-weight: 500;
    background: #F0EEF7;
    padding: 1px 6px;
    border-radius: 999px;
  }
  .cbx-hc__wf-cat--active .cbx-hc__wf-cat-count {
    background: var(--cbx-green-soft);
    color: var(--cbx-green-dark);
  }
  .cbx-hc__wf-main { padding: var(--s3); }
  .cbx-hc__wf-title {
    display: flex;
    align-items: center;
    gap: var(--s1);
    margin-bottom: var(--s2);
    flex-wrap: wrap;
  }
  .cbx-hc__wf-title .cbx-hc__h3 { margin: 0; }
  .cbx-hc__wf-badge {
    font-size: 10.5px;
    color: var(--cbx-green-dark);
    background: var(--cbx-green-soft);
    padding: 3px 9px;
    border-radius: 999px;
    font-weight: 700;
  }
  .cbx-hc p.cbx-hc__wf-desc {
    font-size: 13.5px;
    color: var(--cbx-muted);
    line-height: 1.6;
    margin-bottom: var(--s4);
  }
  .cbx-hc__wf-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .cbx-hc__wf-item {
    background: #FAFAFC;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-sm);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
  }
  .cbx-hc__wf-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--cbx-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cbx-hc__wf-text {
    color: var(--cbx-ink-soft);
    font-weight: 500;
  }
  .cbx-hc__wf-panel { display: none; }
  .cbx-hc__wf-panel--active { display: block; }

  /* ============================================================
     7) PRODUCT PREVIEW : Navattic interactive demo
     16:9 aspect ratio, full-bleed within container, soft frame
     ============================================================ */
  .cbx-hc__demo-frame {
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-lg);
    box-shadow: var(--cbx-sh-xl);
    overflow: hidden;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
  }
  .cbx-hc__demo-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
  }
  /* Older browsers without aspect-ratio: fall back to padding hack */
  @supports not (aspect-ratio: 16 / 9) {
    .cbx-hc__demo-frame {
      aspect-ratio: auto;
      padding-bottom: 56.25%;
      height: 0;
    }
  }

  /* ============================================================
     8) FAQ : accordion
     ============================================================ */
  .cbx-hc__faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s1);
  }
  .cbx-hc__faq {
    background: white;
    border: 1px solid var(--cbx-line);
    border-radius: var(--cbx-r-md);
    box-shadow: var(--cbx-sh-xs);
    overflow: hidden;
  }
  .cbx-hc__faq-q {
    width: 100%;
    background: none;
    border: 0;
    padding: var(--s2) var(--s3);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    color: var(--cbx-ink);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.35;
  }
  .cbx-hc__faq-plus {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--cbx-green-soft);
    color: var(--cbx-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease;
    line-height: 1;
  }
  .cbx-hc__faq[open] .cbx-hc__faq-plus { transform: rotate(45deg); }
  .cbx-hc__faq-a {
    padding: 0 var(--s3) var(--s3);
    font-size: 13.5px;
    color: var(--cbx-muted);
    line-height: 1.6;
  }

  /* ============================================================
     9) FINAL CTA
     ============================================================ */
  .cbx-hc__final {
    background: var(--cbx-hero-grad);
    text-align: center;
  }
  .cbx-hc__final .cbx-hc__h2 {
    max-width: 720px;
    margin: 0 auto var(--s2);
  }
  .cbx-hc__final p {
    max-width: 560px;
    margin: 0 auto var(--s3);
    font-size: 15px;
    color: var(--cbx-ink-soft);
  }
  .cbx-hc__final-note {
    margin-top: var(--s3);
    font-size: 12px;
    color: var(--cbx-muted);
  }
  .cbx-hc__final-note b { color: var(--cbx-ink); }

  /* ============================================================
     MODAL : Book a discovery call popup
     position: fixed keeps it viewport-centered regardless of scroll.
     Scrollable inside if the form is taller than the viewport.
     ============================================================ */
  .cbx-hc__modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--s2);
    overflow-y: auto;
  }
  .cbx-hc__modal--open {
    display: flex;
  }
  .cbx-hc__modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 16, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
    cursor: pointer;
  }
  .cbx-hc__modal-panel {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: var(--cbx-r-lg);
    box-shadow: 0 20px 60px rgba(14, 14, 16, 0.25);
    width: 100%;
    max-width: 540px;
    max-height: calc(100vh - var(--s4));
    overflow-y: auto;
    padding: var(--s4) var(--s3) var(--s3);
    margin: auto;
  }
  .cbx-hc__modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--cbx-line);
    background: white;
    color: var(--cbx-ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .cbx-hc__modal-close:hover {
    background: var(--cbx-bg-soft);
    color: var(--cbx-ink);
  }
  .cbx-hc__modal-head {
    margin-bottom: var(--s3);
    padding-right: var(--s4); /* don't run under the close button */
  }
  .cbx-hc h3.cbx-hc__modal-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--cbx-ink);
    margin: var(--s1) 0 var(--s1);
    line-height: 1.25;
  }
  .cbx-hc__modal-sub {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--cbx-muted);
  }
  /* HubSpot form lives in this container; we don't restyle the form itself
     to avoid breaking HubSpot's own field validation styles. */
  .cbx-hc__modal-form {
    min-height: 80px;
  }
  .cbx-hc__modal-form .hbspt-form,
  .cbx-hc__modal-form form {
    font-family: var(--cbx-font);
  }

  /* Prevent body scroll when modal is open (added by JS) */
  body.cbx-hc-modal-locked {
    overflow: hidden;
  }

  /* ============================================================
     TABLET : 600px
     ============================================================ */
  @media (min-width: 600px) {
    .cbx-hc__container { padding-left: var(--s4); padding-right: var(--s4); }
    .cbx-hc__section { padding-top: var(--s10); padding-bottom: var(--s10); }

    .cbx-hc__h1 { font-size: 44px; }
    .cbx-hc__h2 { font-size: 34px; }
    .cbx-hc__h3 { font-size: 20px; }

    .cbx-hc__lede { font-size: 17px; }
    .cbx-hc__body { font-size: 15px; }

    .cbx-hc__cta-row { flex-direction: row; width: auto; }
    .cbx-hc__btn { width: auto; }

    .cbx-hc__channels { grid-template-columns: 1fr 1fr; }
    .cbx-hc__costs { grid-template-columns: repeat(3, 1fr); }

    .cbx-hc__uc-grid { grid-template-columns: 1fr 1fr; }
    .cbx-hc__wf-list { grid-template-columns: 1fr 1fr; }

    .cbx-hc__faq-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ============================================================
     DESKTOP : 960px
     ============================================================ */
  @media (min-width: 960px) {
    .cbx-hc__section { padding-top: var(--s12); padding-bottom: var(--s12); }

    .cbx-hc__h1 { font-size: 52px; }
    .cbx-hc__h2 { font-size: 40px; }

    .cbx-hc__lede { font-size: 18px; }

    .cbx-hc__hero { padding-top: var(--s8); padding-bottom: var(--s10); }
    .cbx-hc__hero-grid {
      flex-direction: row;
      align-items: center;
    }
    .cbx-hc__hero-copy { flex: 1.05; }
    .cbx-hc__hero-visual { flex: 1; max-width: 480px; }

    .cbx-hc__channels { grid-template-columns: repeat(4, 1fr); }
    .cbx-hc__uc-grid { grid-template-columns: repeat(3, 1fr); }

    .cbx-hc__fd-row {
      grid-template-columns: 1fr 50px 1fr 50px 1fr;
      gap: 0;
    }
    .cbx-hc__fd-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cbx-green);
    }

    .cbx-hc__wf-sidebar {
      border-bottom: 0;
      border-right: 1px solid var(--cbx-line);
      padding: var(--s4) var(--s3);
    }
    .cbx-hc__wf {
      display: grid;
      grid-template-columns: 260px 1fr;
    }
    .cbx-hc__wf-cats { flex-direction: column; flex-wrap: nowrap; gap: 4px; }
    .cbx-hc__wf-cat { width: 100%; }
    .cbx-hc__wf-main { padding: var(--s4); }

    .cbx-hc__quote { font-size: 26px; }
  }

  /* ============================================================
     PRINT : defensive
     ============================================================ */
  @media print {
    .cbx-hc__hero, .cbx-hc__final { background: white !important; color: black !important; }
  }
