 .rc-section {
      padding: 60px 20px;
      background: #fff;
      font-family: 'Poppins', sans-serif;
    }
 
    .rc-header {
      text-align: center;
      margin-bottom: 40px;
    }
 
    .rc-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f5f0e0;
      color: #9a7209;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 999px;
      border: 1px solid #e8d48a;
      margin-bottom: 16px;
    }
 
    .rc-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #C8970A;
    }
 
    .rc-title {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a2e;
      margin: 0 0 10px;
    }
 
    .rc-title span {
      color: #C8970A;
    }
 
    .rc-subtitle {
      color: #666;
      font-size: 15px;
    }
 
    .rc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    .rc-card {
      font-family: 'Arimo', sans-serif;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      padding: 28px 20px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: border-color 0.2s, box-shadow 0.2s;
      border-bottom: 3px solid #e8e8e8;
    }
 
    .rc-card:hover {
      border-bottom-color: #C8970A;
      box-shadow: 0 4px 16px rgba(200,151,10,0.08);
    }
 
    .rc-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #fdf6e3;
      border: 1.5px solid #f0d98a;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
 
    .rc-icon {
      width: 24px;
      height: 24px;
      stroke: #C8970A;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .rc-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #999;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
 
    .rc-value {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1.3;
    }
 
    .rc-value.gold  { color: #C8970A; }
    .rc-value.nil   { color: #2e7d32; font-size: 24px; }
    .rc-value.small { font-size: 16px; }
 
    @media (max-width: 600px) {
      .rc-title { font-size: 24px; }
      .rc-grid  { grid-template-columns: 1fr 1fr; }
    }