/* ─── INDUSTRY SECTIONS ─── */
      .industry-section { padding: 80px 5%; }
      .industry-section:nth-child(odd) { background: var(--bg2); }
      .industry-section:nth-child(even) { background: #fff; }

      .industry-header {
        display: flex; align-items: center; gap: 18px; margin-bottom: 48px;
      }
      .industry-header-icon {
        width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
        display: flex; align-items: center; justify-content: center;
        font-size: 24px; box-shadow: 0 6px 20px rgba(37,99,235,0.25);
      }
      .industry-header-title {
        font-family: "Manrope", sans-serif; font-weight: 800;
        font-size: clamp(22px, 2.5vw, 32px); color: var(--text); letter-spacing: -0.5px;
      }
      .industry-header-count {
        margin-left: auto; font-size: 12px; font-weight: 700; color: var(--muted);
        background: var(--bg3); border: 1px solid rgba(37,99,235,0.15);
        padding: 4px 12px; border-radius: 20px; white-space: nowrap;
      }

      /* Product card grid */
      .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
      .products-grid.two-col { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
      .products-grid.one-col { grid-template-columns: 1fr; max-width: 600px; }

      .product-card {
        background: #fff; border: 1px solid var(--border);
        border-radius: 22px; overflow: hidden;
        box-shadow: var(--shadow); transition: all 0.3s;
        display: flex; flex-direction: column;
      }
      .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); }

      .product-card-header {
        padding: 28px 28px 22px;
        border-bottom: 1px solid var(--border);
      }
      .pc-industry-tag {
        display: inline-flex; align-items: center; gap: 5px;
        font-size: 11px; font-weight: 700; color: var(--primary);
        background: var(--bg3); border: 1px solid rgba(37,99,235,0.15);
        padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
        letter-spacing: 0.4px; margin-bottom: 14px;
      }
      .pc-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
      .pc-icon {
        width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
        display: flex; align-items: center; justify-content: center; font-size: 22px;
        box-shadow: 0 4px 14px rgba(37,99,235,0.22);
      }
      .pc-name {
        font-family: "Manrope", sans-serif; font-weight: 800;
        font-size: 18px; color: var(--text); line-height: 1.25;
      }
      .pc-tagline { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

      .product-card-body { padding: 22px 28px; flex: 1; display: flex; flex-direction: column; gap: 22px; }

      /* Capabilities */
      .pc-section-label {
        font-size: 10.5px; font-weight: 800; color: var(--muted);
        text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px;
        display: flex; align-items: center; gap: 7px;
      }
      .pc-section-label::before { content: ""; width: 16px; height: 2px; background: var(--primary); border-radius: 2px; }

      .cap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
      .cap-item {
        display: flex; align-items: center; gap: 7px;
        font-size: 12.5px; color: var(--text); font-weight: 500;
        padding: 7px 9px; border-radius: 9px;
        background: var(--bg2); border: 1px solid var(--border); transition: all 0.2s;
      }
      .cap-item:hover { background: var(--bg3); border-color: rgba(37,99,235,0.2); color: var(--primary); }
      .cap-check {
        width: 16px; height: 16px; border-radius: 5px; flex-shrink: 0;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex; align-items: center; justify-content: center;
        font-size: 8px; color: #fff; font-weight: 800;
      }

      /* Benefits */
      .benefit-list { display: flex; flex-direction: column; gap: 8px; }
      .benefit-item {
        display: flex; align-items: center; gap: 9px;
        font-size: 13px; color: var(--text); font-weight: 500;
      }
      .benefit-item::before {
        content: "✔"; font-size: 10px; font-weight: 800;
        color: #16a34a; flex-shrink: 0;
      }

      /* gradient header backgrounds per industry */
      .grad-finance  { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
      .grad-health   { background: linear-gradient(135deg, #064e3b, #059669); }
      .grad-edu      { background: linear-gradient(135deg, #1e1b4b, #7c3aed); }
      .grad-market   { background: linear-gradient(135deg, #0c4a6e, #0ea5e9); }
      .grad-enterprise { background: linear-gradient(135deg, #431407, #ea580c); }

      /* Industry icon colors */
      .ic-finance  { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
      .ic-health   { background: linear-gradient(135deg, #064e3b, #059669); }
      .ic-edu      { background: linear-gradient(135deg, #1e1b4b, #7c3aed); }
      .ic-market   { background: linear-gradient(135deg, #0c4a6e, #0ea5e9); }
      .ic-enterprise { background: linear-gradient(135deg, #431407, #ea580c); }

      /* Card header colored stripe */
      .product-card-header.finance  { background: linear-gradient(145deg, #eff6ff, #dbeafe); }
      .product-card-header.health   { background: linear-gradient(145deg, #f0fdf4, #dcfce7); }
      .product-card-header.edu      { background: linear-gradient(145deg, #f5f3ff, #ede9fe); }
      .product-card-header.market   { background: linear-gradient(145deg, #f0f9ff, #e0f2fe); }
      
      
      
      /* ─── RESPONSIVE ─── */
      @media (max-width: 1100px) {
        .products-grid { grid-template-columns: repeat(2, 1fr); }
        .different-layout { grid-template-columns: 1fr; gap: 48px; }
        
      }
      @media (max-width: 900px) {
        .products-grid.two-col { grid-template-columns: 1fr; }
        
      }
      @media (max-width: 700px) {
        .products-grid { grid-template-columns: 1fr; }
        .cap-list { grid-template-columns: 1fr; }
        .industry-filters { gap: 8px; }
        section { padding: 70px 5%; }
        .industry-section { padding: 70px 5%; }
      }
