/* Start custom CSS */.wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #dedede;
  }
 
  /* ── CARD ── */
  .cmp-card {
    background: var(--wh);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(26,46,90,.10), 0 1px 4px rgba(26,46,90,.06);
  }
 
  /* ── HEADER ROW ── */
  .cmp-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
 
  .cmp-head .h-empty {
    padding: 28px 28px 20px;
  }
 
  .cmp-head .h-col {
    padding: 28px 24px 20px;
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
  }
 
  .cmp-head .h-col.col-navy {
    background: var(--c1);
    color: var(--wh);
    border-radius: 0 var(--radius) 0 0;
  }
 
  .cmp-head .h-col.col-plain {
    color: var(--text);
    border-bottom: 1.5px solid #e5e7eb;
  }
 
  .h-badge {
    display: inline-block;
    background: var(--c2);
    color: var(--c1);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 8px;
  }
 
  /* ── BODY ROWS ── */
  .cmp-body {
    display: flex;
    flex-direction: column;
  }
 
  .cmp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1.5px solid #e5e7eb;
  }
 
  .cmp-row:hover .cell-label,
  .cmp-row:hover .cell-plain {
    background: #f8f9fb;
  }
 
  .cell-label {
    padding: 24px 28px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    display: flex;
    align-items: center;
    background: var(--wh);
    transition: background .15s;
  }
 
  .cell-navy {
    background: var(--c1);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14.5px;
    color: rgba(255,255,255,.78);
    line-height: 1.55;
  }
 
  .cell-navy strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--wh);
    line-height: 1.2;
  }
 
  .cell-navy .val-gold {
    font-size: 22px;
    font-weight: 700;
    color: var(--c2);
    letter-spacing: -.02em;
  }
 
  .cell-plain {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
    background: var(--wh);
    border-left: 1.5px solid #e5e7eb;
    transition: background .15s;
  }
 
  .cell-plain strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
  }
 
  .cell-navy + .cell-plain {
    border-left: none;
    box-shadow: inset 1px 0 0 #e5e7eb;
  }
 
  /* last row rounding */
  .cmp-row:last-child .cell-label { border-radius: 0 0 0 var(--radius); }
  .cmp-row:last-child .cell-plain { border-radius: 0 0 var(--radius) 0; }
 
  /* ── MOBILE ── */
  @media (max-width: 600px) {
    .cmp-head .h-col { font-size: 14px; padding: 18px 10px 14px; }
    .cmp-head .h-empty { padding: 18px 14px 14px; }
    .cell-label { padding: 18px 14px; font-size: 13px; }
    .cell-navy, .cell-plain { padding: 18px 10px; font-size: 12.5px; }
    .cell-navy .val-gold { font-size: 17px; }
    .cell-navy strong { font-size: 15px; }
    .h-badge { font-size: 9px; }
  }
 
  @media (max-width: 400px) {
    .cmp-head .h-col { font-size: 12px; }
    .cell-label { font-size: 12px; }
    .cell-navy, .cell-plain { font-size: 11.5px; }
    .cell-navy .val-gold { font-size: 15px; }
  }/* End custom CSS */