/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@/* ── Outer wrapper ── */
  .bg-compare {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d8d8d4;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }
 
  /* ── HEADER ROW ── */
  .bg-compare__header {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr;
    background: #ffc93c;
    color: #155263;
  }
 
  .bg-compare__header-cell {
    padding: 20px 22px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
 
  .bg-compare__header-cell:first-child {
    text-align: left;
    color: #155263;
    font-weight: 500;
  }
 
  .bg-compare__header-cell:last-child {
    border-right: none;
    background: #f9c953;
    color: #155263;
  }
 
  /* ── PRICE ROW ── */
  .bg-compare__price-row {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr;
    background: #ffd76f;
    border-bottom: 2px solid #d8d8d4;
  }
 
  .bg-compare__price-cell {
    padding: 16px 22px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
  }
 
  .bg-compare__price-cell:first-child {
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #155263;
    font-style: italic;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
 
  .bg-compare__price-cell:last-child {
    border-right: none;
    background: #ffc93c;
  }
 
  .bg-price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #155263;
    display: block;
    line-height: 1.2;
  }
 
  .bg-price-note {
    font-size: 14px;
    color: #155263;
    margin-top: 3px;
    display: block;
    line-height: 1.4;
  }
 
  /* ── SECTION LABEL ── */
  .bg-compare__section {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr;
    background: #f0efe9;
    border-bottom: 1px solid #d8d8d4;
    text-align: left;
  }
 
  .bg-compare__section-label {
    padding: 9px 22px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #155263;
    grid-column: 1 / -1;
    border-top: 1px solid #d8d8d4;
  }
 
  /* ── DATA ROWS ── */
  .bg-compare__row {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr;
    border-bottom: 1px solid #e8e8e4;
    background: #ffffff;
    transition: background 0.15s ease;
  }
 
  .bg-compare__row:hover {
    background: #fafaf8;
  }
 
  .bg-compare__row:last-child {
    border-bottom: none;
  }
 
  /* ── Highlight rows (AI features) ── */
  .bg-compare__row--highlight {
    background: #f6fbf8;
  }
 
  .bg-compare__row--highlight:hover {
    background: #eef7f2;
  }
 
  /* ── Cells ── */
  .bg-compare__cell {
    padding: 14px 22px;
    font-size: 14.5px;
    line-height: 1.5;
    border-right: 1px solid #e8e8e4;
    display: flex;
    align-items: center;
    color: #2c2c2c;
  }
 
  .bg-compare__cell:last-child {
    border-right: none;
  }
 
  /* Feature name cell */
  .bg-compare__cell--feature {
    font-weight: 500;
    color: #1a1a1a;
  }
 
  /* Value cells */
  .bg-compare__cell--val {
    justify-content: left;
    text-align: left;
    font-size: 14px;
    color: #3a3a3a;
  }
 
  /* Max column accent */
  .bg-compare__cell--max {
    background: rgba(45,106,79,0.04);
    color: #1e4d38;
    font-size: 13px;
    line-height: 1.45;
  }
 
  /* ── Icons ── */
  .bg-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #037903;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
  }
 
  .bg-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: red;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }
 
  .bg-tag {
    display: inline-block;
    background: #e8f4ee;
    color: #1e5c3a;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
    white-space: nowrap;
  }
 
  /* ── Trial row ── */
  .bg-compare__row--trial {
    background: #f0efe9;
  }
 
  .bg-compare__row--trial:hover {
    background: #e8e7e1;
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
 
    .bg-compare__header,
    .bg-compare__price-row,
    .bg-compare__section,
    .bg-compare__row {
      grid-template-columns: 1fr;
    }
 
    /* Hide desktop header; show labels inline */
    .bg-compare__header { display: none; }
 
    .bg-compare__price-row {
      display: flex;
      flex-direction: column;
    }
 
    .bg-compare__price-cell {
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      padding: 12px 16px;
    }
 
    .bg-compare__price-cell:first-child { display: none; }
    .bg-compare__price-cell:last-child { border-bottom: none; }
 
    .bg-compare__price-cell::before {
      content: attr(data-plan);
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #1c5363;
      margin-bottom: 4px;
    }
 
    .bg-compare__section-label {
      padding: 8px 16px;
    }
 
    .bg-compare__row {
      padding: 12px 0;
      display: flex;
      flex-direction: column;
    }
 
    .bg-compare__cell {
      padding: 6px 16px;
      border-right: none;
      border-bottom: none;
      font-size: 14px;
    }
 
    .bg-compare__cell--feature {
      font-size: 14px;
      font-weight: 700;
      padding-bottom: 2px;
    }
 
    .bg-compare__cell--val {
      justify-content: space-between;
      text-align: left;
      font-size: 13.5px;
    }
 
    .bg-compare__cell--val::before {
      content: attr(data-plan);
      font-weight: 600;
      color: #777770;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-right: 8px;
      flex-shrink: 0;
      min-width: 60px;
    }
 
    .bg-compare__cell--max {
      background: none;
    }
  }
/** Media Query end **/