
  /* ═══════════════════════════════════════════
     CSS VARIABLES & SCOPED RESET
  ═══════════════════════════════════════════ */
  .cncob-wrapper {
    --c-bg:          #0a0e14;
    --c-surface:     #111720;
    --c-surface2:    #161d28;
    --c-border:      #1e2a38;
    --c-border2:     #253347;
    --c-accent:      #00c8ff;
    --c-accent2:     #00ff9d;
    --c-accent3:     #ff6b35;
    --c-text:        #e8edf3;
    --c-text-muted:  #6e849e;
    --c-text-dim:    #3d5068;
    --c-gold:        #f0b429;
    --c-red:         #ff4757;

    --font-display:  'Barlow Condensed', sans-serif;
    --font-body:     'Barlow', sans-serif;
    --font-mono:     'JetBrains Mono', monospace;

    --radius:        8px;
    --radius-lg:     14px;
    --transition:    0.2s ease;

    --container:     1280px;
    --gutter:        clamp(16px, 4vw, 48px);
    
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .cncob-wrapper *, .cncob-wrapper *::before, .cncob-wrapper *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
  }

  .cncob-wrapper img { max-width: 100%; display: block; }
  .cncob-wrapper a { color: inherit; text-decoration: none; }

  /* ═══════════════════════════════════════════
     LAYOUT UTILITIES
  ═══════════════════════════════════════════ */
  .cncob-wrapper .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  .cncob-wrapper .section { padding: clamp(48px, 7vw, 96px) 0; }
  .cncob-wrapper .section--sm { padding: clamp(32px, 4vw, 56px) 0; }

  .cncob-wrapper .label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-accent);
  }

  .cncob-wrapper .section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .cncob-wrapper .section-title em {
    font-style: normal;
    color: var(--c-accent);
  }

  .cncob-wrapper .divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 0;
  }

  .cncob-wrapper .tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .cncob-wrapper .tag--blue  { background: rgba(0,200,255,.12); color: var(--c-accent); border: 1px solid rgba(0,200,255,.2); }
  .cncob-wrapper .tag--green { background: rgba(0,255,157,.1);  color: var(--c-accent2); border: 1px solid rgba(0,255,157,.2); }
  .cncob-wrapper .tag--amber { background: rgba(240,180,41,.1); color: var(--c-gold);   border: 1px solid rgba(240,180,41,.2); }
  .cncob-wrapper .tag--orange{ background: rgba(255,107,53,.1); color: var(--c-accent3);border: 1px solid rgba(255,107,53,.2); }

  /* ═══════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════ */
  .cncob-wrapper .hero {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 10vw, 140px) 0 clamp(48px, 7vw, 96px);
    background:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,200,255,.06) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,255,157,.04) 0%, transparent 60%),
      var(--c-bg);
  }

  .cncob-wrapper .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,200,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,200,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
  }

  .cncob-wrapper .hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .cncob-wrapper .hero__badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .cncob-wrapper .hero__headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--c-text);
  }

  .cncob-wrapper .hero__headline .accent { color: var(--c-accent); }
  .cncob-wrapper .hero__headline .accent2 { color: var(--c-accent2); }

  .cncob-wrapper .hero__sub {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--c-text-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
  }

  .cncob-wrapper .hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .cncob-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
  }

  .cncob-wrapper .btn--primary {
    background: var(--c-accent);
    color: var(--c-bg);
  }
  .cncob-wrapper .btn--primary:hover { background: #29d9ff; transform: translateY(-2px); }

  .cncob-wrapper .btn--outline {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-border2);
  }
  .cncob-wrapper .btn--outline:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
  }

  .cncob-wrapper .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .cncob-wrapper .hero__stat {
    background: var(--c-surface);
    padding: 28px 24px;
    transition: background var(--transition);
  }
  .cncob-wrapper .hero__stat:hover { background: var(--c-surface2); }

  .cncob-wrapper .hero__stat-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 6px;
  }

  .cncob-wrapper .hero__stat-num.green { color: var(--c-accent2); }
  .cncob-wrapper .hero__stat-num.gold  { color: var(--c-gold); }
  .cncob-wrapper .hero__stat-num.orange{ color: var(--c-accent3); }

  .cncob-wrapper .hero__stat-label {
    font-size: 12px;
    color: var(--c-text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  /* ═══════════════════════════════════════════
     TRUST STRIP
  ═══════════════════════════════════════════ */
  .cncob-wrapper .trust-strip {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 0;
  }

  .cncob-wrapper .trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .cncob-wrapper .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--c-text-muted);
    font-weight: 500;
  }

  .cncob-wrapper .trust-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,200,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
  }

  /* ═══════════════════════════════════════════
     INTRO / SEO COPY
  ═══════════════════════════════════════════ */
  .cncob-wrapper .intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .cncob-wrapper .intro__lead {
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--c-text);
    margin-bottom: 20px;
  }

  .cncob-wrapper .intro__body {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .cncob-wrapper .intro__sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cncob-wrapper .info-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    transition: border-color var(--transition);
  }
  .cncob-wrapper .info-card:hover { border-color: var(--c-border2); }

  .cncob-wrapper .info-card__icon {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .cncob-wrapper .info-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .cncob-wrapper .info-card__text {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
  }

  /* ═══════════════════════════════════════════
     PRODUCT LINE TABLE
  ═══════════════════════════════════════════ */
  .cncob-wrapper .product-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
  }

  .cncob-wrapper .product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 780px;
  }

  .cncob-wrapper .product-table thead tr {
    background: var(--c-surface2);
  }

  .cncob-wrapper .product-table th {
    padding: 14px 16px;
    text-align: left;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
    white-space: nowrap;
  }

  .cncob-wrapper .product-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
    color: var(--c-text-muted);
  }

  .cncob-wrapper .product-table tbody tr:last-child td { border-bottom: none; }

  .cncob-wrapper .product-table tbody tr:hover td {
    background: var(--c-surface);
    color: var(--c-text);
  }

  .cncob-wrapper .product-table .name {
    font-weight: 600;
    color: var(--c-text);
    font-size: 13px;
  }

  .cncob-wrapper .product-table .spec {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--c-accent);
  }

  /* ═══════════════════════════════════════════
     RANGE SEGMENTS
  ═══════════════════════════════════════════ */
  .cncob-wrapper .segments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .cncob-wrapper .segment {
    background: var(--c-surface);
    padding: 32px 28px;
    position: relative;
    transition: background var(--transition);
  }
  .cncob-wrapper .segment:hover { background: var(--c-surface2); }

  .cncob-wrapper .segment__range {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .cncob-wrapper .segment__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }

  .cncob-wrapper .segment__desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .cncob-wrapper .segment__products {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cncob-wrapper .segment__products li {
    font-size: 12px;
    color: var(--c-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .cncob-wrapper .segment__products li::before {
    content: '→';
    color: var(--c-accent);
    flex-shrink: 0;
    font-size: 11px;
    margin-top: 1px;
  }

  /* ═══════════════════════════════════════════
     TECH FEATURES GRID
  ═══════════════════════════════════════════ */
  .cncob-wrapper .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--c-border);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .cncob-wrapper .feature-card {
    background: var(--c-surface);
    padding: 28px 22px;
    transition: background var(--transition);
  }
  .cncob-wrapper .feature-card:hover { background: var(--c-surface2); }

  .cncob-wrapper .feature-card__icon {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .cncob-wrapper .feature-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .cncob-wrapper .feature-card__text {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
  }

  /* ═══════════════════════════════════════════
     CERTIFICATION ROW
  ═══════════════════════════════════════════ */
  .cncob-wrapper .cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .cncob-wrapper .cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--c-surface);
    border: 1px solid var(--c-border2);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text);
    letter-spacing: 0.05em;
  }

  .cncob-wrapper .cert-badge::before {
    content: '✓';
    color: var(--c-accent2);
    font-size: 13px;
    font-weight: 700;
  }

  /* ═══════════════════════════════════════════
     WHY CNCOB
  ═══════════════════════════════════════════ */
  .cncob-wrapper .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .cncob-wrapper .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .cncob-wrapper .why-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--c-border);
    align-items: flex-start;
  }
  .cncob-wrapper .why-item:last-child { border-bottom: none; }

  .cncob-wrapper .why-item__num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 36px;
    color: var(--c-text-dim);
    line-height: 1;
    min-width: 44px;
  }

  .cncob-wrapper .why-item__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .cncob-wrapper .why-item__text {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.7;
  }

  .cncob-wrapper .why-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
  }

  .cncob-wrapper .why-panel__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .cncob-wrapper .why-panel__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cncob-wrapper .why-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
  }
  .cncob-wrapper .why-stat:last-child { border-bottom: none; }

  .cncob-wrapper .why-stat__label {
    font-size: 13px;
    color: var(--c-text-muted);
  }

  .cncob-wrapper .why-stat__value {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 500;
  }

  /* ═══════════════════════════════════════════
     USE CASES (STACKED FOR SHOPIFY HTML)
  ═══════════════════════════════════════════ */
  .cncob-wrapper .usecase-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--c-border);
  }
  
  .cncob-wrapper .usecase-panel:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .cncob-wrapper .usecase-detail__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--c-text);
  }

  .cncob-wrapper .usecase-detail__body {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .cncob-wrapper .usecase-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cncob-wrapper .usecase-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--c-text-muted);
  }

  .cncob-wrapper .usecase-specs li span.check {
    color: var(--c-accent2);
    font-weight: 700;
    flex-shrink: 0;
  }

  .cncob-wrapper .usecase-products {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: fit-content;
  }

  .cncob-wrapper .usecase-products__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 16px;
  }

  .cncob-wrapper .usecase-products__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cncob-wrapper .usecase-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--c-surface2);
    border-radius: var(--radius);
    font-size: 13px;
  }

  .cncob-wrapper .usecase-product-item__name {
    font-weight: 600;
    color: var(--c-text);
  }

  .cncob-wrapper .usecase-product-item__spec {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--c-accent);
  }

  /* ═══════════════════════════════════════════
     FAQ ACCORDION (NATIVE HTML5)
  ═══════════════════════════════════════════ */
  .cncob-wrapper .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .cncob-wrapper .faq-item {
    border-bottom: 1px solid var(--c-border);
    background: var(--c-surface);
  }
  .cncob-wrapper .faq-item:last-child { border-bottom: none; }

  .cncob-wrapper .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--c-text);
    cursor: pointer;
    border: none;
    text-align: left;
    transition: background var(--transition);
    gap: 16px;
    list-style: none; /* Hide default arrow */
    outline: none;
  }
  
  /* Hide default arrow in Safari/Webkit */
  .cncob-wrapper .faq-question::-webkit-details-marker {
    display: none;
  }

  .cncob-wrapper .faq-question:hover { background: var(--c-surface2); }

  .cncob-wrapper .faq-arrow {
    font-size: 18px;
    color: var(--c-accent);
    transition: transform var(--transition);
    flex-shrink: 0;
  }

  .cncob-wrapper .faq-item[open] .faq-arrow { transform: rotate(45deg); }

  .cncob-wrapper .faq-answer {
    padding: 4px 24px 22px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.75;
  }

  /* ═══════════════════════════════════════════
     B2B CTA BANNER
  ═══════════════════════════════════════════ */
  .cncob-wrapper .cta-banner {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse 80% 100% at 80% 50%, rgba(0,200,255,.08) 0%, transparent 60%),
      var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 60px);
  }

  .cncob-wrapper .cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid var(--c-border2);
    opacity: 0.4;
  }

  .cncob-wrapper .cta-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    opacity: 0.3;
  }

  .cncob-wrapper .cta-banner__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
  }

  .cncob-wrapper .cta-banner__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 52px);
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }

  .cncob-wrapper .cta-banner__sub {
    font-size: 15px;
    color: var(--c-text-muted);
    font-weight: 300;
    max-width: 520px;
  }

  .cncob-wrapper .cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
  }

  .cncob-wrapper .contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
  }

  .cncob-wrapper .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
  }

  .cncob-wrapper .contact-item__label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-dim);
  }

  .cncob-wrapper .contact-item__val {
    font-weight: 500;
    color: var(--c-text);
  }

  /* ═══════════════════════════════════════════
     SCHEMA / SEO TEXT
  ═══════════════════════════════════════════ */
  .cncob-wrapper .seo-text {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
  }

  .cncob-wrapper .seo-text h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    color: var(--c-text);
  }

  .cncob-wrapper .seo-text h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 24px 0 8px;
    color: var(--c-accent);
  }

  .cncob-wrapper .seo-text p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .cncob-wrapper .seo-text p:last-child { margin-bottom: 0; }

  /* ═══════════════════════════════════════════
     MOBILE RESPONSIVE
  ═══════════════════════════════════════════ */
  @media (max-width: 900px) {
    .cncob-wrapper .hero__inner       { grid-template-columns: 1fr; }
    .cncob-wrapper .hero__stats       { grid-template-columns: 1fr 1fr; }
    .cncob-wrapper .intro__grid       { grid-template-columns: 1fr; gap: 32px; }
    .cncob-wrapper .segments          { grid-template-columns: 1fr; }
    .cncob-wrapper .features-grid     { grid-template-columns: 1fr 1fr; }
    .cncob-wrapper .why-grid          { grid-template-columns: 1fr; }
    .cncob-wrapper .cta-banner__inner { grid-template-columns: 1fr; }
    .cncob-wrapper .cta-banner__actions { flex-direction: row; }
  }

  @media (max-width: 640px) {
    .cncob-wrapper .hero__stats       { grid-template-columns: 1fr 1fr; }
    .cncob-wrapper .features-grid     { grid-template-columns: 1fr; }
    .cncob-wrapper .trust-strip__inner{ flex-direction: column; align-items: flex-start; gap: 16px; }
    .cncob-wrapper .usecase-panel     { grid-template-columns: 1fr; }
    .cncob-wrapper .seo-text          { padding: 24px; }
    .cncob-wrapper .cta-banner        { padding: 28px 20px; }
  }

  /* ═══════════════════════════════════════════
     CSS-ONLY HERO ANIMATIONS
  ═══════════════════════════════════════════ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .cncob-wrapper .animate-up {
    animation: fadeUp 0.6s ease both;
  }
  .cncob-wrapper .delay-1 { animation-delay: 0.1s; }
  .cncob-wrapper .delay-2 { animation-delay: 0.2s; }
  .cncob-wrapper .delay-3 { animation-delay: 0.3s; }
  .cncob-wrapper .delay-4 { animation-delay: 0.4s; }

  /* Horizontal rule with label */
  .cncob-wrapper .titled-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  .cncob-wrapper .titled-rule__line {
    flex: 1;
    height: 1px;
    background: var(--c-border);
  }
